0264c0793a30fed7ddfd7d72c804eb22a0632036
[fw/sdcc] / ChangeLog
1 2005-07-28 Maarten Brock <sourceforge.brock AT dse.nl>
2
3         * src/mcs51/gen.c (operandsEqu): fixed bug 1246687
4
5 2005-07-23 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6
7         * device/include/mcs51/at89c51ed2.h: added.
8
9 2005-07-23 Raphael Neider <rneider AT web.de>
10
11         * src/pic/gen.h: added emitpcode macro for debugging
12         * src/pic/gen.c (emitpcode): renamed to emitpcode_real
13           and replace by macro adding debug information on demand
14         * (genNot): fixed to C semantics (!0 = 1; !x = 0 iff x != 0)
15         * (gencjne): tried to fix; replaced with correct (slower) code
16         * (gen{Unp,P}ackBits): fixed single bit access
17         * src/pic/pcode.c (AnalyzepCode): fixed DFPRINTF argument
18         * src/pic/pcodepeep.c (pCodeSearchCondition): fixed finding
19           previous instruction
20         * src/pic/pcoderegs.c (regIsSpecial): NEW, check whether a
21           register has to be handled with care (forbidding movement
22           of assignments/uses, removing assignments completely, ...)
23         * (pCodeOptime2pCodes): make use of regIsSpecial
24         * added lots of debugging output (commented out)
25         * src/pic/rallloc.c (deassignLRs): prevent operand registers
26           from being reused as result UNLESS it is known to work
27
28 2005-07-23 Maarten Brock <sourceforge.brock AT dse.nl>
29
30         * support/Util/dbuf.h: include <stddef.h> for size_t
31         * .version: changed to version 2.5.2
32
33 2005-07-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
34
35         * src/SDCCloop.c (loopInvariants): fixed bug #1234048
36
37 2005-07-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
38
39         * src/hc08/gen.c (genMinus): fixed bug #1241835,
40           (genModOneByte): removed needless psha/pula
41
42 2005-07-22 Raphael Neider <rneider AT web.de>
43
44         * src/SDCCmain.c (linkEdit): initialized linkerScriptFileName,
45           have PIC14 handled like PIC16, fixes broken pic14 linker calls
46         * src/pic/gen.c (resolveIfx): do not "invent" labels
47         * (genSkipc): changed to positive logic
48         * (genSkipCond): removed as no longer needed
49         * (pic14_mov2w_regOrLit,genCmp): NEW, replacement for buggy version,
50           backport from PIC16
51         * (genLeftShift): check operands are in different registers
52         * src/pic/genarith.c (genPlus): replaced INCF with ADDLW as
53           INCF does not update CARRY...
54         * src/pic/main.c: fixed _linkCmd
55         * src/pic/pcode.c (unlinkpCode): added inactive code
56         * src/pic/ralloc.c (deassignLRs): keep arguments to shift operations
57           alive (do not assign result and operand overlapping registers)
58
59 2005-07-22 Raphael Neider <rneider AT web.de>
60
61         * src/pic/device.c (dump_sfr): replaced register declaration with
62           call to emitSymbolToFile() to avoid duplicate symbols
63         * (assignRelocatableRegisters): do not declare external symbols
64         * src/pic/ralloc.c (allocNewDirReg): fixed to get size of arrays
65           right (take size of type, not etype)
66         * (allocDirReg): fixed call to allocNewDirReg() to pass OP_SYM_TYPE
67         * (writeUsedRegs): also dump dynDirectRegs (e.g. local variables)
68         * (packRegsForAccUse): disabled assignment of WREG as
69           the result reg to prevent occurence of just fixed #1235003,
70           fixes #1242954
71         * src/pic/glue.c (emitSymbolToFile): NEW, central place to declare
72           symbols (avoids duplicate symbols in .asm file)
73         * (pic14emitRegularMap): use emitSymbolToFile()
74         * src/pic/gen.c (aopOp): fixed spillLocation handling
75         * (gen{Unp,P}ackBits): fixed acquiring bit-operands
76         * (genDataPointerSet): removed unneccessary variables/output
77
78 2005-07-22 Maarten Brock <sourceforge.brock AT dse.nl>
79
80         * as/mcs51/lkarea.c: enlarged codemap for banked memory
81         * device/lib/mcs51/crtbank.asm: added # to 0x0F
82
83 2005-07-21 Raphael Neider <rneider AT web.de>
84
85         * src/pic/gen.c (aopOp): do not generate AOP_ACC operands as pic14
86           architecture cannot handle them efficiently, fixes bug #1235003
87         * src/pic16/device.c (pic16_dump_{u,i}section,pic16_dump_int_registers):
88           check for empty sets before using them (fixes bug #1232190)
89
90 2005-07-19 Maarten Brock <sourceforge.brock AT dse.nl>
91
92         * as/mcs51/lkarea.c (lnkarea, lnkarea2): improved BSEG size calculation,
93           (lnksect2): generate warnings for memory overlap
94         * src/SDCC.lex (doPragma, process_pragma): added pragma's codeseg and
95           constseg to set the name of these segments so you can instruct the linker
96           to place them in banks
97         * src/SDCCast.c (decorateType): use new macro IS_FUNCPTR()
98         * src/SDCCglobl.h: added MODEL_HUGE to enum,
99           added code_seg and const_seg to options
100         * src/SDCCglue.c (emitMaps): use options.const_seg,
101           (createInterruptVect): put interrupt vectors in segment HOME,
102           (glue): put HOME before static segment and put the main glue in HOME,
103           (glue): use options.code_seg
104         * src/SDCCicode.c (geniCodeCall): use new macro IS_FUNCPTR()
105         * src/SDCCmain.c: added option --codeseg and --constseg to set the name of
106           these segments so you can instruct the linker to place them in banks
107           (linkEdit): use code_loc for HOME segment which should be the first
108           segment in code memory now
109         * src/SDCCmem.c: fixed more stuff like bug 1238386
110         * src/SDCCsymt.c (getSize): use generic pointer size for banked functions,
111           (changePointer): don't change function pointers to code pointers for
112           banked functions,
113           (compareType): added exceptional check for banked function pointers
114         * src/SDCCsymt.h: changed IFFUNC_ISBANKEDCALL, added IS_FUNCPTR
115         * src/hc08/main.c (_hc08_genAssemblerPreamble): put HOME first, put CSEG
116           after static in code memory
117         * src/mcs51/gen.c: added aopLiteralLong prototype,
118           (aopForSym): use getSize for functions,
119           (genCall): generate banked calls over one trampoline __sdcc_banked_call
120           in HOME with lsb of address in r0, msb in r1 and bank in r2, use
121           -Wl-bBANKSEG=0xbbaaaa option to set the address (aaaa) and bank (bb) of
122           the segment,
123           (genPcall): use call for literal function pointers and generate banked
124           calls over the one trampoline so there's only one place for the user to
125           modify according to his/hers hardware,
126           (genEndFunction): jump to __sdcc_banked_ret in HOME for banked functions,
127           (genPlusIncr): moved check icount>4 beyond inc dptr optimization
128         * src/mcs51/main.c: added keyword banked,
129           (_mcs51_genExtraAreas): put HOME first followed by GSINIT, STATIC and CSEG
130         * support/Util/SDCCerr.c,
131         * support/Util/SDCCerr.h: added E_BANKED_WITH_CALLEESAVES, registers are
132           needed for passing the bank and address to the trampoline
133         * device/lib/mcs51/crtbank.asm: added for bankswitching
134         * device/lib/mcs51/Makefile: added crtbank
135
136 2005-07-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
137
138         * src/SDCCcse.c (algebraicOpts): fixed loss of volatility
139           for fields at offset 0 of a struct or union as reported
140           on 2005-07-07 in the developer mailing list.
141
142 2005-07-15 Maarten Brock <sourceforge.brock AT dse.nl>
143
144         * src/SDCCmem.c: fixed bug 1238386
145
146 2005-07-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
147
148         * src/mcs51/peeph.def: added labelrefcounting for peepholes
149           (patch #1144962), added peephole 300, enabled 259.x
150         * doc/sdccman.lyx: removed screenshot and provided link instead
151
152 2005-07-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
153
154         * doc/sdccman.lyx: added section about debugging with ddd
155         * doc/figures/ddd_example.eps: screenshot of debugging session
156
157 2005-07-04 Raphael Neider <rneider AT web.de>
158
159         * src/pic/gen.c (genPointerGet): handle pointers to CONST values
160           like CODE pointers, fixes #1115683
161         * src/pic/pcode.c (DoBankSelect): forget LastRegIdx during function
162           call, fixes bugs #1232211, #1228110,
163           fixed wrong casts to pCodeFlow from pCodeInstructions
164
165 2005-07-04 Raphael Neider <rneider AT web.de>
166
167         * src/pic/gen.c (popGet): changed assert to allow for
168           bit operands
169         * (popGetAddr): changed signature to provide
170           an additional index, patched all call sites
171         * (genCmpEq): handle literal-like operands correctly
172         * (genAddrOf): added sanity checks on __code/__data pointers
173         * (genAssign): added handling of symbols from __code section
174         * (gencjne): do not generate code for comparisons whose result
175           is neither stored nor used, fixes bug #1171114
176         * (AccLsh, AccRsh): operate on operand instead of WREG
177         * (shift{Left,Right}_Left2ResultLit): NEW, size independant
178           replacement for Shift{LR}{12}Left2Result; shift (byte/int/long)
179           by known count
180         * rewrote complete shift-by-literal logic, commented unused
181           functions out
182         * (genConstPointerGet): get multiple bytes (if result size > 1),
183           fixed handling of non-immediate addresses
184         * (genPointerGet): handle CODE pointers like CONST pointers
185         * (genpic14Code): insert C-SRC lines as Cource-pCodes
186         * ({aop,op}_isLitLike): NEW, single place to decide whether an
187           operand is to be treated as a literal or not
188         * (mov2w,genPcall,genCmpEq),
189           src/pic/genarith.c: use aop_isLitLike() to decide between
190           literal/register contents
191         * (addSign): added missing offset
192         * src/pic/gen.h: remove newline after FENTRY/FEXIT comments,
193           only emit comment in debug-mode,
194           use {aop,op}_isLitLike throughout the file
195         * src/pic/glue.c: fix initializers for pointers (work in progress)
196         * src/pic/pcode.c (get_op): honor index on _const symbols
197         * ({reset,dump}pCodeStatistics): NEW, estimate code size
198         * (dumppBlock): added pCode size estimation
199         * src/pic/ralloc.c (deassignLRs,serialRegAssign,packRegisters):
200           check for IS_SYMOP before OP_SYMBOL'ing
201         * fixed indentation, compacted switch-statements
202         * (allocReg): find free register and allocate it instead of
203           allocating new registers all the time
204         * (deassignLRs): prevent POINTER_GET's from being assigned the same
205           registers as its operands (necessary only for multibyte GETs)
206
207 2005-07-01 Raphael Neider <rneider AT web.de>
208
209         * src/pic/gen.h: added prototypes emitpComment, popGetAddr and
210           debugging .asm-output macros FENTRY + FEXIT
211         * src/pic/gen.c (Safe_vsnprintf): NEW, is there a more generic
212           way... I wonder...
213         * (emitpComment): NEW, printf to pCode
214         * (popGet): added assert on too large offsets, fixed PO_IMMEDIATE's
215           offset handling
216         * (popGetAddr): NEW, variant of popGet to access an immediates
217           high(er) bytes instead of the n'th byte of memory they reference,
218           replaced popGet with popGetAddr where neccessary
219         * (genDataPointerGet): reactivated and fixed implementation
220         * (genNearPointerGet): enabled call to genDataPointerGet, fixes array-
221           accesses
222         * (genDataPointerSet): fixed multibyte assignments
223         * (genpic14Code): fixed --i-code-in-asm handling
224         * src/pic/genarith.c: fixed PO_IMMEDIATE issue using popGetAddr,
225         * (genPlus): fixed index-out-of-bounds error
226         * src/pic/pcode.c (get_op): fixed PO_IMMEDIATE's index/offset handling
227         * src/pic/ralloc.c: added debugging output macro FENTRY2
228         * (spillThis): fixed indentation, enbraced for-body for clarity
229         * (rematStr): commented out as now unused
230         * (regTypeNum): commented out special spill case (overwrites
231           arbitrary values)
232         * fixes bugs #1229346, #1216476 (both arrays) and #1115667 (SIGSEGV)
233
234 2005-06-30 Maarten Brock <sourceforge.brock AT dse.nl>
235
236         * doc/sdccman.lyx: documented sfr16/sfr32,
237           added example for using storage class with function pointers
238         * src/mcs51/gen.c (genPlusIncr): optimized small offsets from dptr
239
240 2005-06-28 Maarten Brock <sourceforge.brock AT dse.nl>
241
242         * device/lib/_gptrget.c: also push/pop _PSBANK, added # to 0x03
243         * device/lib/_itoa.c,
244         * device/lib/_ltoa.c: optimized codesize
245         * src/SDCCsymt.c (checkSClass): added sanity check for sfr at addresses,
246           but don't know how to suppress the double warning.
247         * src/mcs51/gen.c (genPlusIncr): fixed bug when incrementing volatile int's
248         * support/Util/SDCCerr.c,
249         * support/Util/SDCCerr.h: added warning W_SFR_ABSRANGE for sanity check
250
251 2005-06-27 Maarten Brock <sourceforge.brock AT dse.nl>
252
253         * as/mcs51/asexpr.c (expr): disabled warning "not in .flat24 mode",
254           fixed old K&R prototypes
255         * as/mcs51/asout.c (outrb): always output as if generating 24bit addresses
256         * device/lib/_gptrget.c,
257         * device/lib/_gptrgetc.c,
258         * device/lib/_gptrput.c: changed versions for new memory indicator values,
259           also new versions for small generic pointers and banked generic pointers
260         * src/port.h: added const_name
261         * src/SDCC.lex: added keywords sfr16, __sfr16, sfr32, __sfr32
262         * src/SDCC.y: added tokens SFR16, SFR32 and their sfr_attributes
263         * src/SDCCcse.c (findPrevIc): check all associative operators
264         * src/SDCCglue.c (emitMaps): use CONST_NAME if defined
265         * src/SDCCicode.h: added macro IS_ASSOCIATIVE
266         * src/SDCCmem.c: updated comments,
267           set far-space to 0 for pdata, results in optimized code
268         * src/SDCCmem.h: added macro CONST_NAME
269         * src/SDCCsymt.h: renumerated generic pointer types GPTYPE_... thereby
270           moving the info into the highest bits, see also gptrget/gptrput
271         * src/src.dsp: added sdcc.ico to project files
272         * src/avr/gen.c (genCast): fixed bug 0x%d
273         * src/avr/main.c (avr_port): added "CONST (CODE)" for const_name
274         * src/ds390/gen.c (aopForRemat, adjustArithmeticResult): disconnected direct
275           relation between ptr_type and DCL_TYPE,
276           (genCast): fixed bug 0x%d
277         * src/ds390/main.c (ds390_port, tininative_port, ds400_port): added "CONST
278           (CODE)" for const_name
279         * src/hc08/gen.c (genCast): fixed bug 0x%d
280         * src/hc08/main.c (_hc08_genAssemblerPreamble): added .area ...const_name,
281           (hc08_port): added "CONST (CODE)" for const_name
282         * src/mcs51/gen.c (aopForSym): optimized pushing ACC,
283           (aopForRemat, adjustArithmeticResult): disconnected direct relation
284           between ptr_type and DCL_TYPE,
285           (aopGetUsesAcc, aopGet, aopPut): changed first parameter from asmop* to
286           operand* and took AOP() inside function so sfr-ness can be checked,
287           (all over): repaired calls to aopGetUsesAcc, aopGet, aopPut to comply with
288           new prototype,
289           (genFunction, genEndFunction): optimized stack setup,
290           (genMinus): optimized for literals with ending zeroes (in bytes),
291           (genCast): fixed bug 0x%d
292         * src/mcs51/main.c (_mcs51_keywords): added sfr16 and sfr32,
293           (mcs51_port): added "CONST (CODE)" for const_name
294         * src/mcs51/peeph.def: made rule 226 more generic
295         * src/pic/main.c (pic_port): added "CONST (CODE)" for const_name
296         * src/pic16/main.c (pic16_port): added "CONST (CODE)" for const_name
297         * src/xa51/main.c (xa51_port): added "CONST (CODE)" for const_name
298         * src/z80/main.c (z80_port): added NULL for const_name,
299           (gbz80_port): added NULL for const_name
300         * support/regression/tests/bug663539.c,
301         * support/regression/tests/sfr16.c: new tests
302
303 2005-06-25 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
304
305         * device/include/mcs51/p89v51rd2.h, device/include/mcs51/at89s53.h: added.
306
307 2005-06-24 Raphael Neider <rneider AT web.de>
308
309         * device/lib/pic16/libdev/pic18f[68][567]20.c:
310           corrected typos...
311         * device/include/pic16/signal.h: added USBIF
312           and SIG_USB
313
314 2005-06-24 Raphael Neider <rneider AT web.de>
315
316         * device/lib/pic16/libdev/pic18f2455.c,
317           device/include/pic16/pic18f2455.h: NEW
318         * device/include/pic16/pic18fregs.h,
319           device/lib/pic16/pics.all,
320           src/pic16/device.c: added 18f2455
321         * device/lib/pic16/libdev/pic18f[68][567]20.c,
322           device/include/pic16/{pic18f[68][567].h,usart.h}:
323           replaced MULTIPLE_USARTS define with more relaible
324           compatibility sfrs (for USART access)
325
326 2005-06-20 Slade Rich <slade_rich AT users.sourceforge.net>
327
328         * src/pic/pcode.c : Fixed problem when a string constant contains a "\r\n"
329           and the output asm file line is printed on two lines.
330
331 2005-06-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
332
333         * sim/ucsim/hc08.src/inst.cc (inst_condbranch): fixed simulation of
334           BGT, BLE, BHI, and BLS instructions
335         * src/hc08/gen.c (outAcc, outBitC, outBitNV, genCmpLt, genCmpGt,
336           genCmpEq): removed
337         * src/hc08/gen.c (genCmpEQorNE, genCmp, branchopCmp, nameCmp,
338           negatedCmp, exchangedCmp, genhc08Code): rewrite of comparison handling,
339           fixes bug #1216342
340         * src/hc08/peeph.def: added rules 2g - 2l for new conditional branches
341
342 2005-06-15 Raphael Neider <rneider AT web.de>
343
344         * src/pic16/NOTES: moved Vangelis from active developers to people to contact
345         * device/include/pic16/{6520.h,8520.h}: fixed configuration bits
346         * src/pic16/gen.c (): prevent iTemps from being considered to be in CODESPACE,
347           fixes bug #1221120; for symbols in CODESPACE get number of bytes to read from
348           OP_SYM_TYPE() instead of OP_SYM_ETYPE()
349
350 2005-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
351
352         * device/include/mcs51/reg764.h: Changed PB0 to PBO as requested by
353           Marcel Telka in bug #1215704
354
355 2005-06-02 Slade Rich <slade_rich AT users.sourceforge.net>
356
357         * src/pic/pcode.c : Changed pseudo stack size to 15 to allow WSAVE to be
358           located in shared memory bank.
359
360 2005-05-31 Raphael Neider <rneider AT web.de>
361
362         * src/pic16/{gen.c,genarith.c}: replaced sign-extension
363           "CLRF, BTFSC <signbit>, DECF/COMF" with side-effect-free
364           "CLRF, BTFSC <signbit>, SETF"; fixes "long>>9"
365
366 2005-05-27 Maarten Brock <sourceforge.brock AT dse.nl>
367
368         * device/lib/_strncpy.c: fixed the fix
369
370 2005-05-26 Raphael Neider <rneider AT web.de>
371
372         * src/pic16/glue.c (pic16_printIvalChar): fixed _constant_ string
373           initializers with \0, bug #1208187
374         * src/pic/glue.c (printIvalChar): fixed (non- and constant) string
375           intializers with \0, bug #1208187
376
377 2005-05-26 Raphael Neider <rneider AT web.de>
378
379         * src/pic16/glue.c (pic16_printIvalChar): fixed string
380           initializers with \0, bug #1208187
381         * src/pic16/main.c (_process_pragma): added sanity checks
382           for stack position and size, emit warnings when appropriate
383
384 2005-05-26 Maarten Brock <sourceforge.brock AT dse.nl>
385
386         * device/lib/_strncpy.c: fixed not filling with \0
387
388 2005-05-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
389
390         * src/SDCCast.c (funcOfType, funcOfTypeVarg, stringToSymbol,
391           createFunction),
392         * src/SDCC.y (external_definition, enumerator, parameter_declaration,
393           compound_statement),
394         * src/SDCCsymt.h,
395         * src/SDCCsymt.c (addSymChain, processFuncArgs): fixed bug #1159134
396
397 2005-05-24 Raphael Neider <rneider AT web.de>
398
399         * src/pic16/glue.c (pic16_printGPointerType): fixed #1207796
400
401 2005-05-24 Raphael Neider <rneider AT web.de>
402
403         * device/include/pic16/pic18f{442,452,458}.h: fixed wrong
404           TRISE definitions, closes bug #1162453
405
406 2005-05-22 Raphael Neider <rneider AT web.de>
407
408         * src/pic16/main.c (_process_pragma): check for missing
409           arguments to pragmas code and udata
410         * device/include/pic16/pic18f{2550,4331,4455,4520}.h:
411           consistency fixes to match other headers (thanks to Jim Paris)
412         * device/lib/pic16/libio/i2c.ignore: 18f4331 provides no I2C
413
414 2005-05-21 Maarten Brock <sourceforge.brock AT dse.nl>
415
416         * src/SDCCicode.c (isOperandEqual): fixed missing ;
417
418 2005-05-19 Maarten Brock <sourceforge.brock AT dse.nl>
419
420         * support/regression/tests/bug1198642.c: new test
421         * src/SDCCicode.c (isOperandEqual): fixed bug 1198642
422         * src/SDCCcse.c (findPrevIc): added comment, please have a look
423         * support/scripts/resource.h,
424         * support/scripts/resource.rc,
425         * src/src.dsp: added sdcc.ico to project as icon for sdcc.exe
426         * support/scripts/sdcc.ico: added 32x32 icon
427
428 2005-05-18 Raphael Neider <rneider AT web.de>
429
430         * device/lib/pic16/libdev/pic18f*.c,
431         * device/include/pic16/pic18f*.h: updated "sfr" and "at X"
432           keywords to "__sfr" and "__at (X)"
433         * device/include/pic16/pic18fregs.h: added pic18f4520
434         * src/pic16/pcode.c (pic16_pCode2str): fixed (?) bug
435           #1203088 (MPLAB compatibility)
436
437 2005-05-17 Raphael Neider <rneider AT web.de>
438
439         * device/include/pic16/pic18f{2550,4331,4455,4520}.h: NEW
440         * device/lib/pic16/libdev/pic18f{2550,4331,4455,4520}.c: NEW
441         * device/lib/pic16/pics.all: added new devices
442         * src/pic16/device.c: added support for pic18f4520
443
444 2005-05-16 Raphael Neider <rneider AT web.de>
445         * src/pic16/gen.{c,h}: s/mov2f/pic16_mov2f made public
446         * src/pic16/genarith.c (genAddLit): fixed bug 1202480
447         * src/pic16/pcode.{c,h} (pic16_newpCodeOpBit_simple): NEW
448           convenience function for bit access
449
450 2005-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
451
452         * device/lib/printf_large.c: fixed bug 1193299
453         * support/regression/tests/bug1057979.c: added test %3.3s
454
455 2005-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
456
457         * device/include/mcs51/8051.h,
458         * device/include/mcs51/8052.h: made parseable with lint
459         * device/include/mcs51/lint.h: added include file for (sp)lint
460         * doc/sdccman.lyx: added doc about use of splint (syntax checking tool)
461         * doc/cdbfileformat.lyx,
462         * doc/test_suite_spec.lyx: hardcoded date to the date of last text change
463
464 2005-05-14 Raphael Neider <rneider AT web.de>
465
466         * device/lib/pic16/Makefile.common.in: add --optimize-df to OPT_FLAGS
467         * device/lib/pic16/libc/stdlib/itoa.c (new)
468         * device/lib/pic16/libc/stdlib/Makefile: have itoa.c built
469         * device/lib/pic16/libio/Makefile: exclude subdir according to
470           ${subdir}.ignore for certain PICs (lacking e.g. i2c)
471         * device/lib/pic16/libio/i2c.ignore (new): pic18f1220 has no I2C support
472         * src/pic16/gen.c (genFunction): prevent annoying warning
473         * src/pic16/pcode.c: renamed stack_t to dynstack_t to prevent
474           nameclashes on BeOS
475         * support/cpp2/cppmain.c (cpp_output_string): new
476         * support/cpp2/cpplib.c (_cpp_do__Pragma): fixed _Pragma(""),
477           fixes bug 1116802
478
479 2005-05-13 Borut Razem <borut.razem AT siol.net>
480
481         * src/SDCCmain.c (linkEdit): fixed bug 1195202
482
483 2005-05-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
484
485         * .version: changed to version 2.5.1; back to bleeding edge development
486
487 2005-05-11 Borut Razem <borut.razem AT siol.net>
488
489         * doc/sdccman.lyx doc/cdbfileformat.lyx doc/test_suite_spec.lyx:
490           generate PDF version 1.3 documents
491
492 2005-05-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
493
494         * .version: changed to version 2.5.0
495
496 2005-04-27 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
497
498         * doc/sdccman.lyx: updated weblinks, index and smaller updates
499
500 2005-04-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
501
502         * doc/sdccman.lyx: changed version 2.5.0, documented --std-c89,
503         --std-sdcc89, --std-c99, --std-sdcc99, and the corresponding #pragmas, as
504         well as many smaller updates.
505         * .version: changed to version 2.5.0-pre1
506
507 2005-04-26 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
508
509         * src/SDCCmain.c (setIncludePath): added port->target to SDCC_INCLUDE_NAME
510
511 2005-04-26 Maarten Brock <sourceforge.brock AT dse.nl>
512
513         * support/regression/tests/bug1185672.c: added
514         * src/mcs51/gen.c (aopGetUsesAcc, genCpl, genAnd, genOr, genXor): fixed
515           bug 1185672
516         * src/mcs51/gen.c (genCall): added comments, made it look safer
517         * src/mcs51/gen.c (genEndFunction): simplified
518
519 2005-04-25 Maarten Brock <sourceforge.brock AT dse.nl>
520
521         * src/mcs51/ralloc.c (serialRegAssign): fixed bug 1189609
522
523 2005-04-14 Borut Razem <borut.razem AT siol.net>
524
525         * fixed bug 1045046 - SIGSEGV with really simple code?:
526           src/pic/pcode.c (pCodeInitRegisters)- pseudo stack size increased to 16
527           src/pic/ralloc.c (typeRegWithIdx) - error message on pseudo stack overflow
528
529 2005-04-14 Borut Razem <borut.razem AT siol.net>
530
531         * src/pic16/gen.c (genInline), src/pic16/main.c (_process_pragma),
532           src/pic16/device.h: temporarily disabled experimental #inline pragma
533           for 2.5.0 release
534
535 2005-04-14 Maarten Brock <sourceforge.brock AT dse.nl>
536
537         * device/include/z80/stdio.h,
538         * device/include/z80/string.h: removed these highly incomplete files so
539           SDCC can use the default ones in device/include/
540
541 2005-04-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
542
543         * src/mcs51/gen.c (genEndFunction): removed unused variable to fix
544         gcc warning.
545         * device/lib/Makefile.in: default PORTINCDIR to the mcs51 subdir to
546         fix sdcpp warnings.
547
548 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
549
550         * device/include/malloc.h: removed redundant __reentrant prototypes
551         * device/lib/_mullong.c: added working xstack variant in asm (C version
552           doesn't pass regression tests)
553         * device/lib/bpx.c: used __data and made bpx char for mcs51
554         * src/SDCCast.c (decorateType): removed unused GPTYPE_IDATA,
555           (createFunction): fixed bug with xstackPtr
556         * src/SDCCcse.c: corrected comments
557         * src/SDCCopt.c (convertToFcall): fixed warning in MSVC,
558           (killDeadCode, eBBlockFromiCode): removed unused code
559         * src/SDCCsymt.h: removed unused GPTYPE_GPTR and GPTYPE_IDATA,
560           corrected comments
561         * src/mcs51/gen.c (aopForSym, aopPut, toBoolean, unsaveRegisters,
562           assignResultValue, genCall, genFunction, genEndFunction, genAnd,
563           genOr, genXor, genAddrOf): fixed several bugs concerning xstack
564           (genModOneByte): fixed warning in MSVC
565         * src/mcs51/main.c (): added comments
566         * src/mcs51/peeph.def: changed 129 to 129.a, added 129.b, 129.c & 129.d
567
568 2005-04-12 Maarten Brock <sourceforge.brock AT dse.nl>
569
570         * src/SDCCmain.c (linkEdit): oops, changed one line too many
571
572 2005-04-11 Maarten Brock <sourceforge.brock AT dse.nl>
573
574         * src/SDCCmain.c (linkEdit): fixed bug with finding crt0.o for z80
575
576 2005-04-10 Vangelis Rokas <vrokas AT users.sourceforge.net>
577
578         * src/pic16/glue.c (printIvalChar): fixed bug when emitting
579         characters arrays of larger size than the declared one.
580
581 2005-04-10 Borut Razem <borut.razem AT siol.net>
582
583         * src/pic/gen.c (genInline),
584           src/pic/pcode.c (newpCodeAsmDir), (pCode2str),
585           (genericPrint), (unlinkpCodeFromBranch), (compareLabel),
586           (findNextInstruction), (findPrevInstruction),
587           (findInstructionUsingLabel),
588           src/pic/pcode.h: fixed bug #1164907 - Labels not being recognized
589         * src/pic/pcode.c (findLabel): added missing '\n'
590         * src/src.dsp: added SDCCdwarf2.c to the project
591
592 2005-04-09 Borut Razem <borut.razem AT siol.net>
593
594         * support/scripts/sdcc.nsi: added include/hc08/* h to NSIS setup
595
596 2005-04-08 Raphael Neider <rneider AT web.de>
597
598         * src/pic16/pcode.c: added helpers defmapInsertAfter (insert a new item
599           into the chain after a given one) and mergeDefmapSymbols (combine
600           defmap entries for each symbol per pcode)
601         * (createDefmap): have defmap entries merged in the end
602         * (defmapReplaceSymRef): split defmap entries covering two accesses to
603           a symbol before replacing one access type's symbol, merge symbols in
604           the end (replacement symbol might already have an entry)
605         * (assignValnums): keep reference to written WREG intact
606
607 2005-04-08 Raphael Neider <rneider AT web.de>
608
609         * src/pic16/pcode.c (struct defmap_s): named anonymous union (for
610           Alpha)
611
612 2005-04-08 Vangelis Rokas <vrokas AT users.sourceforge.net>
613
614         * src/pic16/pcode.c (pic16_get_op2): enlarged size of array b to 128
615         bytes
616
617 2005-04-07 Raphael Neider <rneider AT web.de>
618
619         * device/include/pic16/usart.h: added compatibility defines for
620           devices with more than one USART
621         * device/include/pic16/pic18f[68][567]20.h: activated above defines
622
623 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
624
625         * device/lib/Makefile.in: updated for port specific include
626
627 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
628
629         * support/regression/ports/mcs51/spec.mk: added mcs51 include
630
631 2005-04-07 Maarten Brock <sourceforge.brock AT dse.nl>
632
633         * device/include/8051.h,
634         * device/include/8052.h,
635         * device/include/at89S8252.h,
636         * device/include/at89c55.h,
637         * device/include/at89x051.h,
638         * device/include/at89x51.h,
639         * device/include/at89x52.h,
640         * device/include/mcs51reg.h,
641         * device/include/reg51.h,
642         * device/include/reg764.h,
643         * device/include/regc515c.h,
644         * device/include/sab80515.h: (re)moved these 12 files
645         * device/include/mcs51/8051.h,
646         * device/include/mcs51/8052.h,
647         * device/include/mcs51/at89S8252.h,
648         * device/include/mcs51/at89c55.h,
649         * device/include/mcs51/at89x051.h,
650         * device/include/mcs51/at89x51.h,
651         * device/include/mcs51/at89x52.h,
652         * device/include/mcs51/mcs51reg.h,
653         * device/include/mcs51/reg51.h,
654         * device/include/mcs51/reg764.h,
655         * device/include/mcs51/regc515c.h,
656         * device/include/mcs51/sab80515.h: and added them here
657
658 2005-04-06 Maarten Brock <sourceforge.brock AT dse.nl>
659
660         * device/include/stdarg.h: changed SDCC specific keywords to double
661           underlined form.
662         * device/include/stdint.h: changed intptr_t and uintptr_t for others than
663           mcs51 and ds390.
664         * device/include/hc08/mc68hc908gp32.h,
665         * device/include/hc08/mc68hc908jb8.h,
666         * device/include/hc08/mc68hc908jkjl.h,
667         * device/include/hc08/mc68hc908qy.h: fixed comments
668         * device/include/mcs51/README: updated
669         * device/include/mcs51/c8051f120.h: added PINRSF
670         * device/lib/pic16/libc/stdlib/crc16.c: fixed comments
671         * src/pic16/pcode.c: MSVC6 doesn't accept declaring new variables
672           amidst code. Also inline is not supported.
673
674 2005-04-06 Raphael Neider <rneider AT web.de>
675
676         * src/pic16/pcode.c (pic16_pCodeReplace): also update pcflow->end
677         * (createDefmap): fixed CALLs to depend on FSR1 and RETLW to restore
678           callers stack/frame pointers
679
680 2005-04-06 Vangelis Rokas <vrokas AT users.sourceforge.net>
681
682         * device/include/pic16/usart.h: added, missing in previous commit,
683         * device/include/pic16/adc.h: fixed typo,
684         * device/lib/pic16/libc/utils/cvtdec.S: added missing in previous
685         commit,
686         * device/lib/pic16/libc/stdlib/g_ftoa.S: modified to include
687         <p18fxxx.inc>
688         * device/lib/pic16/libc/stdio/streams.c: leave stdin, stdout
689         uninitialized because a bug appears with gplink
690         * device/lib/pic16/{some makefiles}: moved $(CSTD) from CFLAGS to
691         COMPILE_FLAGS and added CPPFLAGS with -nostdinc because sdcpp
692         complains for unrecognised option
693
694 2005-04-05 Raphael Neider <rneider AT web.de>
695
696         * src/pic16/gen.c (pic16_popCopyReg): made copying work for extended
697           structs as well (using memcpy)
698         * (genFunction): fixed comparison, used pCodeOpLabel to reduce warning
699           on ISRs (GOTO has no label)
700         * src/pic16/device.h: added OF_OPTIMIZE_DF
701         * src/pic16/main.c: added compiler switch --optimize-df to enable the
702           new data flow analysis/optimization
703         * src/pic16/pcode.c: added (prototypes for and implementation of)
704           dataflow analysis functions, fixed pCodeInstructions' inCond and
705           outCond values, made RCALL a branch instruction
706         * (pic16_unlinkpCode): keep C line if possible
707         * (pic16_pCodeUnlink): removed cast on left side of assignment, have
708           C line moved if possible
709         * (pic16_getRegFrompCodeOp): NEW, improved version of...
710         * (pic16_getRegFromInstruction,pic16_getRegFromInstruction2): changed
711           to use new pic16_getRegFrompCodeOp (works for more SFRs)
712         * (pic16_BuildFlow): fixed skip instructions with label (did not start
713           new flow)
714         * (pic16_getJumptabpCode): NEW, needed in...
715         * (LinkFlow): fixed handling of jumptables, calls and conditional
716           branches
717         * (pic16_InsertCommentAfter): NEW
718         * (pic16_pCodeReplace): made verbose and flow preserving
719         * (AnalyzeFlow): added call to data flow analysis
720         * src/pic16/pcode.h: added defmaps to pCodeFlow struct
721         * src/pic16/pcodeflow.h: added PCC_STATUS to mean all STATUS bits
722         * src/pic16/ralloc.c (packRegsForAssign): added return 1 in the end
723
724 2005-04-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
725
726         * src/SDCCast.c (decorateType): fixed bug #1105626
727
728 2005-04-02 Vangelis Rokas <vrokas AT users.sourceforge.net>
729
730         * device/include/asm/pic16/features.h,
731         * pic18f*.h headers,
732         * device/include/pic16/adc.h,
733         * device/include/pic16/delay.h,
734         * device/include/pic16/i2c.h,
735         * device/include/pic16/malloc.h,
736         * device/include/pic16/stdio.h,
737         * device/include/pic16/stdlib.h,
738         * device/include/pic16/string.h,
739         * device/lib/pic16/libc/stdio/printf_tiny.c,
740         * device/lib/pic16/libc/stdio/printf_small.c,
741         * device/lib/pic16/libc/stdio/strmgpsim.c,
742         * device/lib/pic16/libc/stdio/strmmssp.c,
743         * device/lib/pic16/libc/stdio/strmusart.c,
744         * device/lib/pic16/libc/stdio/vfprintf.c,
745         * device/lib/pic16/libc/stdlib/ltoa.c,
746         * device/lib/pic16/libc/stdlib/putchar.c,
747         * device/lib/pic16/libc/stdlib/x_ftoa.c,
748         * device/lib/pic16/libc/stdlib/memchrpgm.c,
749         * device/lib/pic16/libc/stdlib/memchrram.c,
750         * device/lib/pic16/libc/stdlib/memcpypgm2ram.c,
751         * device/lib/pic16/libc/stdlib/memcpyram2ram.c,
752         * device/lib/pic16/libio/adc/adcbusy.c,
753         * device/lib/pic16/libio/adc/adcread.c,
754         * device/lib/pic16/libio/adc/adcsetch.c,
755         * device/lib/pic16/libio/usart/ubaud.c,
756         * device/lib/pic16/libio/usart/ubusy.c,
757         * device/lib/pic16/libio/usart/udrdy.c,
758         * device/lib/pic16/libio/usart/uopen.c,
759         * device/lib/pic16/libio/usart/uputc.c,
760         * device/lib/pic16/libsdcc/gptr/gptrget1.c,
761         * device/lib/pic16/libsdcc/gptr/gptrget2.c,
762         * device/lib/pic16/libsdcc/gptr/gptrget3.c,
763         * device/lib/pic16/libsdcc/gptr/gptrget4.c,
764         * device/lib/pic16/libsdcc/gptr/gptrput1.c,
765         * device/lib/pic16/libsdcc/gptr/gptrput2.c,
766         * device/lib/pic16/libsdcc/gptr/gptrput3.c,
767         * device/lib/pic16/libsdcc/gptr/gptrput4.c: modified all SDCC
768         specific keywords to double underlined form,
769         * device/lib/pic16/libc/Makefile.rules,
770         * device/lib/pic16/libsdcc/Makefile.rules,
771         * device/lib/pic16/libm/Makefile,
772         * device/lib/pic16/libio/Makefile.rules: added CSTD macro in CFLAGS
773         to compile with C standard set in Makefile.common
774         * device/lib/pic16/libc/stdlib/Makefile: added new C sources
775         rand.c and crc.c in compilation process,
776         * device/lib/pic16/libsdcc/int/divuint.c,
777         * device/lib/pic16/libsdcc/long/divulong.c: changed declaration of
778         `c' from signed to unsigned,
779         * device/lib/pic16/startup/crt0.c,
780         * device/lib/pic16/startup/crt0i.c,
781         * device/lib/pic16/startup/crt0iz.c: adopted to all SDCC specific
782         keywords to double underlined form, bug fixes in _do_cinit function
783         which prevented the correct initialization of the .idata segment,
784         * src/pic16/pcoderegs.c (insideLRBlock): fixed a bug that caused the
785         core to enter a infinite loop
786         * device/lib/pic16/libc/stdlib/rand.c, crc.c: new files
787
788 2005-04-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
789
790         * src/SDCCicode.c (getArraySizePtr): fixed bug #1122171
791
792 2005-04-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
793
794         * device/include/Makefile.in: add support for hc08 subdirectory
795         * device/include/hc08/: new subdirectory
796         * device/include/hc08/mc68hc908jkjl.h: new header contributed by
797         Lucas Loizaga, thanks!
798         * device/include/hc08/mc68hc908qy.h,
799         * device/include/hc08/mc68hc908gp32.h,
800         * device/include/hc08/mc68hc908jb8.h: moved hc08 register defs to
801         their own directory. Changed internal macro names to use the compiler
802         reserved namespace. Changed SDCC specific keywords to double
803         underlined form.
804         * device/include/math.h,
805         * device/include/malloc.h,
806         * device/include/stdarg.h,
807         * device/include/stdbool.h
808         * device/include/string.h,
809         * device/include/tinibios.h,
810         * device/include/ds400rom.h,
811         * device/include/8051.h,
812         * device/include/8052.h,
813         * device/include/80c51xa.h,
814         * device/include/at89c55.h,
815         * device/include/at89S8252.h,
816         * device/include/at89x51.h,
817         * device/include/at89x52.h,
818         * device/include/ds80c390.h,
819         * device/include/reg764.h,
820         * device/include/regc515c.h,
821         * device/include/sab80515.h,
822         * device/include/mcs51/c8051f000.h,
823         * device/include/mcs51/c8051f018.h,
824         * device/include/mcs51/c8051f020.h,
825         * device/include/mcs51/c8051f040.h,
826         * device/include/mcs51/c8051f060.h,
827         * device/include/mcs51/c8051f120.h,
828         * device/include/mcs51/c8051f300.h,
829         * device/include/mcs51/c8051f310.h,
830         * device/include/mcs51/c8051f320.h,
831         * device/include/mcs51/c8051f330.h,
832         * device/include/mcs51/c8051f350.h,
833         * device/include/z180.h: Changed SDCC specific keywords to double
834         underlined form.
835
836 2005-03-31 Vangelis Rokas <vrokas AT users.sourceforge.net>
837
838         * src/pic16/device.c (Pics16[]): added devices 18F2550, 18F4331,
839         18F4455,
840         * (pic16_assignConfigWordValue): disable testing of configuration
841         register value with config mask,
842         * src/pic16/gen.c (pic16_testStackOverflow): prefix stack test
843         function with port->fun_prefix,
844         * (genFunction): when generating a naked interrupt function never
845         create an absolute segment placed in interrupt vector address, place
846         the actual interrupt function at IVA instead, when an interrupt
847         function is generated with unspecified interrupt then do not create
848         the absolute section,
849         * (genGenPointerGet, genGenPointerSet, genPackBits): replace all
850         code for generating a call to generic pointer get/put function with
851         a call to function pic16_callGenericPointer(),
852         * src/pic16/genutils.c (pic16_callGenericPointerRW): NEW, generates
853         the call to the generic pointer get/put functions with prefixing the
854         function name with port->fun_prefix,
855         * src/pic16/glue.c (pic16glue): ifdef-out test of OF_LR_SUPPORT,
856         * src/pic16/main.c (_process_pragma): prefix function with
857         port->fun_prefix,
858         * (_pic16_finaliseOptions): define macro __18Fxxxx macro when
859         calling assembler, old 18Fxxxx macro is deprecated,
860         * src/pic16/pcode.c (unlinkpCodeFromBranch): added PC_INLINE and
861         PC_ASMDIR in while condition,
862         * (findInstruction): add PC_ASMDIR in while condition,
863         * (buildCallTree): prefix main with port->fun_prefix,
864         * (pic16_pCode2str): fixed bug that didn't emit the memory access
865         identifier for variable with banked access in instructions BTFSS,
866         BTFSC, BCF, BSF, BTG
867         * (AnalyzeFlow): moved call to OptimizepCode to pic16_AnalyzeBanking,
868         * src/pic16/pcodepeep.c (pCodeOpCompare): increase size of b to 1024,
869         * src/pic16/pcoderegs.c (pic16_pCodeRegoptimizeRegUsage): don't
870         perform optimization when enviroment variable NO_REG_OPT is set,
871         * (insideLRBlock): NEW, return 1 if register is inside an
872         INF_LOCALREGS block,
873         * (RemoveRegFromLRBlock): remove a register that is completely
874         eliminated by register optimization, but it is still left in local
875         register store/restore in/from stack block,
876         * (Remove2pcodes): after removing register, check to see if it
877         should be removed from local register store/restore in/from stack
878         block,
879         * src/pic16/ralloc.c (pic16_decodeOp): added decode for
880         DUMMY_READ_VOLATILE,
881
882         * device/include/pic16/adc.h: minor prototype modifications and
883         update,
884         * device/include/pic16/malloc.h: added GPL notice various
885         modifications,
886         * device/include/pic16/stdint.h: NEW, standard header for ints
887         * device/include/pic16/delay.h: NEW, header for delay functions,
888         delay10tcy, delay100tcy, delay1ktcy, delay10ktcy, delay100ktcy,
889         delay1mtcy,
890         * device/include/pic16/signal.h: NEW, header providing helper macros
891         for implementing signal handlers,
892         * device/include/pic16/stdio.h: added prototypes for functions,
893         printf, vprintf, sprintf, vsprintf, fprintf, vfprintf. Added
894         prototypes for stdin and stdout, added macro PUTCHAR to
895         automatically implement putchar function prototype,
896         * device/include/pic16/usart.h: modified and updated USART library,
897         * device/lib/pic16/libio/adc/,
898         * device/lib/pic16/libio/i2c: some modifications to improve library
899         performance,
900         * device/lib/pic16/libc/stdio/: modifications for the new printf*
901         family of functions,
902         * device/lib/pic16/libc/stdlib/: various modifications in the malloc
903         family of functions and other sources,
904         * device/lib/pic16/libio/usart/: NEW, c sources for the usart module
905         of the PIC18Fxx[28] devices,
906         * device/lib/pic16/libc/delay/: NEW, c sources for the delay functions,
907         * device/lib/pic16/libc/utils/: minor modifications in the .S sources,
908         * device/lib/pic16/startup/{crt0i.c, crt0iz.c}: redesign of the
909         _do_cinit function, because the previous failed when local variables
910         where not placed in the same memory bank,
911         * device/lib/pic16/libsdcc/char/: various modifications to improve
912         library performance,
913         * doc/sdccman.lyx: some reorganization of the PIC16 part, added many
914         information on the new functions of the c library and more...
915
916 2005-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
917
918         * src/SDCCBBlock.c (iCodeBreakDown): fixed bug #1170212
919
920 2005-03-26 Raphael Neider <rneider AT web.de>
921
922         * src/pic16/gen.c (genSkipc): fixed semantics (execute branch
923           if condition == CARRY)
924         * (genCmp): adapted to new genSkipc semantics
925         * src/pic16/genutils.c (pic6_genCmp_special): removed side effect
926           on rIfx (genCmp was broken)
927
928 2005-03-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
929
930         * src/SDCCmain.c (setDefaultOptions, optionsTable[], parseCmdLine),
931         * src/z80/main.c (_keywords[]),
932         * src/SDCCglobal.h (struct options),
933         * src/SDCC.y,
934         * src/SDCC.lex (isTargetKeyword, doPragma, pragma_tbl[]): new pragmas
935         to enable/disable SDCC and C99 extensions/keywords (std_c89, std_sdcc89,
936         std_c99, std_sdcc99). Also, equivalent command line options (--std-c89,
937         --std-sdcc89, --std-c99, --std-sdcc99). SDCC specific keywords are
938         always available in leading double underscore form. The C99 support is
939         mostly missing, but it's a start.
940         * support/regression/tests/bug-227710.c: fixed nonconforming use of
941         reserved identifier "__data".
942
943 2005-03-24 Maarten Brock <sourceforge.brock AT dse.nl>
944
945         * src/mcs51/peeph.def: fixed bug 1170013
946
947 2005-03-22 Maarten Brock <sourceforge.brock AT dse.nl>
948
949         * device/include/mcs51reg.h: fixed bug 842007
950
951 2005-03-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
952
953         * src/SDCCcflow.c (dfNumCompare): committed the wrong version of this
954         last time.
955
956 2005-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
957
958         * src/port.h (struct PORT),
959         * src/avr/ralloc.c (avr_assignRegisters),
960         * src/avr/main.c,
961         * src/ds390/ralloc.c (ds390_assignRegisters),
962         * src/ds390/main.c,
963         * src/hc08/ralloc.c (hc08_assignRegisters),
964         * src/hc08/main.c,
965         * src/mcs51/ralloc.c (mcs51_assignRegisters),
966         * src/mcs51/main.c,
967         * src/pic/ralloc.c (pic14_assignRegisters),
968         * src/pic/main.c,
969         * src/pic16/ralloc.c (pic16_assignRegisters),
970         * src/pic16/main.c,
971         * src/xa51/ralloc.c (xa51_assignRegisters),
972         * src/xa51/main.c,
973         * src/z80/ralloc.c (z80_assignRegisters),
974         * src/z80/ralloc.h,
975         * src/SDCCopt.c (eBBlockFromiCode, replaceRegEqv, killDeadCode),
976         * src/SDCCcse.c (ifxOptimize, cseBBlock, cseAllBlocks),
977         * src/SDCCcse.h,
978         * src/SDCCdflow.c (computeDataFlow),
979         * src/SDCCdflow.h,
980         * src/SDCCloop.c (addDefInExprs, loopInvariants, loopOptimizations),
981         * src/SDCCloop.h,
982         * src/SDCCcflow.c (*),
983         * src/SDCCcflow.h,
984         * src/SDCCBBlock.c (iCodeBreakDown, dumpEbbsToFileExt, eBBWithEntryLabel),
985         * src/SDCCBBlock.h (struct ebbIndex): new struct that keeps two copies
986         of the eBBlock list, sorted by both bbnum and dfnum. (fixes bug with
987         immedDom() returning wrong block; probably fixes bug #1160833)
988
989 2005-03-20 Borut Razem <borut.razem AT siol.net>
990
991         * support/scripts/inc2h.pl: WIN32 port
992
993 2005-03-19 Maarten Brock <sourceforge.brock AT dse.nl>
994
995         * device/lib/makefile.in: added abs.c and labs.c
996
997 2005-03-17 Maarten Brock <sourceforge.brock AT dse.nl>
998
999         * device/include/stdint.h: added
1000         * device/lib/abs.c: added
1001         * device/lib/labs.c: added
1002         * device/include/stdlib.h: added abs() and labs() prototypes
1003         * device/lib/libsdcc.lib: added abs and labs
1004         * device/include/float.h,
1005         * device/lib/_fsmul.c,
1006         * device/lib/printf_fast.c,
1007         * device/lib/printf_tiny.c: updated comments
1008
1009 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1010
1011         * src/SDCCicode.c (geniCodeSwitch, geniCodeJumpTable): fixed
1012         bug #1164313
1013
1014 2005-03-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1015
1016         * src/SDCCcse.c (cseBBlock): retain assignment to self when volatile
1017         * src/SDCCast.c (isLoopCountable): fixed bug #1161985
1018
1019 2005-03-15 Maarten Brock <sourceforge.brock AT dse.nl>
1020
1021         * device/lib/printf_large.c: removed inline assembly for portability and
1022           readability. Use printf_fast if speed or size are more important.
1023         * src/pic16/gen.c: removed conditions around use of DEBUGpc
1024         * src/pic16/genutils.h: added define for DEBUGpc for MSVC
1025
1026 2005-03-15 Vangelis Rokas <vrokas AT users.sourceforge.net>
1027
1028         * src/pic16/genutils.c (pic16_genCmp_special): initialized offs to
1029         prevent compiler warning
1030
1031 2005-03-14 Vangelis Rokas <vrokas AT users.sourceforge.net>
1032
1033         * device/lib/pic16/startup/crt0i.c (_cinit): local variables where
1034         moved to level 0 and declared as static. Also they are explicit
1035         placed in access bank. This was necessery because some times they
1036         might cross memory bank boundaries. crt0iz.c is *NOT* updated!!!
1037         * src/pic16/device.h: added flag OPTIMIZE_CMP to enable some compare
1038         optimizations. Currently only compare to unsigned char is implemented,
1039         * src/pic16/gen.c: added fReturnIdx array,
1040         * (struct resolvedIfx) is moved to gen.h and made public,
1041         * (struct _G): added sregsAlloc and sregsAllocSet fields,
1042         * (aopForSym): added an optimization to directly store in stack of
1043         the operand of a SEND iCode,
1044         * (pic16_aopOp): don't return return registers as strings (AOP_STR)
1045         but as registers instead (AOP_REG) using the fReturnIdx array,
1046         * (pic16_freeAsmop): remove the freed register from the
1047         _G.sregsAlloc field,
1048         * (pic16_aopGet): in case AOP_STR, the compare to 'a' is changed to
1049         a compare of 'WREG',
1050         * (pic16_popGetTempRegCond): changed function prototype, now
1051         function takes also a bitVector argument v which holds the current
1052         set of registers that are allocated for stack access by aopForSym,
1053         registers allocated in aopForSym for accessing stack symbols are not
1054         any more part of the functions usedRegs field,
1055         * (genCall): some times aopOp is called for a stack variable to be
1056         send, aopForSym might perform the push, if this is true make sure
1057         that genCall doesn't push the variable twice by testing _G.resDirect,
1058         * (genFunction): changed testing for unspecified interrupt number
1059         from 256 to INTNO_UNSPEC,
1060         * modified selection scheme of frame pointer generation. Previously
1061         if function did use local registers a frame pointer was generated,
1062         now a frame pointer is generated only if function has arguments
1063         (that need PLUSW2 register access), or has stack arguments, or the
1064         compiler is not instructed to omit the frame pointer,
1065         * (genEndFunction): before restoring local registers that were saved
1066         in the function preamble, also restore the registers that *might*
1067         have been allocated for stack access,
1068         * (genRet): removed some old comments,
1069         * (genCmp, the active (RN's) version): added a call to the
1070         pic16_genCmp_special function to perform the compare with a more
1071         robust and optimized way,
1072         * (genInline): a feature has been added in inline code generation,
1073         which allows a wildcard variable substitution when writing inline
1074         assembly. Code is incomplete and experimental therefore undocumented,
1075         * (genCast): changed order of aopOp for result and right to allow
1076         aopForSym to directly load the result if possible,
1077         * src/pic16/genutils.c (selectCompareOp, pic16_genCmp_special): NEW,
1078         perform an optimized compare on some selected special occasions,
1079         * src/pic16/genutils.h: declaration of resolvedIfx structure from gen.c,
1080         * src/pic16/glue.c (pic16createInterrupVect): make sure we never
1081         generate an IVT any more,
1082         * src/pic16/main.c (pic16_optionsTable): added command line option
1083         --optimize-cmp,
1084         * (_pic16_initPaths): when calling C preprocessor define pic18fXXXX
1085         macro too, when calling assembler define pic18fXXXX *and* __18Fxxxx
1086         macros,
1087         * src/pic16/NOTES: Raphael Neider added in list of active developers
1088         * src/pic16/pcode.c (OPT_TYPE_STR): added strings jumptable_begin and
1089         jumptable_end to prevent bug #,
1090         * (pic16_pciADDWFC, ADDFWC, COMF, CLRF): added some missing flags in
1091         inCond and outCond fields,
1092         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): add a fix for bug #,
1093         * src/pic16/ralloc.c (serialRegAssign): explicit set willCS to 0 to
1094         turn off register spilling,
1095         * (packRegsForOneUse): synced with other ports' versions although it
1096         is not used currently,
1097         * (pic16_packRegisters): added an optimization while reading
1098         structure bitfields, some registers may be saved (malloc code is
1099         decreased by 80 bytes)
1100
1101 2005-03-12 Vangelis Rokas <vrokas AT users.sourceforge.net>
1102
1103         * src/SDCCcse.c (cseBBlock): inside 'do operand lookup' loop test if
1104         left is a bitfield, if yes, then don't optimize assignment. Perhaps
1105         this can be optimized more?
1106
1107 2005-03-10 Raphael Neider <rneider AT web.de>
1108
1109         * src/pic16/gen.c (pic16_loadFSR0, genPackBits, genUnpackBits,
1110           genNearPointerGet): (hopefully) fixed access to bitfields via
1111           pointers (p->bitN = x; and x = p->bitN; failed)
1112
1113 2005-03-09 Paul Stoffregen <paul AT pjrc.com>
1114
1115         * device/lib/printf_fast.c: fix leading zero format, eg "%02d"
1116
1117 2005-03-09 Raphael Neider <rneider AT web.de>
1118
1119         * src/SDCCopt.c (killDeadCode): fixed bug #1156016
1120
1121 2005-03-06 Maarten Brock <sourceforge.brock AT dse.nl>
1122
1123         * src/SDCCicode.h: moved CRITICAL and ENDCRITICAL from SKIP_IC2 to SKIP_IC
1124         * src/mcs51/ralloc.c (willCauseSpill): added check for REG_BIT type,
1125           (regTypeNum): set REG_BIT type if necessary
1126         * src/mcs51/ralloc.h: added define REG_BIT, used to fix bug 1144613
1127         * support/regression/tests/critical.c: check bug 1144613
1128
1129 2005-03-02 Raphael Neider <rneider AT web.de>
1130
1131         * src/pic16/gen.c (genRightShiftLiteral): fixed bug #1154256
1132
1133 2005-02-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1134
1135         * src/avr/ralloc.c (serialRegAssign),
1136         * src/ds390/ralloc.c (serialRegAssign),
1137         * src/hc08/ralloc.c (serialRegAssign),
1138         * src/mcs51/ralloc.c (serialRegAssign),
1139         * src/pic/ralloc.c (serialRegAssign),
1140         * src/pic16/ralloc.c (serialRegAssign),
1141         * src/xa51/ralloc.c (serialRegAssign),
1142         * src/z80/ralloc.c (serialRegAssign): fixed bug #1105154
1143
1144 2005-02-22 Maarten Brock <sourceforge.brock AT dse.nl>
1145
1146         * src/SDCCast.c (decorateType): fixed bug 1124787
1147
1148 2005-02-20 Hubert Sack <sack AT digiplan.de>
1149         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1150
1151         * src/mcs51/peeph.def: added peepholes 3.h-k and 132.a-f from
1152         patch #1121755
1153
1154 2005-02-20 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1155
1156         * src/SDCCpeeph.def: new keyword "labelRefCountChange" which allows peepholes
1157         to keep the correct label reference count when adding/removing references
1158         to labels. A peephole file using this is appended to patch #1144962.
1159
1160 2005-02-14 Raphael Neider <rneider AT web.de>
1161
1162         * device/lib/pic16/libc/string/memccpy.c: changed 3rd argument to char
1163         * src/SDCC.lex (process_pragma): fixed to make disable_warning work for PIC16
1164         * src/pic16/gen.c (aopForSym, calls to pic16_aopOp): prevent unneccessary
1165           retrievals of result operand's value on assignment
1166
1167 2005-02-13 Vangelis Rokas <vrokas AT otenet.gr>
1168
1169         * device/include/pic16/string.h: modified prototype for memccpy()
1170         to memccpy(void *, void *, char, size_t)
1171         * src/pic16/gen.c (genFunction, genEndFunction): reenable if-case to
1172         check whether to omit frame pointer or not,
1173         * (genInline): convert all occurences of "\n" to LF in inline
1174         assembler blocks, this helps formatting the inline text,
1175         * (pic16_loadFSR0): modified prototype,
1176         * (genNearPointerGet, genNearPointerSet): reorganization of code,
1177         removed some 8051 legacy code,
1178         * (genPackBits): enabled handling bitfields exceeding one byte in size,
1179         * src/pic16/ralloc.c (pic16_assignRegisters): clear dynrIdx variable
1180         before allocating temporary registers in functions,
1181
1182 2005-02-11 Maarten Brock <sourceforge.brock AT dse.nl>
1183
1184         * support/regression/tests/bitvars.c: corrected the "fix"
1185
1186 2005-02-10 Maarten Brock <sourceforge.brock AT dse.nl>
1187
1188         * support/regression/tests/bitvars.c,
1189         * support/regression/tests/bitwise.c,
1190         * support/regression/tests/rotate.c: "fixed" problems on Alpha
1191
1192 2005-02-10 Raphael Neider <rneider AT web.de>
1193
1194         * src/pic16/pcode.c (assignToSameBank) : fixed cast to pointer of
1195           different size for Alpha
1196         * src/pic16/gen.c (genCmpEq) : improved compare with 0
1197
1198 2005-02-09 Raphael Neider <rneider AT web.de>
1199
1200         * src/SDCC.lex(doPragma) : save and restore warning options as well
1201           (also added new stack plus clone- and copyAndFreeSDCCERRG())
1202         * have #pragma less_pedantic set the errorlevel to WARNING
1203           (fixes #1117001)
1204         * (cloneOptimize) : fixed wrong malloc's size
1205         * support/Util/SDCCerr.[ch] : made SDCCERRG globally accessible to
1206           facilitate correct handling of #pragma (save|restore)
1207
1208 2005-02-09 Maarten Brock <sourceforge.brock AT dse.nl>
1209
1210         * src/mcs51/gen.c: removed non-standard C nameless struct/union
1211
1212 2005-02-04 Slade Rich <slade_rich AT users.sourceforge.net>
1213
1214         * src/pic/gen.c : Fix for bugs #1080519 & #1115662.
1215
1216 2005-02-03 Maarten Brock <sourceforge.brock AT dse.nl>
1217
1218         * device/include/mcs51/c8051f120.h: added declarations for sbit port 2,3&4
1219
1220 2005-02-02 Raphael Neider <rneider AT web.de>
1221
1222         * src/SDCCast.c (processParms): disabled W_NONRENT_ARGS for pic16 port
1223         * src/pic16/gen.c (aopForSym): reenabled special case for function pointers
1224         * (pic16_storeForReturn): fixed to allow returning function pointers
1225         * (genPackBits): improved accessing full bytes, implemented for GPOINTERs
1226         * device/include/pic16/{stddef.h,stdbool.h}: added
1227
1228 2005-02-02 Maarten Brock <sourceforge.brock AT dse.nl>
1229
1230         * device/include/mcs51/c8051f040.h: added define CPT2_PAGE
1231
1232 2005-02-01 Slade Rich <slade_rich AT users.sourceforge.net>
1233
1234         * src/pic16/pic16.dsp : Added file graph.c to make it compile under windows
1235         * src/pic16/Makefile.bcc : Do not use this file but added file graph.c as it
1236          appeared to be required
1237
1238 2005-01-31 Borut Razem <borut.razem AT siol.net>
1239
1240         * support/scripts/sdcc.nsi: added include/asm/ds390, include/asm/mcs51,
1241           include/mcs51 and include/z80 directories to the package
1242
1243 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1244
1245         * src/hc08/gen.c (genFunction): fixed bug #1112752
1246
1247 2005-01-30 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1248
1249         * src/mcs51/peeph.def: adapted peephole 258.x to changed gen.c (genAnd)
1250
1251 2005-01-29 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1252
1253         * src/mcs51/gen.c (genAnd): accessing LSB/MSB by rotating acc
1254
1255 2005-01-29 Maarten Brock <sourceforge.brock AT dse.nl>
1256
1257         * device/include/Makefile.in: create/copy mcs51 and z80 include subdirs
1258
1259 2005-01-27 Maarten Brock <sourceforge.brock AT dse.nl>
1260
1261         * device/include/c8051fxxx.h: removed these 6 files
1262         * device/include/mcs51/c8051fxxx.h: added these 11 new files
1263
1264 2005-01-26 Raphael Neider <rneider AT web.de>
1265
1266         * src/pic16/gen.c (genAssign): fixed assignment from longs
1267           in codespace (were cut to three bytes)
1268         * (genDummyRead): implemented (except for CODESPACE...),
1269           fixed bug #1108575
1270         * src/pic16/glue.c (emitStatistics): beautified
1271         * device/lib/pic16/libm/Makefile: added include path
1272
1273 2005-01-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1274
1275         * src/z80/gen.c (aopPut): fixed bug #1103902
1276
1277 2005-01-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1278
1279         * device/lib/expf.c: fixed bug #1095792
1280
1281 2005-01-24 Vangelis Rokas <vrokas AT otenet.gr>
1282
1283         * device/lib/pic16/libm: added Math library sources
1284
1285 2005-01-24 Raphael Neider <rneider AT web.de>
1286
1287         * src/pic16/pcode.h: added second memory operand to pCodeOpReg
1288           to enable upcast to pCodeOpReg2 (there is no type tag to
1289           differenciate the two and pic16_popGet2p cast into PCOR2)
1290         * src/pic16/main.c (_process_pragma): fixed another malloc bug
1291           (sizeof(sectNames) changed to sizeof(sectName))
1292           Both patches fix segfaults under MinGW.
1293
1294 2005-01-23 Raphael Neider <rneider AT web.de>
1295
1296         * src/pic16/{device.c,pcode.c}: s/free/Safe_free/g for
1297           Safe_[mc]?alloc()'ed variables
1298         * src/pic16/gen.c (pic16_aopOp,pic16_popGet): added handling
1299           of (byte sized) temporaries (assign them to WREG for now)
1300         * src/pic16/main.c (_process_pragma): fixed nasty malloc bug
1301           (used sizeof(set *sectSyms) instead of sizeof(struct sectSym)),
1302           this might fix SIGSEGVs on MinGW...
1303         * src/SDCCopt.c (killDeadCode): restored original behaviour
1304           (volatile operands might get thrown away though)
1305
1306 2005-01-23 Vangelis Rokas <vrokas AT otenet.gr>
1307
1308         * src/pic16/gen.c: fixed bug #1106975,
1309         * src/pic16/gen.c: fixed possible bug #1102572, now during TOS
1310         pointer update, INTCON is saved, global interrupts are disabled and
1311         restored after updateing TOS.
1312         * src/SDCC.y, src/SDCC.lex, src/SDCCsymt.c, src/SDCCsymt.h:
1313         * added function attribute 'shadowregs' to take advantage of shadow
1314         registers,
1315         * added function attribute 'wparam' as an alternative to the wparam
1316         pragma,
1317         * support/Utils/SDCCerr.[ch]: added error E_SHADOWREGS_NO_ISR when
1318         user declares a non-ISR function as 'shadowregs',
1319         * doc/sdccman.lyx: updated to reflect recent changes of pic16 port
1320
1321 2005-01-22 Vangelis Rokas <vrokas AT otenet.gr>
1322
1323         * .version: bumped version number to 2.4.8
1324         * device/lib/pic16/pics.all: list of PIC18F devices supported by
1325         pic16 port,
1326         * device/lib/pic16/libio/i2c/: I2C module support library,
1327         * device/include/pic16/i2c.h: I2C support library header,
1328         * device/lib/pic16/libc/stdio/: standard IO support sources,
1329         * (printf_small.c): printf_small() source, supports float print,
1330         * (printf_tiny.c): printf_tiny() source, does not support floats,
1331         * device/lib/pic16/Makefile.common.in: added OPT_FLAGS macro to
1332         enable global optimizations for entire library source, other
1333         Makefiles in the source tree are also modified to reflect this,
1334         * device/lib/pic16/libc/stdlib/putchar.c (putchar): dummy putchar()
1335         function,
1336         * doc/sdccman.lyx: updated to reflect new changes,
1337         * src/pic16/gen.c (aopForSym): don't handle sym->iaccess in
1338         sym->onStack if-case,
1339         * src/pic16/main.c (_pic16_keywords): commented out keywords bit,
1340         sbit, idata, _idata, xdata, _xdata,
1341         * added pragma library, to link an external library, (see doc),
1342         * removed command line options, --pomit-config-words, --pomit-ivt,
1343         --pleave-reset-vector,
1344         * (pic16_finaliseOptions): when define macro SDCC_MODEL_{SMALL/LARGE}
1345         when calling assembler to reflect memory model used, also define
1346         macro STACK_MODEL_{SMALL/LARGE} when compiling and assembling to
1347         reflect stack model used,
1348         * src/pic16/ralloc.c (pic16_allocDirReg): when operand is allocated
1349         on stack return NULL,
1350
1351 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1352
1353         * src/SDCCopt.c (killDeadCode): do not throw iCodes away if one
1354           of the operands is volatile. Fixes #1020220
1355
1356 2005-01-22 Daniel Winkler <post AT danielwinkler.de>
1357
1358         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): reenabled optimization
1359         * (OptimizeRegUsage): make sure that there is really no other flow where
1360           the first pCode is used
1361
1362 2005-01-22 Raphael Neider <rneider AT web.de>
1363
1364         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): disabled optimization
1365           to fix #1106967 (pCode->seq are not set up correctly)
1366
1367 2005-01-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1368
1369         * src/SDCCglue.c (glue): make sure code area is declared before the
1370         static initialization area.
1371
1372 2005-01-21 Raphael Neider <rneider AT web.de>
1373
1374         * device/lib/Makefile.in: fixed test for pic16 install dir
1375         * device/lib/pic16/*/Makefile*: modified compile flags to enable
1376           optimizations
1377         * doc/sdccman.lyx: updated banksel optimization, removed --flr-support and
1378           added --optimize-goto compiler switch and pragma wparam documentation
1379         * src/pic16/pcode.c (pic16_OptimizeBanksel): removed statistics dump
1380         * src/pic16/pcodepeep.c (pic16_pCodeOpCopy): fixed copying of WREG, PRODL
1381           and PRODH closing bug #1071770 (peephole optimizer)
1382
1383 2005-01-19 Raphael Neider <rneider AT web.de>
1384
1385         * src/SDCCglobl.h: ensure that PATH_MAX >= 2048 to guarantee
1386           cmdLine buffers (used when calling sdcpp...) are large enough
1387           (MAX_PATH=256 truncates arguments leading to system halts when
1388           used in MinGW...)
1389         * src/pic16/gen.c (pic16_sameRegs): relaxed size criterion
1390         * (genUminus): rewritten to for efficiency
1391         * (genNearPointer[GS]et): enforce reloading of FSR0 (was still
1392           used uninitialized in some cases)
1393         * (genCast): upcasting a 16bit int to a 24bit GPOINTER may not
1394           copy the third byte from the int -- now assumes 0x80 (data memory)
1395         * src/pic16/genarith.c (pic16_genPlus): fixed bug when swapping
1396           operands (genAddLit expects the iCode's operands to swapped as
1397           well), fixed leftover bytes (crashed for short left operands)
1398         * (pic16_genMinusDec): performance improvements, removed false
1399           PIC14 emitSKPNCs
1400         * (pic16_genMinus): fixed to cope with differently sized operands
1401         * src/pic16/glue.c (pic16_glue): added new banksel optimization
1402           for --obanksel > 1
1403         * src/pic16/pcode.c: implemented (first phase of) banksel optimization
1404         * src/pic16/graph.[ch]: implementation of directed graphs, used by
1405           new banksel optimization
1406         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): prevented
1407           analysis for temporary registers (segfaults...)
1408         * src/pic16/peeph.def: added rule
1409
1410 2005-01-18 Vangelis Rokas <vrokas AT otenet.gr>
1411
1412         * device/lib/pic16/libc/stdlib/x_ftoa.c: it defines x_ftoa function
1413         which converts a float number to its ASCII representation
1414         * device/lib/pic16/libc/utils/cnvfrac.S,cnvint.S: support
1415         functions to convert the fractional and integer part of a float to ASCII,
1416         * device/lib/pic16/libc/stdlib/(calloc.c,free.c, malloc.c,
1417         realloc.c): added _MALLOC_SPEC to explicit place variables in data
1418         ram
1419         * device/include/asm/pic16/features.h: added _CODE, _DATA, _AUTOMEM,
1420         _STATMEM macros,
1421         * device/include/pic16/adc.h: added GPL info,
1422         * src/pic16/gen.c (genIfxpCOpJump): perform an genIfxJump but using
1423         a pCodeOp as tested operand,
1424         * (genNearPointerGet): optimized bit testing, does not use
1425         intermediate register for bit value, test directly instead with
1426         BTFSS, BTFSC, works only for single bits,
1427         * (genpic16Code): dump the name of the iCode in the asm,
1428         * src/pic16/ralloc.c (decodeOp): removed static declaration and
1429         renamed to pic16_decodeOp,
1430         * (serialRegAssign): do not allocate a temporary register for iCode
1431         sequences that test a single bit for 1/0
1432
1433 2005-01-12 Vangelis Rokas <vrokas AT otenet.gr>
1434
1435         * src/pic16/pcode.[ch]: introduced pic16_stackpnt_*,
1436         pic16_framepnt_*, pic16_stack_*, pic1_frame_* pointer variables to
1437         access stack and frame pointers. They are initially assigned to
1438         point at pic16_pc_fsr1[lh] and pic16_pc_fsr2[lh] variables and other
1439         accessing SFRs. Updated all occurences of modification of stack or
1440         frame pointer in gen.c and pcode.c,
1441         * src/pic16/ralloc.c (serialRegAssign): fixed two bugs with
1442         assigning of a literal value to pointers,
1443         * src/pic16/main.c (pic16_finiliseOptions): set pre-processor define
1444         flag STACK_MODEL_SMALL or STACK_MODEL_LARGE according to the model
1445         selected
1446
1447 2005-01-11 Vangelis Rokas <vrokas AT otenet.gr>
1448
1449         * doc/sdccman.lyx: update documentation about stack pragma, added
1450         some info for stack memory models
1451
1452 2005-01-08 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
1453
1454         * src/pic16/gen.c (DEBUGpc): MSVC 6 does not support macro variable arguments
1455
1456 2005-01-08 Raphael Neider <rneider AT web.de>
1457
1458         * src/pic16/device.c (pic16_dump_usection): changed naming scheme for
1459           udata sections to fix bug #1097823
1460
1461 2005-01-05 Raphael Neider <rneider AT web.de>
1462
1463         * src/pic16/gen.c (genGenericShift): added handling of differently
1464           sized left operand and result
1465
1466 2005-01-04 Raphael Neider <rneider AT web.de>
1467
1468         * src/pic16/gen.c (genIfxJump): fixed inverted skips on CARRY
1469         * (genIfx): fixed (?) read from uninitialized SPIL_LOC (now assumes CARRY
1470           to hold the condition bit)
1471         * added new version of genCmp (old code available via #define)
1472         * added new version of genShiftLeft/genShiftRight in a generic
1473           way, now supports shifting by negative values
1474         * (genLeftShiftLiteral, genRightShiftLiteral): use absolute value of
1475           shiftCount (expected by genGenericShift)
1476         * src/pic16/genarith.c (genPlus): added code for adding CARRY+literal
1477         * src/pic16/pcode.c (pic16_OptimizeJumps): removed annoying statistics
1478           dump
1479         * (pic16_newpCodeOpLit): changed to cast to unsigned char (as e.g. -32766
1480           is an invalid literal too...)
1481
1482 2005-01-04 Vangelis Rokas <vrokas AT otenet.gr>
1483
1484         * src/pic16/gen.c (aopForSym, genEndFunction): applied some fixes
1485         from Raphael Neider,
1486         * src/pic16/pcode.c (pic16_newpCodeOpLit): removed casting to char
1487         for 8-bit literals. This fixes some literal operands which are sign
1488         extended to 16-bits ints when instruction needs only 8-bits.
1489
1490 2004-12-31 Paul Stoffregen <paul AT pjrc.com>
1491
1492         * device/lib/logf.c: added mcs51 assembly version
1493         * device/lib/expf.c: added mcs51 assembly version
1494         * device/lib/_logexpf.c: new shared asm code for expf and logf
1495         * device/include/math.h: add defines for assembly math library
1496         * device/lib/Makefile.in: build new _logexpf.c
1497         * device/lib/libfloat.lib: use new _logexpf.c
1498
1499 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1500
1501         * src/pic/device.c
1502         * src/pic/pcode.c : adjusted internal stack and pre-allocated registers for
1503           device types which have less than 0x7f registers.
1504
1505 2004-12-29 Slade Rich <slade_rich AT users.sourceforge.net>
1506
1507         * src/pic/genarith.c : Fixed problem with subtraction where the result would not be updated when borrowing.
1508
1509 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1510
1511         * device/lib/printf_fast.c: only build on supported arch.
1512         * device/lib/printf_tiny.c: only build on supported arch.
1513         * device/lib/printf_fast_f.c: only build if asm float lib
1514         * device/lib/_fsget1arg.c: only build if asm float lib
1515         * device/lib/_fsget2args.c: only build if asm float lib
1516         * device/lib/_fsnormalize.c: only build if asm float lib
1517         * device/lib/_fsreturnval.c: only build if asm float lib
1518         * device/lib/_fsrshift.c: only build if asm float lib
1519         * device/lib/_fsswapargs.c: only build if asm float lib
1520         * device/include/stdio.h: don't provide print_fast,
1521           print_fast_f, print_tiny prototypes if --xstack used
1522
1523 2004-12-28 Maarten Brock <sourceforge.brock AT dse.nl>
1524
1525         * device/lib/sincosf.c (sincosf): don't invert bit/bool by ~
1526         * support/regression/ports/mcs51-stack-auto/spec.mk: added new _fs.. files
1527           to the SOURCES
1528
1529 2004-12-28 Paul Stoffregen <paul AT pjrc.com>
1530
1531         * device/lib/printf_fast_f.c: same as printf_fast, but
1532           with floating point enabled
1533         * device/lib/printf_fast.c: minor tweaks
1534         * device/include/stdio.h: add printf_fast_f
1535
1536 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1537
1538         * src/SDCCmain.c: make --float-reent default for mcs51
1539         * device/lib/_fsadd.c: added mcs51 assembly version
1540         * device/lib/_fssub.c: added mcs51 assembly version
1541         * device/lib/_fsmul.c: added mcs51 assembly version
1542         * device/lib/_fsdiv.c: added mcs51 assembly version
1543         * device/lib/_fseq.c: added mcs51 assembly version
1544         * device/lib/_fsneq.c: added mcs51 assembly version
1545         * device/lib/_fsgt.c: added mcs51 assembly version
1546         * device/lib/_fslt.c: added mcs51 assembly version
1547         * device/lib/_fscmp.c: shared code for fseq,fsgt,fslt,fsneq
1548         * device/lib/Makefile.in: add _fscmp to build
1549         * device/lib/libfloat.lib: add _fscmp to build
1550
1551 2004-12-27 Paul Stoffregen <paul AT pjrc.com>
1552
1553         * device/lib/_fs2slong.c: added mcs51 assembly version
1554         * device/lib/_fs2sint.c: added mcs51 assembly version
1555         * device/lib/_fs2schar.c: added mcs51 assembly version
1556         * device/lib/_fs2ulong.c: added mcs51 assembly version
1557         * device/lib/_fs2uint.c: added mcs51 assembly version
1558         * device/lib/_fs2uchar.c: added mcs51 assembly version
1559         * device/lib/_slong2fs.c: added mcs51 assembly version
1560         * device/lib/_sint2fs.c: added mcs51 assembly version
1561         * device/lib/_schar2fs.c: added mcs51 assembly version
1562         * device/lib/_ulong2fs.c: added mcs51 assembly version
1563         * device/lib/_uint2fs.c: added mcs51 assembly version
1564         * device/lib/_uchar2fs.c: added mcs51 assembly version
1565         * device/include/float.h: added #define to select asm vs c
1566
1567 2004-12-26 Paul Stoffregen <paul AT pjrc.com>
1568
1569         * device/lib/printf_fast.c: improvements to float output
1570         * device/include/float.h: add defines for assembly float library
1571         * device/lib/_fsget1arg.c: receive 1 float arg
1572         * device/lib/_fsget2args.c: receive 2 float args (reentrant)
1573         * device/lib/_fsnormalize.c: normalize a float
1574         * device/lib/_fsreturnval.c: return float, various helper routines
1575         * device/lib/_fsrshift.c: right shift a float's mantissa
1576         * device/lib/_fsswapargs.c: swap 2 floats
1577         * device/lib/Makefile.in: build these 6 new files for mcs51
1578         * device/lib/libfloat.lib: add these 6 files to the library
1579
1580 2004-12-26 Borut Razem <borut.razem AT siol.net>
1581
1582         * sim/ucsim/avr.src/arith_inst.cc: fixed bug #1088372- savr is not
1583           built by gcc 3.4.2
1584
1585 2004-12-25 Paul Stoffregen <paul AT pjrc.com>
1586
1587         * device/lib/printf_tiny.c: printf for mcs51 in only 267 bytes,
1588           and fully reentrant and register bank neutral.
1589         * device/lib/printf_fast.c: added float (not enabled by default),
1590           added compact/slower integer (also not enabled by default),
1591           improved size/speed of fast integer code, other minor changes
1592         * device/include/stdio.h, device/lib/Makefile.in,
1593           device/lib/libsdcc.lib: integrate printf_tiny into mcs51 build
1594
1595 2004-12-24 Maarten Brock <sourceforge.brock AT dse.nl>
1596
1597         * src/pic16/pcode.c: declaring variables other than at the start of a
1598           block is not supported in C by VC6.
1599
1600 2004-12-22 Vangelis Rokas <vrokas AT otenet.gr>
1601
1602         * applied a previous patch from Raphael Neider that wasn't included
1603         in the previous commits, which fixes infinite loops within jumptable
1604         improvements,
1605         * made some fixes that previous patches introduced
1606
1607 2004-12-21 Vangelis Rokas <vrokas AT otenet.gr>
1608
1609         * src/pic16/gen.c (pic16_aopGet): applied fix from Raphael Neider
1610         that fixes an issue with AOP_PCODE asmop's offset,
1611         * (pic16_popCopyReg): update instance field too,
1612         * (mov2w): modified to pic16_mov2w because it conflicts with mov2w
1613         function of pic port,
1614         * (genCmp, genAnd, genAssign),
1615         * src/pic16/genarith.c (genAddLit): some fixes from Raphael Neider,
1616
1617 2004-12-20 Vangelis Rokas <vrokas AT otenet.gr>
1618
1619         * src/SDCCast.c (gatherAutoInit): allow pic16 to emit static
1620         variables initial values to idata section,
1621         * src/SDCCicode.c (geniCodeCall): patch from ### to fix unreferenced
1622         variables in some functions. This utilizes parmBytes field of iCode
1623         structure to hold the offset of the variable in stack. (might be
1624         able to use the stack field too?)
1625         * applied patch from Raphael Neider # ### , # ###
1626         * src/pic16/glue.c (pic16emitRegularMap): fix to print static
1627         variable initial values in idata section,
1628         * src/pic16/ralloc.c (pic16_allocDirReg): don't allocate register
1629         for static variables with initial value
1630         * src/device/lib/pic16/libsdcc/float/ulong2fs.c (__ulong2fs):
1631         applied fix in while loop from Raphael Neider.
1632
1633 2004-12-19 Maarten Brock <sourceforge.brock AT dse.nl>
1634
1635         * src/ds390/gen.c (genCpl): fixed bit=~(char/bit) bugs, added warning
1636         * src/ds390/main.c (_ds390_regparm): don't pass bit params in registers
1637         * src/ds390/ralloc.c (serialRegAssign): spill bits
1638         * src/mcs51/gen.c (genCpl): fixed bit=~(char) bugs, added warning
1639         * support/Util/SDCCerr.c,
1640         * support/Util/SDCCerr.h: added warning W_COMPLEMENT for using bit=~(bit)
1641         * support/regression/tests/bitvars.c: added tests for bitwise complement(~)
1642         * support/regression/tests/bitwise.c: added test for bitwise complement(~)
1643
1644 2004-12-09 Maarten Brock <sourceforge.brock AT dse.nl>
1645
1646         * device/include/sdcc-lib.h: inserted LGPL, added includes
1647           asm/ds390/features.h and asm/mcs51/features.h
1648         * device/include/asm/default/features.h,
1649         * device/include/asm/gbz80/features.h,
1650         * device/include/asm/z80/features.h: added empty _AUTOMEM
1651           and _STATMEM
1652         * device/include/asm/ds390/features.h,
1653         * device/include/asm/mcs51/features.h: added files with defines for
1654           _AUTOMEM and _STATMEM indicating automatic and static storage class
1655         * device/lib/printf_large.c (_print_format): optimized & used _AUTOMEM
1656         * doc/sdccman.lyx: version 2.4.7, updated xstack documentation
1657         * src/SDCCicode.c (geniCodeCast),
1658         * src/SDCCsymt.c (compareType): allow cast of data-ptr to idata-ptr
1659         * src/SDCCloop.c (loopInduction): removed unused variable lr
1660         * src/SDCCopt.c (convilong, convertToFcall): moved "easy special case"
1661           to convertToFcall to include char modulo (RFE 1065037), added check
1662           if left operand is unsigned and use abs of literal value
1663         * src/SDCCpeeph.c (setFromConditionArgs): removed double quotes option
1664           as it doesn't work after conversion from peephole.def to peephole.rul
1665         * src/mcs51/gen.c (toBoolean): added check for size,
1666           (genModOneByte): optimized code for signed char modulo a literal
1667           power of 2 (thanks to Hubert Sack),
1668           (genRRC): removed unnecessary "clr c",
1669           (genRLC): replaced "add a,acc" with cheaper "rlc a"
1670         * src/mcs51/peeph.def: renamed 115 to 115.a, added rule 115.b: another
1671           jump optimization,
1672           swapped rules 256.c and 256.d,
1673           extended 256.d by using new multiple checks (thanks Erik),
1674           added rules 256.e and 256.f,
1675           updated rule 261.a and 261.b to new generated code
1676         * support/regression/tests/muldiv.c: added test div/mod by a power of 2
1677
1678 2004-12-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1679
1680         * src/SDCCloop.c (basicInduction, loopInduction): fixed several
1681           induction related bugs, including first part of bug #1074377
1682
1683 2004-12-05 Vangelis Rokas <vrokas AT otenet.gr>
1684
1685         * applied patch from bug-report #1076292,
1686         * applied patches for genAnd and Goto-optimizations for Raphael
1687         Neider,
1688         * src/SDCCicode.c (printOperand): fixed !REGA source to compile and
1689         dump a less iCode information,
1690         * src/pic16/device.h (pic16_options_t): added field debgen,
1691         * src/pic16/gen.h: added macros DUMP_FUNCTION_ENTRY,
1692         DUMP_FUNCTION_EXIT, FENTRY, FENTRY2,
1693         * src/pic16/gen.c (my_powof2): renamed to pic16_my_powof2 and made
1694         puclic,
1695         * (various functions): added macros FENTRY and FENTRY2 to functions,
1696         to emit function prologue,
1697         * (various functions): fixed indentation,
1698         * (genNearPointerGet): fixed loading of FSR0,
1699         * (genPackBits): applied patch from Raphael Neider to fix updating
1700         of FSR0 and touching only the modified bits,
1701         * src/pic16/genarith.c (various functions): added macros FENTRY to
1702         emit function prologue in comments,
1703         * src/pic16/pcode.h: added functions debugf2, debugf3,
1704         * src/pic16/ralloc.c: partial fix for packForPush caused
1705         segmentation fault,
1706
1707 2004-12-04 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1708
1709         * src/mcs51/peeph.def: added 261.a,b (16 bit rotate) by Stas Sergeev
1710           <stsp AT users.sourceforge.net> with reversed byte order
1711         * support/regression/tests/rotate.c: added (ds390 skips some tests)
1712
1713 2004-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1714
1715         * src/z80/gen.c (genLeftShift, genRightShift): fixed second part of
1716           bug #1074377
1717         * src/hc08/gen.c (genrshFour, shiftRLong, shiftLLong),
1718         * src/mcs51/gen.c (shiftLLong): Fixed some shifting bugs Frieder found
1719
1720 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1721
1722         * src/pic/pcode.c : fixed a problem where banksel was not being inserted.
1723
1724 2004-12-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1725
1726         * src/SDCCpeeph.c (callFuncByName): support combined peephole rule
1727           conditions,
1728           (setFromConditionArgs): friendly operand parser for peephole rules,
1729           (operandBaseName, operandsNotRelated): new peephole condition
1730           "operandsNotRelated" -- similar to "operandsNotSame", but takes
1731           architecture specific register naming into account, handles n-way
1732           comparisons, and supports quoted literals
1733         * src/mcs51/peeph.def: restored rule 177.d with an extra condition
1734
1735 2004-12-02 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1736
1737         * src/mcs51/peeph.def: fixed bug #1076940
1738
1739 2004-12-02 Slade Rich <slade_rich AT users.sourceforge.net>
1740
1741         * device/include/pic/pic16f877.h : added an include file for the PIC16F877 device.
1742
1743 2004-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1744
1745         Adding support for replacing ljmps with sjmps in jumptables
1746         generated for switch statements. For now you need to set the
1747         environment variable SDCC_SJMP_JUMPTABLE to enable this.
1748         Now 4 algorithms for mcs51 jumptable generation are used:
1749         ljmp or sjmp jumptables for up to 16 cases, stack-pushing target
1750         addresses loaded pc-relative for up to 112 cases and stack-pushing
1751         target addresses loaded with offset from dptr for up to 256 cases.
1752
1753         * src/SDCCpeeph.c: added peephole conditional labelJTInRange
1754         * src/mcs51/main.c: adapted constants for switch table generation
1755         * src/mcs51/peeph.def: added 260.x for replacing ljmp with sjmp
1756
1757 2004-11-26 Maarten Brock <sourceforge.brock AT dse.nl>
1758
1759         * device/lib/printf_large.c (_print_format): fixed bug 1073386
1760         * support/regression/tests/bug1057979.c: added test for bug 1073386
1761
1762 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1763
1764         * src/pic16/pcode.c: fixed bug which may produce error in non-GNU
1765         compilers
1766
1767 2004-11-25 Vangelis Rokas <vrokas AT otenet.gr>
1768
1769         * src/pic16/device.h,
1770         * src/pic16/genarith.c,
1771         * src/pic16/glue.c,
1772         * src/pic16/main.c,
1773         * src/pic16/pcode.c: applied patches #1068154 and #1070213
1774
1775 2004-11-24 Vangelis Rokas <vrokas AT otenet.gr>
1776
1777         Large cummulative patch for pic16 port.
1778         * device/lib/pic16/gstack.h: NEW, user can specify its own handler
1779         to call when a stack overflow occurs,
1780         * (malloc.h): added CVS Id tag,
1781         * (pic18f{242,252,442,452}.h): added T0CONbits structure and
1782         variable,
1783         * added libc directory. The current version of LibC contains string
1784         functions, ctype functions and macros and some functions of the
1785         stdlib set (like malloc/free/atof/atoi etc...). All functions are to
1786         be extensively tested in the future. Standard disclaimer here.
1787         Library is not automatically build yet. But one can build it by
1788         invoking 'make' inside the libc directory.
1789         * added ADC library under libio. Preliminary version yet.
1790
1791         * src/pic16/gen.h: added emitTOGC macro, to toggle Carry flag,
1792         * src/pic16/gen.c (aopForRemat): asmop size is filled by
1793         aopForRemat() now and not by pic16_aopOp(),
1794         * (pic16_popGetTempReg): removed warning messgae when allocating
1795         temporary registers, its a buggy feature and will be removed,
1796         * (pic16_popGet): set register instance field in AOP_CRY,
1797         * (pic16_outBitC): fixed for results in size greater than 1,
1798         * (genUminusFloat): fixed for pic16, ported code from mcs51,
1799         * (pic16_storeForReturn): optimized return of 0,
1800         * (genCmp): experimental code for new genCmp which uses PIC18's
1801         special compare&skip instructions. Initial tests fail some times
1802         with variables grater than 1 byte in size, so new code is disabled,
1803         * (genUnpackBits, genPackBits): more optimizations in reading/writing,
1804         a single bit,
1805         * (genCast): began a fix to optimize the casting of a bit to another
1806         bit, now assigning a bitfield to another bitfield will fail, sorry,
1807         * src/pic16/main.c: disabled the use of lr-support feature,
1808         * src/pic16/pcode.h: renamed PCASMDIR to PCAD,
1809         * added some function prototypes, added function _debugf prototype,
1810         * src/pic16/pcode.c: (pic16_get_op): fixed emitting operands of register
1811         bits with offset (case PO_GPR_BIT),
1812         * (genericPrint): don't emit INFO pcode when --pcode-verbose not in
1813         command line,
1814         * (isBankInstruction): modified to return 0 for no banking instruction,
1815         and 1 for banking instruction,
1816         * (pic16_isPCinFlow): check for PCAD (assembler directives) too,
1817         caused stop processing pCodes after a inline assembly block,
1818         * (pic16_popCopyGPR2Bit): updated to match bitfields with offset,
1819         * src/pic16/pcoderegs.c: fixed a bug with eliminating some temporary
1820         registers when it shouldn't,
1821         * src/pic16/ralloc.c (allocReg): add preliminary support for
1822         supporting a limited set of temporary registers,
1823
1824 2004-11-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1825
1826         * src/hc08/gen.c (genAssign, genPointerGetSetOfs, genDataPointerGet,
1827           genDataPointerSet): ensure assignments always copy in MSB to LSB
1828           order,
1829           (loadRegFromAop): recognize CLRH optimization,
1830           (genFunction): optimize RECEIVE iCodes in reentrant functions
1831
1832 2004-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1833
1834         * src/SDCCmain.c (parseCmdLine, optionsTable[]): fixed bug with
1835           --out-fmt-s19 turning into --out-fmt-elf if s19 was already
1836           selected.
1837         * src/SDCCmain.c (linkEdit): don't define SSEG for HC08
1838         * src/hc08/main.c (_hc08_setDefaultOptions): default xdata to be
1839           contiguous with data
1840
1841 2004-11-19 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
1842
1843         * device/lib/_gptrget.c (_gptrget),
1844         * device/lib/_gptrgetc.c (_gptrgetc),
1845         * device/lib/_gptrput.c (_gptrput): _naked allows to use ret
1846           instead of sjmp to ret
1847         * src/mcs51/peeph.def: added peepholes 3.d-g and 177.g,h provided
1848           by Hubert Sack <hsack2002 AT arcor.de> in RFE #1067986, thanks
1849
1850 2004-11-18 Maarten Brock <sourceforge.brock AT dse.nl>
1851
1852         * .version: bumped version to 2.4.7
1853         * device/lib/_gptrget.c (_gptrget): is now _naked
1854         * device/lib/_gptrgetc.c (_gptrgetc): is now _naked
1855         * device/lib/_gptrput.c (_gptrput): is now _naked
1856         * src/SDCCast.c (createBlock): removed ridiculous self-assignment,
1857           (createFunction): fixed xstack
1858         * src/SDCCglue.c (emitMaps): set allocation required for bit area
1859         * src/SDCCicode.c (geniCodeCast): don't change SPEC_OCLS for literal
1860           or bit either,
1861           (geniCodeCritical): store original interrupt state in an iTemp bit
1862           var unless stack-auto
1863         * src/SDCCicode.h: added CRITICAL and ENDCRITICAL to SKIP_IC2
1864         * src/SDCCmain.c (setIncludePath): added include/target to search path
1865         * src/SDCCmem.c (allocParms): store bit vars in bit space, not overlay
1866         * src/SDCCsymt.c (checkFunction): don't check regbank for isr's against
1867           prototype,
1868           (processFuncArgs): put bit vars in bit area
1869         * src/mcs51/gen.c (saveRegisters, unsaveRegisters, genXpush, saveRBank,
1870           unsaveRBank): fixed xstack,
1871           (genFunction): bugfix: replaced (global!) reentrant with fReentrant,
1872           (genFunction, genEndFunction): fixed xstack,
1873           (genAssign): optimization don't walk backwards through mem
1874         * src/mcs51/main.c (_mcs51_regparm): don't pass bit params in registers
1875         * src/mcs51/ralloc.c (createStackSpil): spill bits to bit area
1876         * support/regression/Makefile: also make library (for stack-auto) when
1877           making "all" and added "test-mcs51-xstack-auto"
1878         * support/regression/fwk/lib/testfwk.c: added T2_isr prototype for mcs51
1879         * support/regression/ports/mcs51/T2_isr.c: added this file as a stub
1880         * support/regression/ports/mcs51/fwk.lib: added to link T2_isr stub
1881         * support/regression/ports/mcs51/spec.mk: added rules for fwk.lib
1882         * support/regression/ports/mcs51-stack-auto/spec.mk: replaced
1883           make-library by MAKE_LIBRARY
1884         * support/regression/ports/mcs51-xstack-auto/spec.mk: file added to run
1885           regression tests for xstack
1886         * support/regression/tests/bitvars.c: test for bit vars (bug 938782)
1887         * support/regression/tests/critical.c: test for critical on mcs51
1888
1889 2004-11-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1890
1891         * support/regression/ports/ucz80/spec.mk: use include and lib files from
1892           built version of sdcc instead of installed version
1893
1894 2004-11-14 Maarten Brock <sourceforge.brock AT dse.nl>
1895
1896         * src/mcs51/gen.c (toBoolean): fixed bug 1065458
1897         * device/lib/Makefile.in: z80 uses printf_large.c, sprintf.c and
1898           vprintf.c now
1899         * device/lib/printf_large.c (calculate_digit): fixed bug 1057979
1900         * device/lib/z80/Makefile: don't use printf.c as it fails bug 1057979
1901           WARNING: remove device/lib/build/z80/printf.o by hand when
1902           updating from previous build!
1903         * device/lib/z80/printf.c: updated comment
1904         * support/regression/tests/bug1057979.c: test all ports now
1905         * support/regression/tests/bug1065458.c: file added
1906
1907 2004-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
1908
1909         * src/z80/gen.c (genFunction, genEndFunction): avoided generating
1910           *_start and *_end symbols for static functions
1911
1912 2004-11-11 Maarten Brock <sourceforge.brock AT dse.nl>
1913
1914         * src/SDCCmain.c (linkEdit): don't suppress crt0 if --nostdlib is used
1915           and search crt0.o in all library paths,
1916           (setIncludePath): proper handling of --nostdinc,
1917           (setLibPath): proper handling of --nostdlib
1918         * support/regression/Makefile,
1919         * support/regression/ports/ds390/spec.mk,
1920         * support/regression/ports/gbz80/spec.mk,
1921         * support/regression/ports/hc08/spec.mk,
1922         * support/regression/ports/mcs51/spec.mk,
1923         * support/regression/ports/mcs51-large/spec.mk,
1924         * support/regression/ports/mcs51-stack-auto/spec.mk,
1925         * support/regression/ports/z80/spec.mk: use include and lib files from
1926           built version of sdcc instead of installed version
1927         * doc/sdccman.lyx: fixed typo in --nostdinc
1928
1929 2004-11-10 Slade Rich <slade_rich AT users.sourceforge.net>
1930
1931         * src/pic/pcode.c,
1932         * src/pic/device.c,
1933         * src/pic/ralloc.c,
1934         * src/pic/gen.c : added support to generate code for struct bit fields.
1935
1936 2004-11-06 Maarten Brock <sourceforge.brock AT dse.nl>
1937
1938         * as/xa51/xa_version.h,
1939         * device/include/errno.h,
1940         * device/include/regc515c.h,
1941         * device/lib/_itoa.c,
1942         * device/lib/_ltoa.c,
1943         * device/lib/ser_ir_cts_rts.c,
1944         * sim/ucsim/xa.src/glob.cc,
1945         * sim/ucsim/xa.src/inst_gen.cc,
1946         * sim/ucsim/xa.src/xa_bit.cc,
1947         * sim/ucsim/xa.src/xa_sfr.cc,
1948         * sim/ucsim/z80.src/inst_dd.cc,
1949         * sim/ucsim/z80.src/inst_fdcb.cc,
1950         * support/scripts/keil2sdcc.pl,
1951         * src/pic16/pic16.dsp,
1952         * src/pic16/pic16a.dsp: corrected cvs line endings
1953         * device/lib/printf_large.c: fixed bug 1057979
1954         * src/pic16/gen.c: fixed non-C standard code
1955         * src/SDCCmain.c: made --pack-iram default, added --no-pack-iram
1956         * src/SDCCglobl.h: changed pack_iram to no_pack_iram
1957         * support/regression/ports/mcs51/support.c: reload T1 asap
1958         * doc/sdccman.lyx: updated for options --pack-iram and --no-pack-iram,
1959           pdata use and clear idata startup behaviour
1960         * support/regression/tests/bug1057979.c: added
1961
1962 2004-11-04 Maarten Brock <sourceforge.brock AT dse.nl>
1963
1964         * device/examples/ds390/ow390/ad26.h,
1965         * device/examples/ds390/ow390/cnt1d.h,
1966         * device/examples/ds390/ow390/crcutil.c,
1967         * device/examples/ds390/ow390/ownet.h,
1968         * device/examples/ds390/ow390/owsesu.c,
1969         * device/examples/ds390/ow390/swt12.h,
1970         * device/examples/ds390/ow390/swtoper.c,
1971         * device/examples/ds390/ow390/temp10.h,
1972         * device/examples/ds390/ow390/thermodl.c,
1973         * device/examples/ds390/tinitalk/tinitalk.dsp,
1974         * device/examples/ds390/tinitalk/tinitalk.dsw,
1975         * device/examples/mcs51/clock/hw.h,
1976         * device/examples/mcs51/simple2/go.bat,
1977         * device/examples/serialcomm/windows/serial.h,
1978         * device/examples/xa51/dummy.c,
1979         * device/examples/xa51/hello.c,
1980         * device/include/80c51xa.h,
1981         * device/include/at89x051.h: corrected cvs line endings
1982
1983 2004-11-04 Vangelis Rokas <vrokas AT otenet.gr>
1984
1985         * src/pic16/main.c (options): added command line --gstack, to trace
1986         stack over/under flows,
1987         * added pragma 'wparam' to allow passing first byte of function
1988         parameters via WREG, syntax is #pragma wparam my_function[, func2...]
1989         * src/pic16/gen.c (pic16_testStackOverflow): function which emits a
1990         call to __gstack_test function and sets up the symbol as extern,
1991         * (pic16_pushpCodeOp, pic16_poppCodeOp, pushw, pushaop, popaopidx,
1992         * popaop): added call to pic16_testStackOverflow,
1993         * (wParamCmp, inWparamList): NEW, test existence of a symbol in
1994         wparamList list,
1995         * (genCall, genPcall): now all parameters are passed via stack
1996         except in functions that are pass to wparam pragma in which WREG is
1997         used too,
1998         * (genPcall): REENTRANT flag is checked to see if variable prototype
1999         contains reentrant keyword, don't call a non-reentrant function, via
2000         a reentrant function pointer or vice versa, functions are never
2001         passed via WREG,
2002         * (genJumpTab): applied patch from bug #1057478 by R.Neider and
2003         D.Winkler,
2004         * src/pic16/glue.c (pic16emitRegularMap): fixed bug which caused a
2005         SIGSEGV when accessing a NULL register stucture,
2006         * (pic16_printGPointerType): modified to handle UPPER modifier for
2007         function initializers, changed prototype of function to simpler one,
2008         * (pic16_printIvalFuncPtr): check to see if function is already
2009         added in externs list,
2010         * src/pic16/pcoderegs.c (pCodeOptime2pCodes): fixed bug which
2011         optimized a move from W to SFR with a move to the same register
2012         later after a CALL,
2013         * device/lib/pic16/debug: NEW directory, contains debug features
2014         which are enabled when linking with libdebug.lib, currently command
2015         line option --gstack enables stack pointer tracing for over/under
2016         flow, corresponding sources are in debug/gstack
2017
2018 2004-10-30 Vangelis Rokas <vrokas AT otenet.gr>
2019
2020         * doc/sdccman.lyx: updated SDCC version,
2021         * (PIC16 port): update list of command line options,
2022         * src/pic16/device.h (structure pic16_options_t): added field gstack
2023         to enable stack overflow tracing on push/pops,
2024         * src/pic16/device.c (statistics structure): added statistics
2025         structure,
2026         * (pic16_dump_access, pic16_dump_usection, pic16_dump_gsection,
2027         pic16_dump_int_registers): increase statistics counters for each
2028         * variable which is encountered
2029         * (pic16_dump_usection): emit each .udata variable to its own udata
2030         section,
2031         * src/pic16/gen.c (assignResultValue, genCall, genPcall, genFunction):
2032         when macro USE_WREG_IN_FUNC_PARAMS is set to 0 pass all function
2033         parameters via stack, otherwise use old scheme,
2034         * src/pic16/glue.c (pic16_emitStatistics): dump statistics in
2035         assembler output file,
2036         * src/pic16/main.c: added command line options --gstack to enable
2037         push/pop tracing for stack overflow,
2038         * src/pic16/pcode.c (all pCodeInstruction records for PIC18F
2039         instructions): added size of each instruction,
2040         * (pic16_countInstruction): estimate size of instructions in
2041         the_pFile list, inline assembly blocks are not counted,
2042         * (pic16_FixRegisterBanking): trace previous register usage, when
2043         banksel optimizations is greater than 0, don't emit a redudant
2044         banksel directive,
2045
2046 2004-10-26 Slade Rich <slade_rich AT users.sourceforge.net>
2047
2048         * src/pic/ralloc.c : fixed inefficient code produced when compiling a complimented bit operation.
2049         * src/pic16/ralloc.c : applied same fix for pic16.
2050         * src/pic/gen.c : tidied it up a little.
2051
2052 2004-10-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2053
2054         * src/mcs51/peeph.def: disabled 259.a,b for removing redundant ret,
2055         thanks to Martin Helmling for reporting (mail on sdcc-devel 2004-10-25)
2056
2057 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2058
2059         * src/SDCCast.c (reverseParms): fixed bug #1040577 (part 2)
2060
2061 2004-10-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2062
2063         * device/lib/ser_ir_cts_rts.c: integer promotion caused a call to the
2064         non-reentrant function __modsint in the interrupt function (thus
2065         corrupting math operations during serial I/O)
2066         * device/lib/ser_ir.c: as above, changed buffersize
2067         * src/mcs51/peeph.def: added 259.a,b for removing redundant ret,
2068         256.c,d for zeroing
2069         * doc/Makefile: added option -t for rsync
2070
2071 2004-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2072
2073         * src/SDCCast.h (struct ast),
2074         * src/SDCCast.c (reverseParms, copyAst): fixed bug #1040577 (part 1)
2075
2076 2004-10-20 Borut Razem <borut.razem AT siol.net>
2077
2078         * support/scripts/sdcc.nsi: added include/pic16/*.h to the setup
2079         package
2080
2081 2004-10-20 Vangelis Rokas <vrokas AT otenet.gr>
2082
2083         * device/lib/pic16/libsdcc/Makefile: added lregs directory in
2084         makefile targets,
2085         * device/lib/pic16/libsdcc/lregs/{Makefile,lrst.c,lrrest.c}: NEW
2086         support functions to replace long sequences of MOVFF's from access
2087         bank registers to stack and vice versa,
2088         * src/pic16/device.h: added new field opt_flags, where optimization
2089         flags can be set to enable certain features,
2090         * src/pic16/gen.c (pic16_emitpinfo): NEW to add PC_INFO pCode in
2091         * pBlock, (genFunction, genEndFunction): surroung loop for
2092         saving/loading used registers in stack with PC_INFO pCodes,
2093         INF_LREGS. Code in between can then be optimized by pCode optimizer
2094         to support function calls,
2095         * (genDataPointerSet): fixed bug which loaded float fields in
2096         structures with corrupt data,
2097         * src/pic16/genutils.c (debugf, _debugf): macro/function which emits
2098         in a standard way debug info on stderr. Feature used for developing
2099         and debugging only,
2100         * src/pic16/glue.c (pic16glue): reformatted, deleted some old and
2101         obsolete chunks of code,
2102         * if optimization flag OF_LR_SUPPORT was set, call pic16_OptimizeLocalRegs,
2103         * src/pic16/main.c (_pic16_parseOptions): added handler for --flr-support,
2104         * pic16/src/pcode.c (pic16_newpCodeInfo,
2105         * (pic16_newpCodeOpLocalRegs),
2106         * (pic16_convertLocalRegs2Support): NEW, to support new optimization
2107         feature,
2108         * (pic16_pCodeConstString): printing of the initial value of a
2109         symbol as a comment is inhibited since parsing was already done by
2110         copyStr and output is corrupt,
2111         * (pic16_pCode2str, genericPrint): handle PC_INFO pCode,
2112
2113 2004-10-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2114
2115         * src/mcs51/ralloc.c (packRegisters): fixed bug #1044601
2116
2117 2004-10-19 Maarten Brock <sourceforge.brock AT dse.nl>
2118
2119         * as/mcs51/lkarea.c: removed old K&R style,
2120           (lnksect): changed check on boundary error,
2121           (lnksect2): changed check on boundary error,
2122           (lnksect2): extend XSTK to end of page if size = 1
2123         * as/mcs51/lkmain.c: removed old K&R style,
2124           (Areas51): create l_IRAM symbol
2125         * as/mcs51/lkmem.c (summary2): added report on PSEG and XSTK
2126         * device/lib/Makefile.in: renamed model-mcs51-reentrant to
2127           model-mcs51-stack-auto, added model-mcs51-xstack-auto
2128         * device/lib/_mullong.c: added version to be compiled with xstack
2129         * device/lib/mcs51/crtclear.asm: clear only upto --iram-size
2130         * device/lib/mcs51/crtxclear.asm: clear pdata as well
2131         * device/lib/mcs51/crtxstack.asm: fixed comment
2132         * src/SDCCglue.c: maxInterrupts defaults to 0,
2133           (emitMaps): added pdata,
2134           (createInterruptVect): (re)moved default,
2135           (glue): added pdata,
2136           (glue): moved __start__xstack to XSTK with default size 1
2137         * src/SDCCmain.c (parseCmdLine): automatically set options.intlong_rent
2138           and options.float_rent when options.stackAuto is set,
2139           (linkEdit): only write XDATA_NAME if provided on command line
2140         * src/SDCCmem.h,
2141         * src/SDCCmem.c: added pdata
2142         * src/port.h: added pdata_name to PORT
2143         * src/mcs51/gen.c (toBoolean): fixed for Acc use of aopGet,
2144           (saveRegisters, unsaveRegisters): removed usage of B,
2145           (genMinus): fixed accumulator clash,
2146           (genJumpTab): added comment, this needs another look
2147         * src/mcs51/gen.c: added check for "B in use" paranoia,
2148           added pushB() and popB()
2149         * src/mcs51/peeph.def: restart after 177.c so 177.a can get a second
2150           chance
2151         * src/avr/main.c,
2152         * src/ds390/main.c,
2153         * src/hc08/main.c,
2154         * src/mcs51/main.c,
2155         * src/pic/main.c,
2156         * src/pic16/main.c,
2157         * src/xa51/main.c,
2158         * src/z80/main.c: (reset_regparms) made void parameter explicit and
2159           added PSEG (PAG,XDATA) or NULL to port specifier
2160         * src/ds390/main.c (_ds390_genIVT): moved implemented default in here
2161         * src/mcs51/main.c (_mcs51_genIVT): moved implemented default in here,
2162           (_mcs51_genInitStartup): removed __start__xstack equ,
2163           (mcs51_port): moved xstack from XSEG (XDATA) to XSTK (PAG,XDATA)
2164         * src/pic16/device.c (pic16_dump_usection, pic16_dump_isection),
2165         * src/z80/gen.c (_rleAppend): fixed warnings
2166         * support/regression/tests/zeropad.c: added pdata test
2167         * .version: bumped to 2.4.6
2168
2169 2004-10-17 Borut Razem <borut.razem AT siol.net>
2170
2171         * support/scripts/sdcc.nsi: cross compiling of WIN32 setup.exe on Linux
2172         as a part of nightly build
2173
2174 2004-10-16 Vangelis Rokas <vrokas AT otenet.gr>
2175
2176         * src/pic16/gen.c (struct _G): added field useWreg, is set to 1 when
2177         WREG holds the first byte function parameters,
2178         * (aopForSym): take special case for symbols which are in FARSPACE
2179         but in CODESPACE too,
2180         * (assignResultValue): modified to take into account _G.useWreg,
2181         * (genCall): don't use wreg for parameter passing when function is
2182         declared as reentrant, too, added optimization INCF to stack
2183         pointer when stack parameter count is 1,
2184         * (genFunction, genEndFunction): refurnished and fixed to not using
2185         wreg for passing parameters when function has varargs or is
2186         reentrant, fixed bug with symbol name compare for generating
2187         functions in absolute address,
2188         * (pic16_storeForReturn): refurnished,
2189         * (genCmp): began writing a new version of the function, not ready
2190         yet, therefore it is disabled,
2191         * (genAssign): do not read code memory when assigning a function to
2192         a pointer function,
2193         * src/pic16/glue.c (pic16emitStaticSeg): abSym->name is defined an
2194         array of characters, not pointer,
2195         * (pic16initialComments): in debug mode emit an .ident directive for
2196         the assembler,
2197         * (_process_pragma): emit a new warning type (internal to pic16)
2198         when setting stack to default length, emit a similar warning when
2199         placing a function at absolute address and address is not word aligned
2200         * (_pic16_parseOptions): added 'return TRUE' statement,
2201         * (_pic16_linkEdit): if compiling a source, then add the source's
2202         file object, first in the list of objects to link,
2203
2204 2004-10-13 Slade Rich <slade_rich AT users.sourceforge.net>
2205
2206         * src/pic/pcoderegs.c : increased count on regUsedinRange to prevent unnecessary warning.
2207         * src/pic/main.c : removed VC warning.
2208         * src/pic/gen.c : changed comment.
2209
2210 2004-10-12 Vangelis Rokas <vrokas AT otenet.gr>
2211
2212         * device/lib/pic16/libsdcc/gptr/gptrput[234].c: an external
2213         reference to a deprecated symbol _GPTRREG was causing failure to
2214         link. Thanks G. M. Gallant for the info.
2215
2216 2004-10-12 Slade Rich <slade_rich AT users.sourceforge.net>
2217
2218         * src/pic/pcode.c : Applied a code patch supplied by Paul Ashmore in
2219         comments for Bugs item #954788.
2220
2221 2004-10-10 Vangelis Rokas <vrokas AT otenet.gr>
2222
2223         * src/pic16/device.c (pic16_dump_gsection,
2224         * pic16_groupRegistersInSection): handle symbols declared to be in
2225         access bank differently,
2226         * src/pic16/gen.c (struct _G): added field resDirect,
2227         * (aopForSym): if symbol on stack and iCode is '=' and result exists,
2228         send values read from stack directly to result and don't allocate
2229         temporary values,
2230         * (pic16_sameRegs): fixed bug that allowed MOVFF to move between
2231         same registers,
2232         * (pic16_sameRegsOfs): NEW,
2233         * (freeAsmop): if _G.resDirect is set then do not mark registers as
2234         free because they were not allocated from temporary pool,
2235         * pic16_popRegFromString): workaround to fix a problem with
2236         allocating variables twice or never,
2237         * (genGenPointerGet): using PRODL instead of FSR0H,
2238         * (genGenPointerSet): using POSTDEC1 (that is a stack location)
2239         instead of FSR0H,
2240         * (genAssign): take advantage of the _G.resDirect flag,
2241         * (genCast): around line 11844, use mov2f instead of directly
2242         MOVFF'ing between operands to account for literal values,
2243         * src/pic16/genutils.c: some new debug functions for gpsim have been
2244         added,
2245         * src/pic16/glue.c (pic16_printIvalType): fixed bug that initialized
2246         float with integer part only,
2247         * src/pic16/main.c (_process_pragma): handle pragma udata access to
2248         place variables in access bank
2249         * device/lib/pic16/libsdcc/gptr/gptr*.c: using BRA instead of GOTO,
2250         updated sources to reflect recent changes in gen.c
2251
2252 2004-10-06 Vangelis Rokas <vrokas AT otenet.gr>
2253
2254         * device/lib/pic16/libsdcc/Makefile.rules: fixed bug concerning
2255         sources that searched for headers in installation path, now the
2256         device/include/pic16 is used,
2257         * src/pic16/glue.c (pic16glue),
2258         * src/pic16/pcode.c (pCode2str, genericPrint): don't print .file or
2259         .line directives if not in debug mode, this suppresses assembler's
2260         warnings for ignored directives
2261
2262 2004-10-05 Maarten Brock <sourceforge.brock AT dse.nl>
2263
2264         * src/port.h: made reset_regparms prototype void parameter explicit.
2265         * src/SDCCsymt.c (processFuncArgs): removed argument "func".
2266         * src/mcs51/ralloc.c (packRegisters): new fix for bugs 898889 & 979599.
2267         * doc/sdccman.lyx: documented warning disabling and how to use
2268           printf_large to make it print floats.
2269         * device/include/stdbool.h: NEW
2270         * device/lib/_atof.c,
2271         * device/lib/_divuint.c,
2272         * device/lib/_divulong.c,
2273         * device/lib/expf.c,
2274         * device/lib/printf_large.c,
2275         * device/lib/sincosf.c,
2276         * device/lib/sincoshf.c: used stdbool.h, all compile with stack-auto now
2277         * device/lib/Makefile.in: added target for model-mcs51-reentrant to build
2278           a completely reentrant lib.
2279
2280 2004-10-05 Vangelis Rokas <vrokas AT otenet.gr>
2281
2282         * device/lib/pic16/libsdcc/gptr/gptr*.c: added return statements
2283         * device/include/pic16/stdio.h: fixed bug with colon
2284
2285 2004-10-03 Vangelis Rokas <vrokas AT otenet.gr>
2286
2287         * device/include/pic16/stdio.h,
2288         * device/include/pic16/stdlib.h,
2289         * device/include/pic16/math.h: NEW
2290         * device/lib/pic16/libsdcc/gptr/*.c (gptrget*, gptrput*): functions
2291         declared as _naked to reduce overhead
2292         * device/lib/Makefile.in (target port-specific-objects-pic16):
2293         changed * to *.* so to ignore the CVS directory,
2294         * src/pic16/gen.c (pic16_freeAsmop): added code to store result of
2295         stacked variables back in stack,
2296         * (genEndFunction): fixed bug reported by G.M. Gallant with stack
2297         corruption
2298
2299 2004-10-01 Vangelis Rokas <vrokas AT otenet.gr>
2300
2301         * .version: bumped version number to 2.4.5
2302         * support/Util/SDCCerr.h: added warning W_POSSBUG2.
2303         * support/Util/SDCCerr.c (messages structure): added entry for
2304         W_POSSBUG2
2305
2306         Large cumulative patch for pic16 port and libraries.
2307         * device/include/pic16/sdcc-lib.h,
2308         * device/include/pic16/stdarg.h,
2309         * device/include/asm/pic16/features.h,
2310         * device/include/lib/pic16/libsdcc/gptr/{*.c, Makefile}: NEW,
2311         * device/include/pic16/float.h: changes reentrant keyword with
2312         _FS_REENTRANT, added prototype for __fsneq, included sdcc-lib.h
2313         * device/lib/pic16/libsdcc/Makefile: added target directory gptr,
2314         updated target build-libraries to include objects from gptr,
2315         * device/lib/pic16/libsdcc/{char,int,long}/*.c: added macro
2316         _IL_REENTRANT to all function headings, included sdcc-lib.h header,
2317         * device/lib/pic16/libsdcc/float/*.c: added macro _FS_REENTRANT to
2318         all function headings,
2319         * src/SDCCmain.c: added global parameter userIncDirsSet,
2320         * (parseCmdLine): when option -I is encountered add directory to
2321         userIncDirsSet too,
2322         * src/version.awk: added space between control and long,
2323         * src/pic16/NOTES: added some notes for the port,
2324         * src/pic16/gen.c: added prototype for mov2fp function,
2325         * (fReturnpic16[]): properly named return value registers,
2326         * (_G structure): added fields stackRegSet, fregsUsed, stack_lat,
2327         * (aopForSym): added code to handle symbols with onStack flag set,
2328         symbols onStack are allocated PTRSIZE bytes,
2329         * (aopFreeAsmop): handles special case where asmops are stack objects,
2330         * (aopGet, pic16_popGet): adde cod to handle new asmop AOP_STA,
2331         * (pic16_popGetTempReg, pic16_popGetTempRegCond, pic16_popReleaseTempReg):
2332         added argument lock to trace flaws in allocating temporary registers
2333         when developing port,
2334         * (pic16_popGetLit, pic16_popGetLit2): changed lit from unsigned to signed
2335         * (pic16_popRegFromString): reenabled allocating a direct register
2336         from string,
2337         * (assignResultValue): various beautifications,
2338         * fixed bug #1037717 (patch from R. Neider & D. Wrinkler) with mistaken
2339         referenced function argument,
2340         * (genIpush): reenabled to allow stacked arguments, handles only
2341         ic->parmPush iCodes,
2342         * (genCall, genPcall): major changes to allow for variable argument
2343         functions, fixed a bug with falsely restoring stack pointer after
2344         returning from call,
2345         * (genFunction): pending code for critical function,
2346         * (shiftR1Left2ResultSigned, shiftR1Left2Result, shiftL2Left2Result,
2347         * (shiftR2Left2Result, shiftLLong) applied patch #1032155 from R.Neider,
2348         * (genNearPointerGet): fixed bug with indirect reading, was always
2349         reading from INDF0
2350         * (genGenPointerGet, genGenPointerSet): rewrote to support generic
2351         pointers,
2352         * (genAddrOf): rewrote code to take address of a stacked function parameter
2353         * (genCast): fixed casting to generic pointer type,
2354         * src/pic16/gen.h: added AOP_STA,
2355         * (struct asmop): added field stk,
2356         * src/pic16/genarith.c (pic16_AopType): handle AOP_STA,
2357         * (pic16_genPlusIncr): changed emitSKPNZ to emitSKPNZ,
2358         * (pic16_genAddLit, pic16_genPlus): applied patch #1034042 by tecodev,
2359         * (pic16_genMinus): fixed bug #1035119 with patch submitted by tecodev,
2360         * src/pic16/genutils.c (pic16_genNot): removed symbol *tlbl,
2361         * src/pic16/glue.c (pic16_printGPPointerType): fixed to support new
2362         generic pointers,
2363         * src/pic16/main.c (_pic16_initPaths): ignores default SDCC include
2364         and library paths,
2365         * (pic16_port structure): generic pointer size is set to 3,
2366         * src/pic16/pcode.c (pic16_newpCodeOpLit): correctly print literal integer,
2367         * (insertBankSwitch): cast to (char *) to prevent 64bit CPUs'
2368         compiler warning,
2369         * src/pic16/ralloc.c (allocReg): prevent allocating register when
2370         operand is an iTemp,
2371
2372 2004-09-24 Martin Helmling <mh AT octo-soft.de>
2373
2374         * debugger/mcs51/cmd.c: set PC if a symbol at pc reg is set
2375         * debugger/mcs51/simi.c: addapt new syntax of s51
2376
2377 2004-09-23 Vangelis Rokas <vrokas AT otenet.gr>
2378
2379         * src/pic16/genutils.c (pic16_genNot): fixed bug #1032265,
2380         * src/pic16/pcode.c: commented out some calls to free() in order to
2381         fix bug #989576,
2382
2383 2004-09-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2384
2385         * src/SDCCicode.h,
2386         * src/SDCCicode.c (isiCodeInFunctionCall),
2387         * src/avr/ralloc.c (selectSpil),
2388         * src/pic/ralloc.c (selectSpil),
2389         * src/pic16/ralloc.c (selectSpil),
2390         * src/ds390/ralloc.c (selectSpil),
2391         * src/hc08/ralloc.c (selectSpil),
2392         * src/xa51/ralloc.c (selectSpil),
2393         * src/mcs51/ralloc.c (selectSpil): Don't use remainSpil to spill to the
2394         stack in the middle of a function call sequence (fixes bug #1020268)
2395         * src/SDCCicode.c (geniCodeJumpTable): fixed error in computing the
2396         costs associated with the minimum switch case.
2397
2398 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2399
2400         * src/SDCC.lex: fixed bug #1030549
2401
2402 2004-09-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2403
2404         * src/SDCCcse.h (struct cseDef),
2405         * src/SDCCcse.c (cseBBlock, newCseDef, ifFromAddrTaken): purge CSEs
2406         over a function call if the CSE is derived from a symbol whose
2407         address has been taken (fixes bug #1029883)
2408         * support/regression/tests/bug-1029883: a new regression test for
2409         this bug
2410
2411 2004-09-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2412
2413         * src/hc08/gen.c (emitinline): fixed bug #1029778
2414         * src/SDCC.y (assignment_expr): fixed the grammer so that assignment
2415         to a cast object is no longer a syntax error ("fixes" bug #1030006,
2416         and starts toward RFE #905167)
2417
2418 2004-09-17 Vangelis Rokas <vrokas AT otenet.gr>
2419
2420         * src/pic16/gen.c (mov2f): New function to move an operand to
2421         another without considering if it is a literal or a register,
2422         * (pic16_sameRegs): don't check if they are both AOP_REG,
2423         * (AccRsh): removed andmask=0 lines,
2424         * (genLeftShift): duplicated to be improved in future versions,
2425         * src/pic16/main.c (_process_pragma): emit stack default size in hex,
2426         * src/pic16/pcode.c: added POC_INFSNZW, updated inverted_op fields
2427         in POC_INCFSZ, POC_INCFSZW, POC_INFSNZ,
2428         * (pic16initMnemonics): added initialization for POC_INFSNZW,
2429         * (insertBankSwitch): fixed inserting banksel directives algorithm
2430         for instructions that follow a skip instruction, this fixes a report
2431         for broken subtraction code generation,
2432         * src/pic16/ralloc.c (deassignLRs): do not free register if current
2433         iCode is a left op, just in case result and right share the same
2434         registers
2435
2436 2004-09-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2437
2438         * src/hc08/main.c,
2439         * src/hc08/gen.c (genJumpTable): more efficient jump table, supports
2440         preservation of HX
2441         * src/hc08/gen.c (pullRegs): fixed order of HX & XA pairs
2442         * src/mcs51/ralloc.c (packRegisters): removed the patch applied
2443         on 2004-09-12; it was buggy
2444
2445 2004-09-15 Bernhard Held <bernhard AT bernhardheld.de>
2446
2447         * src/SDCCsymt.h: removed RESULT_CHECK
2448         * src/SDCCast.c,
2449         * src/SDCCglue.c,
2450         * src/SDCCval.c,
2451         * src/pic/glue.c,
2452         * src/pic16/glue.c: replaced RESULT_CHECK with RESULT_TYPE_NONE
2453
2454 2004-09-15 Vangelis Rokas <vrokas AT otenet.gr>
2455
2456         * src/SDCCicode.c (piCode): applied patch from Raphael Neider,
2457         * src/pic16/device.c (pic16_assignConfigWordValues): wrong
2458         configuration values no more rejected by compiler, they are assigned
2459         to configuration registers with a warning message instead,
2460         * src/pic16/glue.c (pic16_emitConfigRegs): added +1 at top-limit of
2461         the for-loop so last conf register is emitted too,
2462         * (_pic16_initPaths): link library libsdcc.lib by default,
2463         * (_hasNativeMulFor): modified test for multiplication according to
2464         Raphael Neider's remarks. Integer multiplication is also done with
2465         support functions,
2466         * device/include/pic16/pic18fregs.h: corrected type error in while
2467         testing and including 18f6720 header file
2468
2469 2004-09-14 Vangelis Rokas <vrokas AT otenet.gr>
2470
2471         * src/pic16/device.h (pic16_options): removed field use_crt,
2472         * src/pic16/gen.c (genUnpackBits): added call to pic16_loadFSR0
2473         until an optimization to handle single bits is added,
2474         * (pic16_loadFSR0): moved before genUnpackBits,
2475         * (genAnd): some white lines removed,
2476         * src/pic16/main.c (_pic16_finaliseOptions): set omit_ivt and clear
2477         leave_reset flags in pic16_options when using crt modules,
2478
2479 2004-09-12 Maarten Brock <sourceforge.brock AT dse.nl>
2480
2481         * src/mcs51/ralloc.c (packRegisters): applied fix by Bernhard Held
2482           for bugs 898889 & 979599. Also used some safer print instructions.
2483
2484 2004-09-12 Vangelis Rokas <vrokas AT otenet.gr>
2485
2486         * src/pic16/device.h (pic16_options_t): added field use_crt,
2487         crt_name, no_crt,
2488         * src/pic16/genarith.c (pic16_genPlus): added an assert(0) line to
2489         catch a probable future bug,
2490         * src/pic16/gen.c: aopIdx function commented out,
2491         * (genAssign): commented out old code which used aopIdx,
2492         * src/pic16/glue.c (pic16glue): removed some legacy fragments of
2493         code, added if conditionals to take into account the --use-crt
2494         command line options,
2495         * src/pic16/main.c (pic16_optionsTable): added new command line
2496         options, --use-crt= and --no-crt,
2497         * (_pic16_linkEdit): now the proper crt object is added in the
2498         linker command line except than when --no-crt is specified,
2499         * src/pic16/pcode.c,
2500         * src/pic16/pcode.h: added some structures and functions for a new
2501         optimization scheme to compansate for instruction overhead between
2502         same iCodes, this scheme is currently under development and is not
2503         working in any way,
2504         * src/pic16/gen.c (genAnd): added patch provided by Aaron Collwell
2505         to && operator,
2506         * device/lib/pic16/startup/crt0i.c,
2507         * device/lib/pic16/startup/crt0iz.c: added global char variable
2508         __uflags to force the generation of an idata section
2509
2510 2004-09-12 Bernhard Held <bernhard AT bernhardheld.de>
2511
2512         * doc/Makefile,
2513         * doc/clean.mk: added support for easy creation of sdcc-doc.tar.bz2
2514         * doc/sdccman.lyx: updated sdcc version to 2.4.4
2515
2516 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2517
2518         * doc/sdccman.lyx: fixed a problem with my new index entries (thanks
2519         Frieder) and clarified the default code optimization mode
2520
2521 2004-09-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2522
2523         * src/SDCC.lex (doPragma, process_pragma),
2524         * src/SDCCglobl.h (struct optimize): added pragmas "opt_code_speed",
2525         "opt_code_size", and "opt_code_balanced"
2526         * src/SDCCmain.c (optionsTable[], printOptions, scanOptionsTable):
2527         regrouped options by category, added support for category headers
2528         * src/SDCCmain.c (parseCmdLine): added options "--opt-code-speed"
2529         and "--opt-code-size"
2530         * doc/sdccman.lyx: documented these new options and pragmas
2531         * src/hc08/gen.c (AccLsh, AccRsh): take speed/size optimization
2532         preference into account
2533
2534 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2535
2536         * src/SDCCicode.c (geniCodePostInc, geniCodePreInc, geniCodePostDec,
2537           geniCodePreDec): Fixed bug 904237 by generating a warning
2538         * src/SDCCerr.h,
2539         * src/SDCCerr.c: added warning W_SIZEOF_VOID
2540
2541 2004-09-09 Slade Rich <slade_rich AT users.sourceforge.net>
2542
2543         * src/pic/device.c : When no max ram set validate full memory range.
2544         * src/pic/pcode.c,
2545         * src/pic/pcodepeep.c : Copy C code comments to optimised replacement code.
2546
2547 2004-09-08 Maarten Brock <sourceforge.brock AT dse.nl>
2548
2549         * device/lib/_gptrget.c,
2550         * device/lib/_gptrput.c: updated comment
2551         * device/lib/calloc.c,
2552         * device/lib/free.c,
2553         * device/lib/malloc.c,
2554         * device/lib/realloc.c: added LGPL, made them reentrant-safe
2555         * src/SDCCcse.c (cseBBlock),
2556         * src/SDCCicode.c (printOperand, geniCodeArray),
2557         * src/SDCCicode.h (struct operand): fixed bug 868103
2558         * support/regression/tests/bug-868103.c: added
2559         * src/SDCCast.c (searchLitOp),
2560         * src/SDCCcse.h (struct cseDef),
2561         * src/SDCCglue.c (printIvalArray, spacesToUnderscores),
2562         * src/SDCCicode.h (struct operand),
2563         * src/SDCCsymt.h (struct sym_link),
2564         * src/avr/gen.c (hasInc),
2565         * src/ds390/gen.c (hasInc),
2566         * src/hc08/gen.c (genPlusIncr, hasInc),
2567         * src/mcs51/gen.c (hasInc),
2568         * src/pic16/glue.c (pic16_printIvalChar),
2569         * src/pic16/ralloc.c (regWithIdx),
2570         * src/xa51/gen.c (hasInc) : removed warnings
2571         * src/SDCCast.c (createBlock): added comment ???
2572         * src/hc08/ralloc.c: updated comments
2573
2574 2004-09-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2575
2576         * doc/sdccman.lyx: updated section on switch statements, added
2577         section about semaphore locking
2578         * doc/Makefile: added option -info for latex2html
2579         * device/lib/_gptrget.c,
2580         * device/lib/_gptrput.c: __XPAGE instead of P2 in outcommented code
2581
2582 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2583
2584         * src/pic/device.h,
2585         * src/pic/device.c,
2586         * src/pic/port.c : Changed PIC14 code to not set bit RP1 when
2587          maxram is less than 0x100.
2588
2589 2004-09-06 Slade Rich <slade_rich AT users.sourceforge.net>
2590
2591         * Bug fixes for PIC14 - signed RSHIFT problem. Patch supplied by Allen(agschrum).
2592
2593 2004-09-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2594
2595         * src/port.h,
2596         * src/mcs51/main.c,
2597         * src/ds390/main.c,
2598         * src/z80/main.c,
2599         * src/hc08/main.c,
2600         * src/pic/main.c,
2601         * src/pic16/main.c,
2602         * src/avr/main.c,
2603         * src/xa51/main.c
2604         * src/SDCCicode.c (geniCodeJumpTable): Better logic to determine if a
2605         a jump table is the best form for a switch statement, including
2606         automatic insertion of missing cases to make the case range
2607         continuous. Developed in collaboration with Frieder Ferlemann.
2608
2609 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2610
2611         * src/hc08/ralloc.c (canDefAccResult): multi-byte shift is unsafe for
2612         accumulator result if it needs sign extension
2613
2614 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2615
2616         * src/hc08/ralloc.c (canUseAccOperand): fixed comparison bug
2617
2618 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2619
2620         * device/lib/gbz80/printf.c,
2621         * device/lib/z80/printf.c: removed define for NULL
2622
2623 2004-09-02 Maarten Brock <sourceforge.brock AT dse.nl>
2624
2625         * as/xa51/xa_link.c,
2626         * device/examples/ds390/ow390/ad26.c,
2627         * device/examples/ds390/ow390/cnt1d.c,
2628         * device/examples/ds390/ow390/counter.c,
2629         * device/examples/ds390/ow390/ds2480.h,
2630         * device/examples/ds390/ow390/ds2480ut.c,
2631         * device/examples/ds390/ow390/findtype.c,
2632         * device/examples/ds390/ow390/gethumd.c,
2633         * device/examples/ds390/ow390/owllu.c,
2634         * device/examples/ds390/ow390/ownetu.c,
2635         * device/examples/ds390/ow390/swt12.c,
2636         * device/examples/ds390/ow390/swtloop.c,
2637         * device/examples/ds390/ow390/temp.c,
2638         * device/examples/ds390/ow390/temp10.c,
2639         * device/examples/ds390/ow390/thermo21.c,
2640         * device/examples/ds390/ow390/tinilnk.c,
2641         * device/examples/ds390/ow390/tstfind.c,
2642         * device/examples/serialcomm/windows/serial.cpp,
2643         * device/examples/serialcomm/windows/test_serialcomm.cpp,
2644         * device/include/reg51.h: fixed line endings for cvs
2645
2646 2004-09-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2647
2648         * src/hc08/ralloc.c (canDefAccResult, canUseAccOperand,
2649         packRegsForAccUse, packRegisters): new accumulator register
2650         packing algorithm
2651         * support/regression/ports/hc08/support.c (_putchar): suppress
2652         warning of unused variable
2653         * src/SDCCicode.c: added SWAP entry to codeTable
2654
2655 2004-09-01 Maarten Brock <sourceforge.brock AT dse.nl>
2656
2657         * device/lib/sprintf.c: forgot to add this file before previous commit
2658
2659 2004-09-01 Vangelis Rokas <vrokas AT otenet.gr>
2660
2661         * src/pic16/gen.c (genPackBits): added operand right in function
2662         parameters, load result directly if p_type is POINTER (that is
2663         called by genNearPointerSet)
2664         * (genUnPackBits): added operand left in function parameters,
2665         * (genNearPointerGet, genNearPointerSet): prevent the loading of
2666         FSR0 if accessing bitfields,
2667
2668 2004-08-31 Maarten Brock <sourceforge.brock AT dse.nl>
2669
2670         * device/include/stdio.h: added NULL, size_t, typedef pfn_outputchar,
2671           _print_format; updated printf, sprintf, vsprintf
2672         * device/include/asm/default/features.h: corrected comment/define
2673         * device/lib/Makefile.in: added sprintf.c
2674         * device/lib/libsdcc.lib: added sprintf module
2675         * device/lib/printf_large.c,
2676         * device/lib/vprintf.c,
2677         * device/lib/sprintf.c: totally refactored printf_large and vprintf
2678           into these 3 files
2679         * support/regression/Makefile: changed ALL_PORTS into a usefull default
2680         * support/regression/ports/mcs51-stack-auto/spec.mk: added sprintf
2681         * support/regression/tests/bug-927659.c: removed dummy putchar, enabled
2682           hc08 test
2683         * support/regression/tests/zeropad.c: define idata as data for hc08
2684
2685 2004-08-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2686
2687         * src/SDCCpeeph.c (labelIsReturnOnly): support hc08 rts opcode also
2688         * src/SDCCpeeph.c (buildLabelRefCountHash): assume function entry point
2689         labels are referenced at least once (even if a reference is not found)
2690         * src/hc08/gen.c (emitcode): set isComment flag for comments
2691         * src/hc08/peeph.def: added rules 5a..5f (optimize redundant immediate
2692         loads), rules 6a..6b (optimize jumps to return)
2693
2694 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2695
2696         * device/lib/acosf.c (acosf),
2697         * device/lib/asinf.c (asinf),
2698         * device/lib/atanf.c (atanf),
2699         * device/lib/ceilf.c (ceilf),
2700         * device/lib/cosf.c (cosf),
2701         * device/lib/coshf.c (coshf),
2702         * device/lib/cotf.c (cotf),
2703         * device/lib/fabsf.c (fabsf),
2704         * device/lib/floorf.c (floorf),
2705         * device/lib/log10f.c (log10f),
2706         * device/lib/logf.c (logf),
2707         * device/lib/sinf.c (sinf),
2708         * device/lib/sinhf.c (sinhf),
2709         * device/lib/sqrtf.c (sqrtf),
2710         * device/lib/tanf.c (tanf),
2711         * device/lib/tanhf.c (tanhf),
2712         * device/include/math.h: defined _FLOAT_FUNC_REENTRANT macro and
2713         replaced all instances of "reentrant" in the library functions
2714         defined in math.h with this macro.
2715         * support/regression/tests/float_trans.c: reenabled test for hc08
2716
2717 2004-08-30 Bernhard Held <bernhard AT bernhardheld.de>
2718
2719         * device/lib/pic16/Makefile.common.in: added MODELFLAGS again, it was
2720         erroneously deleted
2721
2722 2004-08-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2723
2724         * src/hc08/gen.c (loadRegFromAop): better use of clra & clrx
2725         * src/hc08/gen.c (genAnd, genOr): fixed bug with conditional when
2726         multi-byte volatile operands are used
2727         * src/hc08/gen.c (shiftRLong): fixed bug with wrong rotate direction
2728         * src/hc08/main.c (_hc08_genAssemblerPreamble): moved the built-in
2729         initialization to area GSINIT0 so that it would always precede
2730         any static initializers in GSINIT
2731         * support/regression/tests/zeropad.c: fixed idata define for hc08
2732         * support/regression/tests/bug-927659.c,
2733         * support/regression/tests/float_trans.c: disabled tests for hc08
2734         pending missing library routines
2735         * .version: increased version number to 2.4.4 - hc08 port now passes
2736         regression tests
2737
2738
2739 2004-08-29 Bernhard Held <bernhard AT bernhardheld.de>
2740
2741         * device/lib/pic16/Makefile.common.in: added $(MM) to fix `make clean`
2742         * Makefile.common.in,
2743         * as/Makefile,
2744         * as/hc08/Makefile.in,
2745         * as/mcs51/Makefile.in,
2746         * as/z80/Makefile.in,
2747         * debugger/mcs51/Makefile.in,
2748         * device/include/Makefile.in,
2749         * device/lib/Makefile.in,
2750         * doc/Makefile,
2751         * link/Makefile,
2752         * link/z80/Makefile.in,
2753         * packihx/Makefile.in,
2754         * sim/ucsim/main_in.mk,
2755         * sim/ucsim/avr.src/Makefile.in,
2756         * sim/ucsim/doc/Makefile.in,
2757         * sim/ucsim/gui.src/serio.src/Makefile.in,
2758         * sim/ucsim/hc08.src/Makefile.in,
2759         * sim/ucsim/s51.src/Makefile.in,
2760         * sim/ucsim/xa.src/Makefile.in,
2761         * sim/ucsim/z80.src/Makefile.in,
2762         * src/Makefile.in,
2763         * support/cpp2/Makefile.in,
2764         * support/librarian/Makefile,
2765         * support/makebin/Makefile: added DESTDIR to the install path proposed
2766         by "Maciej 'Agaran' Pijanka" <agaran AT pld-linux.org>
2767         * doc/sdccman.lyx: added DESTDIR documentation
2768
2769 2004-08-29 Vangelis Rokas (vrokas AT otenet.gr>
2770
2771         * src/pic16/gen.c (genFunction, genEndFunction): fixed return
2772         instruction for interrupt handlers, use fast returns when returning
2773         from high priority interrupts
2774
2775 2004-08-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2776
2777         * src/hc08/gen.c (genAnd, genOr, transferAopAop, rmwWithAop): optimized
2778         code generation
2779         * src/hc08/gen.c (genrshFour, genCpl): fixed bugs
2780         * src/hc08/gen.c (genMultOneByte, genDivOneByte, genModOneByte): fixed
2781         bugs, ported much of Bernhard's code from mcs51
2782         * src/mcs51/gen.c (genSend),
2783         * src/hc08/gen.c (genSend): fixed bug with lost SEND iCodes if more
2784         than one when calling a reentrant function
2785         * device/lib/_mullong.c: defined an alternate struct layout for big
2786         endian ports (hc08)
2787
2788 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2789
2790         * src/hc08/gen.c (shiftL2Left2Result): fix for bug-500536 regression
2791         test
2792
2793 2004-08-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2794
2795         * src/SDCCsymt.c (processFuncArgs): make sure parameter types
2796         are sane and complete before asking the port its prefered parameter
2797         passing method (fixes bug #1017633)
2798         * device/lib/hc08/_ret.c: added "data" storage class to _ret2
2799         and _ret3
2800
2801 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2802
2803         * src/hc08/gen.c (genPackBitsImmed, genUnpackBitsImmed): fix offset
2804         problem in bitfields >= 8 bits.
2805
2806 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2807
2808         * src/SDCCsymt.c: undid changes that were not meant to be committed
2809
2810 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2811
2812         * support/regression/ports/hc08spec.mk: REENTRANT must be reentrant
2813
2814 2004-08-27 Maarten Brock <sourceforge.brock AT dse.nl>
2815
2816         * src/hc08/gen.c (genUminusFloat): fixed bug where only 3 bytes were
2817           copied and wrong bit got inverted
2818
2819 2004-08-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2820
2821         * src/hc08/gen.c (genPointerSet, genFarPointerSet): moved code from
2822         genFarPointerSet into genPointerSet; eliminated genFarPointerSet
2823         * src/hc08/gen.c (genPointerGet, genFarPointerGet): moved code from
2824         genFarPointerGet into genPointerGet; eliminated genFarPointerGet
2825         * src/hc08/gen.c (genPackBitsImmed): generate optimized code for
2826         assignments to bitfields at known addresses
2827         * src/hc08/gen.c (genUnpackBitsImmed): generate optimized code for
2828         reads from bitfields at known addresses
2829         * src/hc08/ralloc.c (packRegisters),
2830         * src/hc08/gen.c (genPointerGet, genUnpackBits, genUnpackBitsImmed,
2831         genhc08Code): optimize pointer get values used as conditionals
2832         * src/hc08/peeph.def: added rules 2e & 2f to optimize bit test
2833         and branch
2834
2835 2004-08-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2836
2837         * src/mcs51/gen.c (genPointerGet, genNearPointerGet, genPagedPointerGet,
2838         genFarPointerGet, genCodePointerGet, genGenPointerGet, genUnpackBits),
2839         * src/mcs51/ralloc.c (packRegisters): optimize pointer get values used
2840         as conditionals
2841
2842 2004-08-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2843
2844         * src/mcs51/peeph.def: peepholes 248.i-m for xdata bitfields
2845
2846 2004-08-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2847
2848         * src/mcs51/ralloc.c (packRegsForOneuse): fixed bug #1012650 and some
2849         related problems
2850
2851 2004-08-21 Bernhard Held <bernhard AT bernhardheld.de>
2852
2853         * sim/ucsim/cmd.src/Makefile.in: run lex only if $(PRJDIR)/devel exists
2854
2855 2004-08-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2856
2857         * src/z80/ralloc.c (packRegsForAssign): ported some bug fixes from the
2858         mcs51 port
2859
2860 2004-08-16 Slade Rich <slade_rich AT users.sourceforge.net>
2861
2862         * src/pic/gen.c: Restored fn genRet as previous fix was incorrect.
2863
2864 2004-08-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
2865
2866         * src/mcs51/gen.c (genJumpTab): jumptables for more than 16 switch
2867         cases use more compact code.
2868
2869 2004-08-13 Slade Rich <slade_rich AT users.sourceforge.net>
2870
2871         * src/pic/gen.c: Fixed problem with fn returning a variable bigger than a char.
2872
2873 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2874
2875         * src/SDCClrange.c (findPrevUse): fixed bug #1007371
2876
2877 2004-08-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2878
2879         * src/SDCCsymt.h,
2880         * src/SDCCsymt.c (changePointer, checkDecl, addSymChain): changed
2881         parameter of changePointer() from symbol* to sym_link*
2882         * src/SDCCast.c (decorateType): call changePointer() for CAST op
2883         * src/SDCCsymt.c (compareType): void* type is castable to other
2884         pointers, but not necesarily an exact match.
2885         * src/SDCCicode.c (geniCodeCast): allow void* casting here since it
2886         is no longer blindly treated as an exact match.
2887         * src/SDCCval.c (valCastLiteral): treat missing type as cast to void
2888
2889 2004-08-12 Slade Rich <slade_rich AT users.sourceforge.net>
2890
2891         * src/pic/glue.c: Added struct initialisation fn printIvalStruct.
2892
2893 2004-08-11 Slade Rich <slade_rich AT users.sourceforge.net>
2894
2895         * src/pic/gen.c,
2896         * src/pic/pcode.c,
2897         * src/pic/ralloc.h,
2898         * src/pic/ralloc.c: Printing rIdx on internal verbose debug.
2899
2900 2004-08-10 Slade Rich <slade_rich AT users.sourceforge.net>
2901
2902         * src/pic/device.c,
2903         * src/pic/device.h,
2904         * src/pic/device.c: Will no longer exit if #pragma maxram has not been defined.
2905
2906 2004-08-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2907
2908         * src/mcs51/gen.c (emitcode): fixed bug #992819
2909
2910 2004-08-05 Maarten Brock <sourceforge.brock AT dse.nl>
2911
2912         * src/pic/ralloc.c (deassignLR): allthough pic port is buggy already,
2913           there's no need to make it worse
2914
2915 2004-08-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2916
2917         * src/mcs51/ralloc.c (deassignLR),
2918         * src/ds390/ralloc.c (deassignLR),
2919         * src/hc08/ralloc.c (deassignLR),
2920         * src/z80/ralloc.c (deassignLR),
2921         * src/pic/ralloc.c (deassignLR),
2922         * src/pic16/ralloc.c (deassignLR),
2923         * src/avr/ralloc.c (deassignLR),
2924         * src/SDCClrange.c (findRecursiveSucc, findRecursivePred, findPrevUse,
2925         rlivePoint): fixed another part of bug #971834
2926
2927 2004-08-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
2928
2929         * src/z80/main.c: enabled "critical" keyword
2930         * src/z80/mappings.i,
2931         * src/z80/gen.c (genFunction, genEndFunction): support for interrupt
2932         functions (fixes bug #979646)
2933         * doc/sdccman.lyx: added a subsection explaining z80 interrupt support
2934
2935 2004-08-04 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
2936
2937         * src/mcs51/gen.c (genInline): Add \n for labels, not DOS/WIN dirs
2938           such as c:\mydir.
2939
2940 2004-08-03 Maarten Brock <sourceforge.brock AT dse.nl>
2941
2942         * src/SDCCloop.c (loopInvariants): fixed bug 983545, hope this
2943           doesn't disable too much optimizations
2944
2945 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2946
2947         * src/pic/glue.c Disabled "WARNING: function 'main' undefined" when -S option is used.
2948
2949 2004-08-02 Maarten Brock <sourceforge.brock AT dse.nl>
2950
2951         * src/SDCClrange.c (rlivePoint): fixed bug 988568, thanks to anonymous
2952
2953 2004-08-02 Slade Rich <slade_rich AT users.sourceforge.net>
2954
2955         * src/pic/gen.c tidied up tabs
2956         * src/pic/genarith.c tidied up tabs and fixed bug with literal multiple where same register was used for hi and low byte
2957         * src/pic/main.c tidied up tabs
2958         * src/pic/pcode.c tidied up tabs and disabled verbose code generation
2959         * src/pic/pcoderegs.c tidied up tabs
2960         * src/pic/ralloc.c tidied up tabs
2961
2962 2004-07-30 Vangelis Rokas <vrokas AT otenet.gr>
2963
2964         * src/SDCCmem.c (allocGlobal): don't turn S_REGISTER storage class
2965         to S_FIXED for pic16 port and when symbol is not in level 0,
2966         allocate for S_REGISTER storage class and pic16 port, too,
2967         * src/pic16/device.h: prototype for checkSym,
2968         * src/pic16/device.c (pic16_dump_access, checkSym): NEW,
2969         * (pic16_assignConfigWordValue): test the value and the mask to
2970         validate that the value is suitable for the configuration word,
2971         * src/pic16/glue.c (pic16_printIvalFuncPtr): use 'externs' to
2972         collect extern declared symbols, don't emit symbol twice, check
2973         first if symbol is in publics set first,
2974         * src/pic16/main.c (_pic16_keywords[]): added keyword 'register',
2975         * added command line '--fstack' which enables an experimental
2976         feature for stack access, too buggy to be used yet...
2977         * src/pic16/ralloc.c (pic16_accessregWithName): NEW,
2978         * (pic16_allocDirReg): when register has storage class S_REGISTER
2979         allocate in pic16_dynAccessRegs,
2980         * device/include/pic16/pic18f????.h: modified configuration word
2981         naming convention, words started as CONFIG0H but should be CONFIG1H
2982
2983 2004-07-29 Maarten Brock <sourceforge.brock AT dse.nl>
2984
2985         * device/include/mcs51reg.h: fixed bug 970993
2986
2987 2004-07-27 Maarten Brock <sourceforge.brock AT dse.nl>
2988
2989         * added lib/calloc.c, lib/free.c, lib/realloc.c, include/stddef.h
2990         * updated lib/malloc.c, lib/libsdcc.lib, lib/Makefile.in, include/malloc.h
2991         * src/SDCC.lex (doPragma): added pragma disable_warning <nnn>
2992         * src/SDCCmain.c (parseCmdLine): added option --disable-warning <nnn>
2993         * src/ds390/gen.c (genPlusIncr): fixed bug when incrementing generic pointers
2994         * support/Util/SDCCerr.c (vwerror): suppress disabled warnings and output
2995           error/warning numbers,
2996           added function setWarningDisabled()
2997         * support/Util/SDCCerr.h: added setWarningDisabled() and MAX_ERROR_WARNING
2998         * support/regression/ports/mcs51-stack-auto/spec.mk: added dependencies
2999           _memcmp.c _memmove.c calloc.c realloc.c free.c
3000         * support/regression/tests/malloc.c: added tests for new functionality
3001         * support/regression/tests/zeropad.c: added tests for truncated initializers
3002           and initialized char arrays starting with '\x0'
3003         * src/mcs51/peeph.def: fixed regression, added peephole 177.f
3004
3005 2004-07-26 Bernhard Held <bernhard AT bernhardheld.de>
3006
3007         * support/valdiag/tests/overflow.c: fixed warning on (1 >> 40)
3008
3009 2004-07-26 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3010
3011         * doc/sdccman.lyx: updated example in section "Absolute Addressing"
3012         * src/mcs51/peeph.def: added contributed fix for "bug" #995347 as
3013         peephole 177.e. Thanks to anonymous
3014
3015 2004-07-25 Vangelis Rokas <vrokas AT otenet.gr>
3016
3017         * src/pic16/glue.c (pic16_printIvalFuncPtr): when an extern
3018         function isn't used in the source but referenced as a
3019         variable initializer then declare it as extern in .asm file
3020
3021 2004-07-24 Vangelis Rokas <vrokas AT otenet.gr>
3022
3023         * .version: increased version number to 2.4.3
3024
3025         Adding version extension according to ChangeLog CVS revision
3026         * src/Makefile.in (target all): added dependency 'version.h'
3027         * (rule version.h): added rule to create version.h from ChangeLog,
3028         * (rule dep): added dependency version.h,
3029         * src/version.awk: AWK script to create version.h
3030         * src/SDCCdwarf2.c (dwWriteModule),
3031         * src/SDCCglue.c (initialComments),
3032         * src/SDCCmain.c (printVersionInfo): modified to write after
3033         version string the version extension number,
3034         * src/SDCCutil.c: included "version.h"
3035         * (getBuildNumber): NEW, returns SDCC's ChangeLog minor revision
3036         number,
3037         * src/SDCCutil.h: added prototype for getBuildNumber
3038
3039         * src/SDCCmain.c (parseCmdLine): when sOpt is 'I' add rest in
3040         includeDirsSet, too,
3041         * src/SDCCsymt.c (checkSClass): don't emit error when a variable,
3042         const char [] is found in function prototype...
3043
3044         * src/pic16/genarith.c (pic16_genUMult8XLit_8): optimization to omit
3045         moving to WREG with source is already in WREG,
3046         * src/pic16/gen.h: added AOP_FSR0 and AOP_FSR2 in enum,
3047         * src/pic16/gen.c (getFreePtr): updated to look for FSR0 and FSR2,
3048         * (aopForSym): stack'ed symbols are partially supported, added
3049         if-clause to support symbols in FARSPACE,
3050         * (sameRegs): added test for AOP_ACC to see if registers are same,
3051         * (pic16_freeAsmop): added case for AOP_FSR0 and AOP_FSR2,
3052         * (pic16_aopGet): added case for AOP_FSR0 and AOP_FSR2,
3053         * (pic16_popRegFromString): will not allocate a new register if it
3054         doesn't find one by name, bug may have introduced...
3055         * (pic16_popGet): added case for AOP_FSR0 and AOP_FSR2,
3056         * (genIpush): revived to use pic16 port's stack,
3057         * (genAddrOf): added incomplete case for stack'ed operand,
3058         * (genCast): optimized a pair of MOVFW,MOVWF to MOVFF
3059         * src/pic16/genutils.c (pic16_genNot): almot new vesrion for NOT,
3060         can handle multibyte operands,
3061         * src/pic16/glue.c (pic16_printIval*): some debug info added,
3062         * (pic16initialComments): added message for MPLAB compatibility
3063         mode enabled,
3064         * src/pic16/main.h: prototype for pic16_mplab_comp,
3065         * src/pic16/main.c (pic16_optionsTable): new option --mplab-comp,
3066         which enabled MPLAB compatibility mode (i.e. no #LINE/#FILE, BANKED)
3067         * (_pic16_linkEdit): NEW, handles link stage, transferred here
3068         because of increased complexity of procedure,
3069         * (_process_pragma): stack pragma changed to format 'stack pos len',
3070         emit symbol '_stack_end' to conform with gplink,
3071         * src/pic16/pcode.c (pic16_newpCodeOpBit): using pic16_regWithName
3072         to search for register,
3073         * (pic16_get_op, pic16_get_op2): added case for PO_W, PO_WREG and
3074         PO_GPR_REGISTER,
3075         * (pic16_pCode2str): when in MPLAB compatibility mode, comment out
3076         #LINE directives and replace 'B' with 'BANKED' in instruction opcodes
3077         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
3078         case for PO_GPR_REGISTER,
3079         * (pic16_AnalyzeBanking): removed the old message for inc2h.pl, past
3080         dies, the new era is ahead !...
3081         * src/pic16/ralloc.c: added hash reposits pic16_dynAllocRegNames and
3082         pic16_dynInternalRegs,
3083         * (pic16_allocregWithName, pic16_procregWithName, pic16_regWithname): NEW,
3084         * (pic16_allocDirReg): minor optimizations and bug fixes,
3085         * (pic16_allocWithIdx): when searching pic16_dynProcessorRegs use fixed,
3086
3087         * device/lib/pic16/startup/crt0*.c: extern definition of stack_end,
3088         load stack and frame pointer with address of 'stack_end' symbol
3089
3090 2004-07-23 Vangelis Rokas <vrokas AT otenet.gr>
3091
3092         * src/pic16/glue.c (pic16emitStaticSeg): fixed bug with files
3093         without source code but only variable initializers
3094
3095 2004-07-20 Vangelis Rokas <vrokas AT otenet.gr>
3096
3097         * src/pic16/glue.c (pic16emitRegularMap): unused functions marked as
3098         external are not declared as extern to reduce overhead while linking
3099
3100 2004-07-20 Maarten Brock <sourceforge.brock AT dse.nl>
3101
3102         * src/SDCCast.c (decorateType): removed buggy fix for bug #979599
3103
3104 2004-07-11 Maarten Brock <sourceforge.brock AT dse.nl>
3105
3106         * src/SDCCglue.c (printIvalArray): fixed bug #984229, thanks to Phuah
3107           Yee Keat for the patch
3108         * src/SDCCast.c (decorateType): fixed bug #979599
3109         * src/ds390/gen.h: removed local fReturnSizeDS390
3110         * src/ds390/gen.c: made fReturnSizeDS390 signed short to remove a warning
3111         * src/ds390/gen.c (genAnd, genOr, genXor),
3112         * src/mcs51/gen.c (genAnd, genOr, genXor): generate better optimized code
3113
3114 2004-07-04 Vangelis Rokas <vrokas AT otenet.gr>
3115
3116         * src/SDCCmain.c (linkEdit): modifications only for pic16 port,
3117         add relFilesSet to $3, manipulate $2 to handle linking of object
3118         files without source files in command line,
3119         * device/include/pic16 (all headers): added ID location macros,
3120         * src/pic16/device.c (struct PIC16_device Pics16[]): added field
3121         entries for ID location bytes,
3122         * (pic16_assignIdByteValue): NEW,
3123         * src/pic16/device.h: new structures idRegInfo_t and idBytesInfo_t,
3124         added field dumpcalltree to pic16_options_t,
3125         * src/pic16/gen.c (genCmp): fixed bug case so a temporary register
3126         is used instead of pic16_Gstack_base_addr, check if (ifx) before
3127         emitting rFalseIfx label after check_carry label,
3128         * src/pic16/glue.c (PIC16_IS_IDLOC_ADDRESS, PIC16_IS_HWREG_ADDRESS,
3129         pic16_emitDIRegs), NEW
3130         * (pic16glue): dump .calltree file when option --calltree found,
3131         * src/pic16/main.c (OPTION _pic16_optionsTable): new option --calltree
3132         * (_pic16_genAssemblerPreamble): emit ID locations after
3133         configuration registers,
3134         * (pic16_linkCmd): modifications of the link command,
3135         * src/pic16/pcode.c (pic16_pciMOVFF): PCC_REGISTER replaces PCC_REGISTER2
3136         * (pic16_pCodeInitRegisters): don't init stack registers,
3137         * (pic16_findPrevInstruction): fixed bug,
3138         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): fixed
3139         bug with immediate registers,
3140         * (buildCallTree): traces stack push and pop,
3141         * (pct2): dump also stack usage for each function,
3142         * src/pic16/ralloc.c (dynrIdx): registers names start from 0x00
3143         * (pic16_allocDirReg): various modifications,
3144         * (pic16_typeRegWithIdx): when searching pic16_dynProcessorRegs set
3145         fixed to 1,
3146
3147 2004-07-02 Vangelis Rokas <vrokas AT otenet.gr>
3148
3149         * src/pic16/pcode.c: removed buggy double colon
3150
3151 2004-07-01 Borut Razem <borut.razem AT siol.net>
3152
3153         * support/scripts/sdcc.nsi: added include/pic16 to setup
3154
3155 2004-06-30 Vangelis Rokas <vrokas AT otenet.gr>
3156
3157         * device/lib/Makefile.in: fixed bug in target objects-pic16,
3158         * device/lib/pic16/Makefile: prefixed with dash (-) command under
3159         target 'clean',
3160         * doc/sdccman.lyx: changed version to 2.4.2 and added some port
3161         specific command line arguments. Also added sample lkr script
3162         for placing a variable at a specific memory bank.
3163         * src/pic16/device.c (pic16_dump_gsection): NEW, to dump variables
3164         at a specific memory bank,
3165         * (pic16_dump_isection): fixed bug which caused string literals to
3166         be omitted when dumping idata section,
3167         * (pic16_groupRegistersInSection): added code to handle registers
3168         in specific memory banks,
3169         * src/pic16/gen.c: labelOffset is prefixed with pic16_ and made
3170         public, all references are renamed too,
3171         * (pic16_aopGet): removed switch cases for AOP_R0,AOP_R1,AOP_DPTR,
3172         AOP_DPTR2,
3173         * (pic16_storeForReturn): added case to handle when dest is WREG,
3174         * src/pic16/genarith.c (pic16_pCodeOpSubType): NEW,
3175         * src/pic16/glue.c (pic16emitRegularMap): when adding a register in
3176         pic16_rel_udata, check to see if that register is marked as being
3177         a member of a specific memory bank,
3178         * (pic16_printIvalCharPtr): added code to add string literals either
3179         to code or the idata sections,
3180         * src/pic16/main.c (_process_pragma): added \n to WHITE constant,
3181         also accept the 'udata' pragma,
3182         * src/pic16/main.h: new structure types sectName and sectSym
3183         * src/pic16/pcode.c: added new pCodeInstruction entry for BANKSEL
3184         * (newpCodeOpBit): added PIC_OPTYPE subt in function prototype,
3185         * (pic16_findPrevInstruction): fixed, it returned nothing,
3186         * (insertBankSwitch): fixed to emit banksel/skip and skip/banksel
3187         instruction combinations,
3188         * (pic16_FixRegisterBanking): heavily reorganised,
3189         * (pic16_AnalyzeBanking): if generating banksel directives is
3190         disabled, then don't call FixRegisterBanking at all,
3191         * src/pic16/ralloc.c (bitEQUs, aliasEQUs, allDefsOutOfRange):
3192         completely removed,
3193         * (pic16_writeUsedRegisters): added call to pic16_dump_gsection
3194
3195 2004-06-29 Bernhard Held <bernhard AT bernhardheld.de>
3196
3197         * src/SDCCglue.c (printChar): fixed bug #973350, patch provided by
3198         Phuah Yee Keat <yk.phuah AT nestac.com>
3199
3200 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3201
3202         * src/pic16/glue.c (pic16createInterruptVect): function now emits
3203         correctly the IVT even if it is relocated to some other location
3204
3205 2004-06-28 Vangelis Rokas <vrokas AT otenet.gr>
3206
3207         * device/include/pic16/pic18fregs.h: added case for pic18f2220.h
3208         * device/include/pic16/pic18f2220.h: NEW,
3209         * device/lib/pic16/libdev/pic18f2220.c: NEW,
3210         * device/lib/pic16/libdev/Makefile: added 18f2220 in DEVS,
3211         * src/pic16/device.c (struct Pics16): added info for 18f2220,
3212         * src/pic16/device.h (struct pic16_options): added ivt_loc and
3213         nodefaultlibs, ivt_loc is the location of the interrupt vector
3214         table, and nodefaultlibs signs that default libraries should not be
3215         linked in link stage,
3216         * src/pic16/gen.c (genFunction): relocate interrupt vector functions
3217         according to --ivt-loc argument,
3218         * src/pic16/main.c (_process_pragma): emit '_stack' as public symbol
3219         when pragma stack is found,
3220
3221 2004-06-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3222
3223         * src/mcs51/peeph.def: added peepholes 182.d (return 0.0),
3224         256 (range check), 257 (do while), 258.a-f (bit banging
3225         f.e. on 3-wire SPI bus)
3226
3227 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3228
3229         * src/SDCClrange.c (findNextUseSym): fixed a live range bug with
3230         variables used exclusively within a loop
3231
3232 2004-06-21 Bernhard Held <bernhard AT bernhardheld.de>
3233
3234         * src/mcs51/gen.c (genCpl): quick fix for bug #974835
3235
3236 2004-06-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3237
3238         * src/SDCClrange.c (computeClash): fixed bug #971834
3239
3240 2004-06-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3241
3242         * src/mcs51/gen.c (genCmp): fixed bug #975903
3243         * src/hc08/gen.c (operandsEqu),
3244         * src/ds390/gen.c (operandsEqu),
3245         * src/z80/gen.c (operandsEqu),
3246         * src/pic/gen.c (operandsEqu),
3247         * src/pic16/gen.c (operandsEqu),
3248         * src/mcs51/gen.c (operandsEqu): fixed bug #976283
3249         * src/SDCCmain.c (parseCmdLine): report --unknown-option only once
3250
3251 2004-06-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3252
3253         * src/SDCCcse.c (cseBBlock): fixed bug #966963
3254
3255 2004-06-12 Vangelis Rokas <vrokas AT otenet.gr>
3256
3257         * src/pic16/gen.c (genPointerGet): added E_INTERNAL_ERROR for
3258         default case in switch statement,
3259         * glue.c (pic16_initPointer): expr is initialised via decoarteType
3260         to eliminate problem with initialisation of pointers, but problem
3261         still exists,
3262         * (pic16_pointerTypeToGPByte): removed, no needed for pic16,
3263         * (emitStaticSegment): removed various lines emitting debug info,
3264         * src/pic16/pcode.c, src/pic16/pcode.h, src/pic16/ralloc.h:
3265         added processor registers for utilizing EEPROM,
3266         * src/pic16/pcode.c (pic16_emitDB): number of DBs emitted is not
3267         configurable and set 8
3268
3269 2004-06-08 Vangelis Rokas <vrokas AT otenet.gr>
3270
3271         * .version: increased version number to 2.4.2,
3272
3273         Cumulative patch for pic16 port
3274         * src/pic16/device.c: changed scheme to dump initial values for
3275         variables in idata segment, all print_idata* functions were removed,
3276         now the pic16_printIval* will be called,
3277         * src/pic16/glue.c: (pic16_initPointer, pic16_pointerTypeToGPByte,
3278         * _pic16_printPointerType, pic16_printPointerType,
3279         * pic16_printGPointerType, pic16_printIvalArray, pic16_printIvalStruct,
3280         * pic16_printIvalBitFields, pic16_printIvalFuncPtr, pic16_printIvalPtr:
3281         NEW, similar to the respective functions in SDCCglue.c,
3282         * src/pic16/pcode.c (pic16_emitDB, pic16_flushDB): reverted to old
3283         way, emitting hex bytes,
3284         * (pic16_emitDS): NEW, emits a string for pointer initialisation,
3285
3286 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3287
3288         * src/avr/ralloc.c (serialRegAssign),
3289         * src/xa51/ralloc.c (serialRegAssign),
3290         * src/pic/ralloc.c (serialRegAssign),
3291         * src/pic16/ralloc.c (serialRegAssign),
3292         * src/hc08/ralloc.c (serialRegAssign),
3293         * src/z80/ralloc.c (serialRegAssign),
3294         * src/ds390/ralloc.c (serialRegAssign),
3295         * src/mcs51/ralloc.c (serialRegAssign): fixed bug #964479
3296
3297 2004-06-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3298
3299         * src/SDCCicode.c (geniCodeJumpTable): fixed bug #967601
3300         * src/SDCCpeeph.c (labelIsReturnOnly): fixed bug #966505
3301
3302 2004-06-07 Vangelis Rokas <vrokas AT otenet.gr>
3303
3304         Cumulative patch for pic16 port:
3305         * src/pic16/device.h (typedef PIC16_device) modified fields for
3306         defining microcontrollers,
3307         * src/pic16/device.c: added new info for all devices in Pics16 array,
3308         * src/pic16/gen.c (genPcall): fixed bug that caused the return label
3309         to be optimised out by the pCode optimiser,
3310         * src/pic16/glue.c (pic16emitRegularMap): treat implicit aggragates
3311         specially, bug reported by G.M. Gallant,
3312         * src/pic16/pcode.c (pic16_newpCodeLabelFORCE): NEW, marks a label
3313         as force'd so that cannot be optimised out by pCode optimiser,
3314         * src/pic16/pcode.c,
3315         * src/pic16/pcodepeeph.c,
3316         * src/pic16/pcoderegs.c: many modifications to re-enable peepholes,
3317         they are disabled by default, but can be enabled explicit with
3318         command argument --denable-peeps, for testing,
3319         * device/lib/pic16/startup/Makefile: added --no-peep,--pomit-config-words,
3320         --pomit-ivt in COMPILE_FLAGS
3321
3322 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3323
3324         * src/pic16/pcode.c (pic16_emitDB): removed double semicolon which fails
3325           compilation on MSVC
3326
3327 2004-06-06 Maarten Brock <sourceforge.brock AT dse.nl>
3328
3329         * device/include/sab80515.h: added sfr P6, changed GPL to LGPL
3330
3331 2004-06-06 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3332
3333         device/include/sab80515.h: fixed bug #967492, DAPR is defined at adress
3334         0xd8, but the correct adress is 0xda. Thanks to anonymous for reporting
3335
3336 2004-06-06 Vangelis Rokas <vrokas AT otenet.gr>
3337
3338         * src/pic16/device.c (pic16_assignConfigWord): fixed bug that
3339         would only assign 0x300001 register.
3340
3341 2004-06-05 Vangelis Rokas <vrokas AT otenet.gr>
3342
3343         * device/lib/pic16/startup/Makefile: added $(MODELFLAGS)
3344         in COMPILE_FLAGS. Thanks to G. Gallant for report.
3345
3346 2004-06-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3347
3348         * doc/sdccman.lyx: minor changes, mentioned beta vendor support
3349         for ds80c400
3350         * src/mcs51/peeph.def: ran unexpand -a over peeph.def
3351         * src/mcs51/peeph.def: removed obsolete peephole 100.a,
3352         added peephole 254 (left shift), 255 (jump table)
3353
3354 2004-06-04 Vangelis Rokas <vrokas AT otenet.gr>
3355
3356         * device/lib/Makefile.in: removed comment line with model-pic16,
3357         * (target port-specific-objects-pic16): the libraries and objects
3358         are copied to the build directory form the device/lib/pic16/bin
3359         directory
3360
3361         Cumulative patch concerning pic16 port:
3362         * library directory has been re-organized,
3363         * added support for PIC18F1220,
3364         * added headers and library sources for chips 18f1220,18f6520,
3365         18f6620,18f6680,18f6720,18f8520,18f8620,18f8680,18f8720
3366
3367         * configuration registers setting has changed, now each supported
3368         device has a complete description of the registers it uses,
3369         * all initialisations are moved to idata sections, these section
3370         can be absolute or relocatable,
3371         * fixed initialisation of codespace variables,
3372         * fixed warning about PCLATU and gpsim,
3373         * src/pic16/gen.c (genCmp): now can handle partially iCodes with no ifx,
3374         * (genAssign): use table reads when assigning from variables in codespace,
3375         * src/pic16/glue.c (pic16emitStaticSeg): fixed to correctly initialise
3376         char/int variables placed in codespace,
3377         * (pic16_emitConfigRegs): NEW, emits a list with configuration
3378         registers set in .asm file, no need for --pomit-config-words anymore,
3379         * (pic16glue): some 8051 legacy segments are commented out
3380         (to be removed completely),
3381         * added support for alternative assembler and linker with --asm=
3382         and --link= command line arguments,
3383         * peepholes are disabled automatically in the port, no need to
3384         specify on command line,
3385         * port supports natively char/int/long multiplication, but converts
3386         all divisions to support functions,
3387         * main.c: pic16_linkCmd and pic16_asmCmd changed to force output
3388         to the file set in variable $2,
3389         * pcode.c (pic16_emitDB, pic16_flushDB): modified to print printable
3390         strings in ASCII format and not in hex,
3391         * ralloc.c (serialRegAssign): added a triplet of conditional calls
3392         to pic16_allocDirReg for IC_RESULT, IC_LEFT and IC_RIGHT so to
3393         allocate proper register if iCodes aren't temporary,
3394
3395 2004-06-02 Maarten Brock <sourceforge.brock AT dse.nl>
3396
3397         * support/regression/tests/zeropad.c: added TEST_G macro for alpha
3398
3399 2004-06-02 Vangelis Rokas <vrokas AT otenet.gr>
3400
3401         * src/pic16/gen.c (genPcall): warning about gpsim and PCLATU
3402         is commented out
3403
3404 2004-06-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3405
3406         * src/hc08/gen.c (genPointerGetSetOfs): disabled optimization if
3407         computed address is reused
3408         * src/hc08/gen.c (genPackBits): fixed offsets in assignments to
3409         multi-byte bitfields
3410
3411 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3412
3413         * src/z80/gen.c: (genArrayInit): must check for pointers too
3414
3415 2004-06-01 Maarten Brock <sourceforge.brock AT dse.nl>
3416
3417         * support/regression/tests/zeropad.c: never meant to commit the
3418           nestedstruct test: removed, added check for GCC version
3419
3420 2004-05-31 Maarten Brock <sourceforge.brock AT dse.nl>
3421
3422         * src/SDCCast.c (createIvalArray): fixed bug 770487 SIGSEGV
3423         * src/SDCCglue.c (emitRegularMap): fixed bug 770484 allocation problem
3424         * src/SDCCglue.c (initPointer, printIvalType, printIvalStruct,
3425           printIvalArray, printIvalFuncPtr, printIvalPtr, printIval): fixed
3426           bugs 928906 and 954082 half-empty initializers
3427         * src/SDCCsymt.h,
3428         * src/SDCCsymt.c (getAllocSize): added for above fix
3429         * src/z80/gen.c (genArrayInit): fixed bug 741044
3430         * support/regression/tests/zeropad.c: added tests
3431
3432 2004-05-30 Vangelis Rokas <vrokas AT otenet.gr>
3433
3434         * src/pic16/device.c (pic16_dump_section): corrected bug which
3435         caused some symbols of the libraries to be misplaced
3436
3437 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3438
3439         * src/pic16/glue.c,
3440         * src/pic16/ralloc.h,
3441         * src/pic16/ralloc.cc: prefixed IS_CONFIG_ADDRESS with PIC16_
3442         to fix conflict with pic port
3443
3444 2004-05-28 Vangelis Rokas <vrokas AT otenet.gr>
3445
3446         * src/pic16/glue.c (pic16emitStaticSeg): do not print as publics or
3447         externs configuration variables,
3448         * src/pic16/ralloc.h,
3449         * src/pic16/ralloc.cc: IS_CONFIG_ADDRESS is made public and added
3450         prototype in header, commented out some debug messages
3451
3452 2004-05-26 Vangelis Rokas <vrokas AT otenet.gr>
3453
3454         * src/pic16/glue.c,
3455         * src/pic16/main.c,
3456         * src/pic16/pcode.c: added gpasm directives #FILE/#LINE
3457         for gpasm COFF object generation. Thanks to D. Hawkins for
3458         his patch info
3459
3460 2004-05-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3461
3462         * src/ds390/main.c,
3463         * src/mcs51/main.c: fixed sort order of mnemonics (thanks to Maarten
3464         Brock for spotting this)
3465         * src/ds390/gen.c (genEndFunction),
3466         * src/mcs51/gen.c (genEndFunction): always save psw if function is an
3467         interrupt handler and critical. Disable push/pop optimizations when
3468         peephole optimizations disabled.
3469
3470 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3471
3472         Updated pic16 library sources and headers.
3473         * device/lib/pic16/pic18f*/ ,
3474         * device/include/pic16/*.h: modified to handle structured SFR
3475         definitions
3476
3477 2004-05-25 Vangelis Rokas <vrokas AT otenet.gr>
3478
3479         * src/port.h (PORT structure): added hook initPaths, now each
3480         port can declare its own default search paths,
3481         which can been seen with the --print-search-dirs option,
3482         see pic16 port for example,
3483         * src/SDCCmain.c (setBinPaths, setIncludePaths, setLibPath,
3484         setDataPaths): test to options.printSearchDirs is ifdef'ed out,
3485         * (doPrintSearchDirs): NEW, replaces in a central manner the
3486         printing of search dirs which was split in set*Paths functions,
3487         * (main): added call to port->initPaths and doPrintSearchDirs,
3488         * src/avr/main.c,
3489         * src/ds390/main.c,
3490         * src/hc08/main.c,
3491         * src/izt/i186.c,
3492         * src/izt/tlcs900h.c,
3493         * src/mcs51/main.c,
3494         * src/pic/main.c,
3495         * src/pic16/main.c: modified port structures to reflect addition of
3496         initPaths hook,
3497
3498         * src/pic16/device.c (regCompare): registers are finally sorted by name,
3499         * (pic16_dump_section): for registers in same address reserve memory once,
3500         * src/pic16/device.h (struct PIC16_device): changed variable gen_banksel
3501         to no_banksel,
3502         * src/pic16/genarith.c (pic16_genPlus): added code to handle cases where
3503         result is greater in size than right or left,
3504         * (pic16_genUMult8X8_8): there are some cases where the result can
3505         be 16 bits size, so handle these,
3506         * src/pic16/gen.c: changed some pic16_emitpcomment to DEBUGpic16_emitcode,
3507         * (pic16_outBitC): modified to emit pcodes,
3508         * (pic16_storeForReturn): using is_LitOp to see if operand is literal
3509         or not,
3510         * (genDivOneByte): implemented algorithm to divide 8-bits,
3511         * (genCmp): uncommented goto, but issues still exist,
3512         * (genAnd): fixed a bug with variables >8bits,
3513         * (genPackBits): optimization added that uses BCF/BSF to change a
3514         single bit,
3515         * (genAssign): fixed bug when assigning floating point literals,
3516         * src/pic16/glue.c (pic16glue): added assembler directive 'code' before
3517         __sdcc_gsinit_startup label,
3518         * src/pic16/main.c (_pic16_init): removed search directory
3519         initialisations,
3520         * (_pic16_initPaths): NEW, used to initialise search directories,
3521         * (_hasNativeMulFor): support functions for all except char/int
3522         multiplication, and char division,
3523         * (PIC16_port struct): modified entry for native mul support,
3524         * src/pic16/pcode.c (insertBankSwitch): modified to support the renamed
3525         no_banksel option,
3526         * (buildCallTree): call to register_usage is ifdef'ed out,
3527
3528 2004-05-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3529
3530         * device/include/string.h: applied Stas Sergeev's patch to make this
3531         header file compatible with the preprocessor -Wundef option
3532         * src/SDCCmain.c (main): abort compilation if preprocessor reports
3533         failure (fixes bug #941458)
3534
3535 2004-05-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3536
3537         * src/SDCCopt.c (killDeadCode): fixed bug #907733
3538         * support/Util/SDCCerr.c: reworded E_AUTO_ASSUMED diagnostic to clarify
3539         that the variable, not the function, should be static
3540         * src/SDCCval.c (valCastLiteral): fixed bit initialization from literal
3541         to be consistent with non-literal case
3542
3543 2004-05-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3544
3545         * src/SDCCast.c (isConformingBody): fixed bug #949967
3546         * src/SDCCopt.c (cnvToFcall, cnvToFloatCast, cnvFromFloatCast,
3547         convilong): fixed bug #952086
3548
3549 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3550
3551         * src/SDCCmem.c (allocVariables): fixed bug #955321
3552
3553 2004-05-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3554
3555         * src/hc08/main.c (_hc08_genAssemblerEnd),
3556         * src/SDCCdwarf2.c (dwOpenFile, dwCloseFile, dwWriteFunction,
3557         dwWriteModule, dwWriteCLine, dwWriteALine, dwarf2FinalizeFile):
3558         completely eliminated the use of a temporary file
3559         * src/SDCCdwarf2.c (dwWriteAttr): fixed bug with location list offset
3560         when more than one file linked
3561         * src/SDCCloop.c (pointerAssigned): fixed bug #954163
3562
3563 2004-05-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3564
3565         * src/SDCCval.c (valForArray): applied Maarten Brock's patch #947682
3566         which fixes bug #543481
3567         * support/regression/tests/bug-751703.c: fixed comments left from a
3568         cut and paste error
3569         * src/SDCCdwarf2.c (dwCloseFile): don't explicitly close a temp file
3570         * src/SDCCdwarf2.c (dwTagFromType): added bitfield support
3571         * src/SDCCdwarf2.c (dwWriteSymbolInternal): handle extern within local
3572         scopes
3573         * src/SDCCdwarf2.c (dwWriteLineNumber): line number deltas are signed
3574         * src/SDCCmain.c (processFile, parseCmdLine): non-alphanumeric chars
3575         are now changed to underscores in moduleName
3576
3577 2004-05-15 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3578
3579         * as/mcs51/lkmem.c: better fix for bug #954173
3580
3581 2004-05-15 Maarten Brock <sourceforge.brock AT dse.nl>
3582         committed by Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3583
3584         * device/include/c8051f020.h: newly added SiLabs (Cygnal) header file
3585         * device/include/c8051f000.h,
3586         * device/include/c8051f120.h,
3587         * device/include/c8051f300.h,
3588         * device/include/c8051f310.h,
3589         * device/include/c8051f320.h: updated (added _XPAGE, CAPN, CAPP,
3590         PWM16) and detab'ed
3591
3592 2004-05-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3593
3594         * doc/sdccman.lyx: mentioned sourceforge's delay between web frontend
3595         and mailing lists, doc'ed --no-peep-comments, removed reference
3596         to knoppix (newest version has no LyX/LaTeX), other minor changes
3597         * src/SDCCglue.c (glue): save 2 bytes stack space with
3598         option --main-return. The ljmp could probably be avoided too
3599
3600 2004-05-14 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3601
3602         * as/mcs51/lkmem.c, as/mcs51/lkaomf51: fixed bug 954173
3603
3604 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3605
3606         * src/SDCCsymt.h: added IS_AUTO(symbol) test macro
3607         * src/SDCCopt.c (isLocalWithoutDef),
3608         * src/SDCCicode.c (operandFromSymbol): use the IS_AUTO test macro
3609         which adds a !IS_EXTERN codition. Fixes bugs #877426 and #751703.
3610         (credit to Maarten Brock for patch #949363, on which this is based)
3611         * support/regression/tests/bug-751703.c: some test cases of extern used
3612         within inner scopes.
3613
3614 2004-05-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3615
3616         * src/SDCCdwarf2.c (dwMatchTypes): structs must have matching
3617         SPEC_STRUCT
3618         * src/SDCCdwarf2.c (dwTagFromType): fix to handle recursive
3619         struct definitions
3620         * src/SDCCdwarf2.c (dwWriteModule, dwNewDebugSymbol, dwWriteEndFunction,
3621         dwWriteLabel): fix to create valid debugger symbols even when
3622         the module name has non-alphanumeric symbols in it
3623         * src/SDCCdwarf2.c (dwWriteSymbolInternal): better detection for
3624         when a variable's allocation has been optimized away
3625
3626
3627 2004-05-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3628
3629         * src/hc08/gen.c (hc08_emitDebuggerSymbol),
3630         * src/hc08/main.c,
3631         * src/mcs51/gen.c (mcs51_emitDebuggerSymbol),
3632         * src/mcs51/main.c,
3633         * src/ds390/gen.c (ds390_emitDebuggerSymbol),
3634         * src/ds390/main.c,
3635         * src/z80/gen.c (z80_emitDebuggerSymbol),
3636         * src/z80/main.c,
3637         * src/pic/gen.c (pic14_emitDebuggerSymbol),
3638         * src/pic/main.c,
3639         * src/pic16/gen.c (pic14_emitDebuggerSymbol),
3640         * src/pic16/main.c,
3641         * src/avr/gen.c (avr_emitDebuggerSymbol),
3642         * src/avr/main.c,
3643         * src/xa51/gen.c (xa51_emitDebuggerSymbol),
3644         * src/xa51/main.c,
3645         * src/SDCCdebug.c (emitDebuggerSymbol),
3646         * src/SDCCdebug.h,
3647         * src/port.h: added a debugger struct to the port struct. Added a
3648         callback for defining debugger symbols
3649
3650         * src/SDCCast.c (createLabel),
3651         * src/SDCC.y (labeled_statement): mark all compiler generated labels
3652         with isitmp = 1
3653         * src/SDCCicode.h,
3654         * src/SDCCicode.c (geniCodeFunctionBody): added a link from the FUNCTION
3655         iCode back to the ast for the function
3656
3657         * src/hc08/ralloc.c (hc08_assignRegisters),
3658         * src/hc08/ralloc.h: define a regs struct for the stack pointer. Removed
3659         unneeded fields from the regs struct.
3660         * src/hc08/gen.c (transferRegReg, genFunction, genEndFunction): use the
3661         pushReg() & pullReg() functions instead of emitcode()
3662
3663         * src/hc08/gen.c (genLabel, genhc08Code),
3664         * src/SDCCdebug.h: Added additional debugger hooks needed for DWARF
3665
3666         * src/cdbFile.c (cdbWriteLabel, cdbWriteScope): Added stubs for unneeded
3667         debugger hooks
3668
3669         * src/hc08/gen.c (genEndFunction, genhc08Code),
3670         * src/hc08/gen.h,
3671         * src/mcs51/gen.c (genEndFunction, gen51Code),
3672         * src/mcs51/gen.h,
3673         * src/ds390/gen.c (genEndFunction, gen390Code),
3674         * src/ds390/gen.h,
3675         * src/z80/gen.c (genEndFunction, genZ80Code),
3676         * src/z80/gen.h,
3677         * src/z80/z80.h,
3678         * src/pic/gen.c (genEndFunction, genpic14Code),
3679         * src/pic/gen.h,
3680         * src/pic16/gen.c (genEndFunction, genpic16Code),
3681         * src/pic16/gen.h,
3682         * src/avr/gen.c (genEndFunction, genAVRCode),
3683         * src/avr/gen.h,
3684         * src/xa51/gen.c (genEndFunction, genXA51Code),
3685         * src/xa51/gen.h,
3686         * src/cdbFile.c (cdbWriteFunction, cdbWriteEndFunction): moved cdb
3687         specific code to cdbFile.c and out of the backend code generators
3688
3689         * as/hc08/lkmain.c (main): removed OMF51 support from link-hc08
3690         * as/hc08/lkarea.c (lnkarea): areas with NOLOAD attribute default
3691         starting address is now 0
3692
3693         * as/hc08/asm.h,
3694         * as/hc08/m08pst.c,
3695         * as/hc08/asmain.c (asmbl): implemented the .sleb128 and .uleb128
3696         assembler directive for DWARF support
3697         * as/hc08/lkelf.c (elf): only increment address when rtflg[] set
3698
3699         * src/src.dsp,
3700         * src/Makefile.in,
3701         * src/SDCCdwarf2.c: preliminary DWARF (ver 2) debugger data generator
3702
3703 2004-05-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3704
3705         * src/hc08/gen.c (genJumpTab, emitcode, genhc08code): fixed stack error
3706         and inappropriate peephole optimization in jump tables
3707
3708 2004-04-30 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3709
3710         * as/hc08/m08pst.c,
3711         * src/SDCCglue.c: sdccopt works for the hc08 port now
3712
3713 2004-04-27 Bernhard Held <bernhard AT bernhardheld.de>
3714
3715         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): fixed bug #942130
3716
3717 2004-04-27 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3718
3719         * as/hc08/lkelf.c: sdccconf.h is not available in WIN32
3720
3721 2004-04-24 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3722
3723         * src/SDCCpeeph.c (replaceRule): support empty replacement peephole
3724         rules
3725         * src/SDCCmain.c,
3726         * src/SDCCglobl.h,
3727         * src/SDCCpeeph.c (getPeepLine): new option --no-peep-comments omits
3728         comments from the peephole optimizer replacement rules
3729         * src/SDCCmem.c (printAllocInfoSeg): give actual location of spilled
3730         symbols
3731         * src/SDCCcse.c (updateSpillLocation),
3732         * src/SDCCopt.c (killDeadCode, findReqv): better tracking of register
3733         equivalents
3734         * src/hc08/ralloc.c (regTypeNum): pseudo symbols must be in DATA only
3735         * src/hc08/main.c (_hc08_finaliseOptions): made pointers to stack
3736         objects far pointers
3737
3738 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3739
3740         * src/SDCCsymt.h: a missing part of my last change
3741         * src/pic/ralloc.c (regTypeNum),
3742         * src/pic16/ralloc.c (regTypeNum): fixed statement/declaration order
3743
3744 2004-04-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3745
3746         * src/SDCCicode.h,
3747         * src/SDCCicode.c (aggrToPtrDclType),
3748         * src/SDCCptropt.h,
3749         * src/SDCCptropt.c (ptrBaseRematSym, ptrPseudoSymSafe,
3750         ptrPseudoSymConvert),
3751         * src/pic/ralloc.c (regTypeNum),
3752         * src/pic16/ralloc.c (regTypeNum),
3753         * src/hc08/ralloc.c (regTypeNum),
3754         * src/ds390/ralloc.c (regTypeNum),
3755         * src/mcs51/ralloc.c (regTypeNum): check for dependancy hazards before
3756         creating pseudo symbols (fixed bugs #777768, #930484, and #933966)
3757
3758 2004-04-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3759
3760         * link/z80/lkmain.c (afile),
3761         * as/hc08/lkmain.c (afile),
3762         * as/mcs51/lkmain.c (afile): fix suggested by Maarten Brock to
3763         prevent a pointer problem when a filename has no directory and
3764         no extension specified.
3765
3766 2004-04-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3767
3768         * link/z80/lkmain.c (afile): allow periods in directory names
3769         * link/z80/lkmain.c (afile),
3770         * as/mcs51/lkmain.c (afile),
3771         * as/hc08/lkmain.c (afile): allow linker script file to have an
3772         extension other than ".lnk"
3773         * link/z80/lklex.c (getfid),
3774         * link/z80/lkmain.c (parse),
3775         * as/mcs51/lklex.c (getfid),
3776         * as/mcs51/lkmain.c (parse),
3777         * as/hc08/lklex.c (getfid),
3778         * as/hc08/lkmain.c (parse): Support comments in the linker script
3779         file on lines by themselves and after filenames
3780
3781 2004-04-20 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3782
3783         * as/link_hc08.dsp: Added as/hc08/lkelf.c to project.
3784
3785 2004-04-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3786
3787         * src/z80/peeph-z80.def: removed some peephole rules that don't
3788         work with multibyte arithmetic (fixed bug #937126)
3789         * src/mcs51/peeph.def: fixed peephole rules 150-158 to apply only
3790         to registers and not global variables
3791         * src/SDCCicode.c (geniCodeAssign, ast2iCode, geniCodePostInc,
3792         geniCodePreInc, geniCodePostDec, geniCodePreDec,
3793         geniCodeLogicAndOr, geniCodeConditional): enforce strict lvalue
3794         checking for assignments not internally generated (fixed bug #931895)
3795         * src/SDCC.y (postfix_expr): ignore typedefs when looking for a
3796         structure member (fixed bug #930072)
3797
3798 2004-04-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3799
3800         * src/SDCCmain.c (linkEdit),
3801         * src/hc08/main.c (_hc08_parseOptions),
3802         * as/hc08/Makefile.in,
3803         * as/hc08/aslink.h,
3804         * as/hc08/asm.h,
3805         * as/hc08/m08pst.c,
3806         * as/hc08/lkrloc.c (relr, rele),
3807         * as/hc08/lkarea.c (lnkarea)
3808         * as/hc08/lkmain.c (afile, parse),
3809         * as/hc08/lkelf.c: support for ELF output
3810         * as/hc08/lks19.c (s19),
3811         * as/hc08/lkihx.c (ihx): ignore areas with the NOLOAD attribute
3812
3813 2004-04-17 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3814
3815         * as/mcs51/lkihx.c: Fixed bug #899105.
3816
3817 2004-04-16 Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
3818
3819         * doc/sdccman.lyx: Added instructons on how to convert MSVC .dsw and
3820         .dsp files from Unix to DOS.
3821
3822 2004-04-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3823
3824         * doc/sdccman.lyx: removed the ANSI-C noncompliance note regarding
3825         function pointers; we have been compliant for several months now.
3826         * src/mcs51/ralloc.c (serialRegAssign): enabled part of my 2004-04-13
3827         change that was accidently commented out
3828         * src/mcs51/gen.c (freeAsmop, getFreePtr, freeForBranchAsmop, genIfxJump,
3829         genCmpEq, jmpTrueOrFalse, genCmp, genAnd, genOr, genXor, genIfx): fixed
3830         bug #922319
3831
3832 2004-04-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3833
3834         * src/hc08/gen.c: output of all of the internal debugging information
3835         is now controlled by the D() macro; it is disabled by default
3836
3837 2004-04-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3838
3839         * src/mcs51/ralloc.c (serialRegAssign, fillGaps, allocThisReg): try
3840         harder to keep the same registers during a CAST iCode
3841         * src/SDCCopt.c (optimizeCastCast, eBBlockFromiCode): casts of char to
3842         long via int can be done in a single cast, if the signedness is
3843         correct.
3844         * support/regression/tests/bug-927659.c: fixed to avoid conflict with
3845         putchar() in tinibios.c in ds390's library
3846
3847 2004-04-12 Bernhard Held <bernhard AT bernhardheld.de>
3848
3849         * src/SDCCast.c (decorateType): fixed bug #898889,
3850         cast result of a literal complement too
3851         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #930931,
3852         fixed check for bitfields
3853
3854 2004-04-11 Bernhard Held <bernhard AT bernhardheld.de>
3855
3856         * src/SDCCicode.c (geniCodeLogic): made it static,
3857         (geniCodeLogicAndOr): added in order to fix bug #905492,
3858         (ast2iCode): fixed bug #905492
3859         * support/regression/tests/bug-905492.c: added
3860         * src/SDCCast.c (decorateType): don't decorate/process parms twice,
3861         (processParms): fixed bug #927659: don't copy parms, this will clear
3862         decorated flag
3863         * support/regression/tests/bug-927659.c: added
3864
3865 2004-03-29 Bernhard Held <bernhard AT bernhardheld.de>
3866
3867         * src/SDCCast.c (addCast): don't cast float to char
3868         * device/lib/libsdcc.lib: added _memmove
3869
3870 2004-03-28 Bernhard Held <bernhard AT bernhardheld.de>
3871
3872         * device/lib/large/Makefile: fixed parallel execution by
3873         replacing `make` by `$(MAKE)`
3874
3875 2004-03-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3876
3877         * src/hc08/gen.c (genPointerGetSetOfs): correctly handle 1 byte array
3878         offsets (fixes bug #923936)
3879
3880 2004-03-26 Bernhard Held <bernhard AT bernhardheld.de>
3881
3882         * device/lib/small/Makefile: fixed parallel execution by
3883         replacing `make` by `$(MAKE)`
3884
3885 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3886
3887         * device/lib/vprintf.c (vsprintf): minor optimization, see bug #801101
3888
3889 2004-03-23  Scott Dattalo  <scott AT dattalo.com>
3890
3891         * src/pic/gen.c (genCpl): multi-byte complements were not working.
3892         * src/regression/Makefile: Regression test was not running.
3893
3894 2004-03-23 Bernhard Held <bernhard AT bernhardheld.de>
3895
3896         * src/SDCCast.c (resultTypePropagate, decorateType): avoid promotion to int for
3897         complement if possible
3898         * src/SDCCval.c (valComplement),
3899         * src/SDCCicode.c (operandOperation): fixed complement of literal
3900         * support/regression/tests/onebyte.c (testComplement): added
3901
3902 2004-03-22 Bernhard Held <bernhard AT bernhardheld.de>
3903
3904         * src/SDCCast.c (processParms): fixed bug #920866; decorateType() can
3905         return an optimized tree; actually replace actParm with the new tree
3906         * src/SDCCast.h: added some parantheses to remove side effects
3907         * support/regression/tests/bug-920866.c
3908
3909 2004-03-21  Scott Dattalo  <scott AT dattalo.com>
3910         * src/pic/gen.c, src/pic/gen.h, src/pic/genarith.c, src/pic/pcode.c:
3911         Bit operands were not being handled properly in the pic14 port.
3912         (now src/regression/add.c passes again).
3913
3914 2004-03-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3915
3916         * src/SDCC.y (labeled_statement): case and default no longer require
3917         a following statement (RFE #893037)
3918
3919 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3920
3921         * src/mcs51/gen.c (pushSide, genSignedRightShift, genDjnz, geniPush):
3922         use MOVA macro to avoid "mov a,acc" when peephole optimizer is
3923         disabled (fixes bug #916294)
3924         * sim/ucsim/s51.src/mov.cc (inst_mov_a_addr): Throw an error on
3925         "mov a,acc"; patch provided by Lenny Story
3926         * device/include/mc68hc908gp32.h: header contibuted by Juan Gonzalez
3927
3928 2004-03-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3929
3930         * src/mcs51/gen.c (genFunction): optimize RECEIVE in reentrant
3931         functions
3932         * src/ds390/gen.c (genFunction, genEndFunction),
3933         * src/ds390/ralloc.c (ds390_assignRegisters),
3934         * src/mcs51/gen.c (genFunction, genEndFunction, mcs51_assignRegisters):
3935         * src/mcs51/ralloc.c (mcs51_assignRegisters): Skip optimizing registers
3936         pushed if there are parameters passed on the stack. Also, a cleaner
3937         way to decide if r0/r1 should be pushed/popped. (Together they fix
3938         bug #918693)
3939
3940 2004-03-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3941
3942         * doc/sdccman.lyx,
3943         * device/lib/mcs51/crtpagesfr.asm,
3944         * device/lib/mcs51/crtxinit.asm,
3945         * device/lib/mcs51/crtxstack.asm: Changed name of _PAGESFR to _XPAGE
3946         to avoid confusion with Si Lab's SFRPAGE register.
3947
3948 2004-03-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3949
3950         * src/SDCCglue.c (emitMaps): allow public sfr variables
3951         * src/SDCCglue.c (initialComments): include compiler build date
3952         with compiler version and put the timestamp of the generated
3953         assembly file on a serperate line to be less confusing.
3954         * src/port.h: added genInitStartup hook
3955         * src/avr/main.c,
3956         * src/ds390/main.c,
3957         * src/hc08/main.c,
3958         * src/pic/main.c,
3959         * src/pic16/main.c,
3960         * src/xa51/main.c,
3961         * src/z80/main.c: genInitStartup initialize as NULL (default to
3962         historical behaviour)
3963         * src/SDCCglue.c (glue): _sdcc_gsinit_startup is now port specific.
3964         * src/mcs51/main.c: (_mcs51_genInitStartup, _mcs51_genExtraAreas,
3965         _mcs51_genXINIT, _mcs51_genRAMCLEAR): link initialization code from the
3966         library instead of hard coding it into the compiler.
3967         * support/regression/ports/mcs51-stack-auto/spec.mk,
3968         * src/SDCCmain.c (linkEdit): added mcs51.lib to the link libraries
3969         * device/lib/mcs51/Makefile,
3970         * device/lib/small/Makefile,
3971         * device/lib/large/Makefile,
3972         * device/lib/mcs51/crtpagesfr.asm,
3973         * device/lib/mcs51/crtstart.asm,
3974         * device/lib/mcs51/crtxclear.asm,
3975         * device/lib/mcs51/crtxinit.asm,
3976         * device/lib/mcs51/crtclear.asm,
3977         * device/lib/mcs51/crtxstack.asm: move most of the mcs51 C runtime
3978         startup/initialization out of src/SDCCglue.c and src/mcs51/main.c
3979         and into user configurable files.
3980         * device/lib/clean.mk: clean mcs51 directory too
3981         * support/regression/tests/longlit.c: added static to T1 declaration
3982         * doc/sdccman.lyx: documented _PAGESFR sfr for customizing pdata
3983         accesses in the initialization code
3984
3985 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3986
3987         * device/include/mc68hc908qy.h: corrected declarations of FLBPR and
3988         OSCTRIMVAL as noted in bug #916008
3989
3990 2004-03-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
3991
3992         * src/SDCCloop.c (basicInduction): fixed bug with loop induction
3993         in loops with multiple exits (reported as incorrect registers
3994         used by Martin Helmling in Sdcc-user list)
3995
3996 2004-03-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
3997
3998         * src/ds390/main.c (_ds390_genAssemblerPreamble): cosmetic change,
3999         made ds390 register extensions look less like error messages
4000
4001 2004-03-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4002
4003         * src/SDCCglue.c (printIvalPtr): fixed bug with pointer initializer
4004         reported by Adam Wozniak in Sdcc-user list
4005
4006 2004-03-10 Bernhard Held <bernhard AT bernhardheld.de>
4007
4008         * src/SDCCast.c (decorateType): fixed with bug and promotion in
4009         arithmetic optimizations, added debug output
4010
4011 2004-03-09 Bernhard Held <bernhard AT bernhardheld.de>
4012
4013         * device/lib/time.c (mktime): fixed bug reported by Bert Thomas
4014         * sdcc.spec: updated and split sdcc into 3 rpms
4015         * src/SDCCast.c (decorateType): &|^ don't need addCast(); addCast() is
4016         needed for literals of LEFT_OP and '+'
4017         * src/SDCCicode.c (geniCodeLogic): I must have been braindead when I
4018         introduced RESULT_TYPE_NOPROM
4019         (geniCodeMultiply): fixed logic for decision if mul is optimized to
4020         left shift
4021         * src/SDCCsymt.c (computeType): op is int; added RESULT_TYPE_OTHER;
4022         limited promotion to int only for '*'
4023         * src/SDCCsymt.h (computeType): op is int, removed RESULT_TYPE_NOPROM
4024
4025 2004-03-09 Hans Dorn <hjdorn AT users.sourceforge.net>
4026
4027         * src/pic16/gen.c (genSkip),
4028         (genc16bit2lit), (gencjneshort): commented out
4029         (is_LitOp): new helper function, checks operand type
4030         (genCmpEq): rewritten
4031
4032 2004-03-08 Bernhard Held <bernhard AT bernhardheld.de>
4033
4034         * support/regression/tests/bug-908454.c: added
4035
4036 2004-03-07 Bernhard Held <bernhard AT bernhardheld.de>
4037
4038         * src/SDCCast.c (addCast): fixed bug #908454 by promoting bits to char
4039         * src/SDCCicode.c (usualBinaryConversions): op needs int type
4040         (geniCodeCast): cosmetic, don't preserve bit storage class
4041         (geniCodeLeftShift): added promotion
4042         (geniCodeLogic): fixed regression
4043         * src/SDCCsymt.c (computeTypeOr): accept bits too
4044         (compareType): 2nd part of fix for bug #908454, needed for bitfields
4045
4046 2004-03-07  Borut Razem <borut.razem AT siol.net>
4047
4048         * support/Util/findme.c: alloca() replaced with malloc()/free() pair
4049
4050 2004-03-06 Vangelis Rokas <vrokas AT otenet.gr>
4051
4052         * src/pic16/ralloc.c (pic16_genPackRegisters): reverted to old
4053         version of pic16_genPackRegisters which does not check if ic is a
4054         CAST operator,
4055         * src/pic16/gen.c (ifxForOp): disabled new and untested code in
4056         function cause string1.c regression test fails
4057
4058 2004-03-06 Bernhard Held <bernhard AT bernhardheld.de>
4059
4060         * sim/ucsim/configure.in,
4061         * sim/ucsim/configure,
4062         * sim/ucsim/doc/Makefile.in: use docdir
4063         * src/SDCC.y: fixed sbit atrributes
4064         * src/SDCCast.c (getResultTypeFromType): added support for bitfields
4065         * src/SDCCast.c (decorateType): |^& need special promotion handling
4066         * src/SDCCast.h,
4067         * src/SDCCsymt.h: moved definition of RESULT_TYPE
4068         * src/SDCCsymt.h (computeType),
4069         * src/SDCCicode.c: computeType() needs op
4070         * src/SDCCsymt.c (checkTypeSanity),
4071         * doc/sddman.lyx: "plain" bitfields are unsigned
4072         * src/SDCCsymt.c (computeTypeOr): added
4073         * src/SDCCsymt.c (computeType): added support for bitfields, fixed
4074         |^& ops
4075         * src/SDCCval.c (val*): computeType() needs op
4076         * src/SDCCval.c (valCastLiteral): fixed casting of bitfields
4077         * support/regression/tests/onebyte.c: added tests for |^&
4078
4079 2004-03-06 Hans Dorn <hjdorn AT users.sourceforge.net>
4080
4081         * src/pic16/gen.c: (genpic16Code) use copy of printILine's output
4082         for writing icode into asm output.
4083
4084 2004-03-05 Vangelis Rokas <vrokas AT otenet.gr>
4085
4086         * src/pic16/device.c: added some debug lines enabled
4087         with macro DEBUG_CHECK,
4088         * src/pic16/genarith.c: more debug in genPlus,
4089         * (pic16_genUMult8XLit_16, pic16_genUMult8X8_16): removed,
4090         * (pic16_genUMult16X16_16, pic16_genUMult16XLit_16): NEW,
4091         * src/pic16/gen.c: added prototypes for pic16_genMult16X16_16,
4092         * (aopForSym): onStack symbols are re-placed in data memspace,
4093         and onStack flag is cleared,
4094         * (pic16_popGetTempReg, pic16_popReleaseTempReg): modified to
4095         copy temporary pcodeop,
4096         * (genPcall): added warning for not updating PCLATU,
4097         * (genFunction): removed test with IFFUNC_CALLEESAVES, its
4098         always true for pic16 port,
4099         * (genMultOneWord): NEW, supports integer multiplication,
4100         * (genMult): modified to call genMultOneWord,
4101         * (ifxForOp): added warning when return NULL,
4102         * src/pic16/glue.c (pic16emitRegularMap): symbol implicit
4103         flag is set before call to operandFromSymbol for implicit
4104         added structures,
4105         * src/pic16/main.c (_pic16_finaliseOptions): options.float_rent,
4106         options.intlong_rent are set by default,
4107         * (_hasNativeMulFor): modified to allow port generation of integer
4108         multiplication,
4109         * src/pic16/ralloc.c (pic16_allocDirReg): commented out line which
4110         set regtype to REG_SFR for all registers, restricting seting the
4111         accessBank flag for registers 0<= r < 0x80 and 0xf80<=r<=0xfff,
4112
4113 2004-03-05 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4114
4115         * src/mcs51/peephole.def: added 251.b and 253.x. 253.x are applied
4116         more than 500 times in the regression tests
4117
4118 2004-03-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4119
4120         * support/Util/SDCCerr.h,
4121         * support/Util/SDCCerr.c,
4122         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4123         enumerator_list),
4124         * src/SDCCsymt.c (addSymChain): show location of oriignal definition
4125         for symbol conflicts.
4126         * support/valdiags/tests/enum.c,
4127         * support/valdiags/tests/tentdecl.c,
4128         * support/valdiags/tests/struct.c: expect possible error messages
4129         referring to original symbol definitions.
4130         * src/SDCC.y (struct_or_union_specifier, struct_declarator),
4131         * src/SDCCsymt.h,
4132         * src/SDCCsymt.c (promoteAnonStructs): support anonymous struct/union
4133
4134 2004-03-03 Hans Dorn <hjdorn AT users.sourceforge.net>
4135
4136         * src/pic16/gen.c (gencjne): fixed for right=REG / left=LIT
4137
4138 2004-02-03 Vangelis Rokas <vrokas AT otenet.gr>
4139
4140         * src/pic16/ralloc.c (newReg): fixed bug #908929
4141
4142 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4143
4144         * src/ds390/gen.c: added missing #include "main.h"
4145
4146 2004-03-02 Vangelis Rokas <vrokas AT otenet.gr>
4147
4148         * src/pic16/device.c (checkAddSym): NEW, adds a symbol to set while
4149         checking if symbol is already in set,
4150         * src/pic16/device.h: prototype for checkAddSym,
4151         * src/pic16/gen.c: (_G): added entry interruptvector,
4152         * (assignResultValue): removed some commented out lines,
4153         * (genFunction): check for ISR via sym->type, absolute section for
4154         interrupt code is created via a new pBlock, the goto instruction is
4155         placed now correctly at the interrupt vector position, changed all
4156         references from ivec to _G.interruptvector,
4157         * WREG,STATUS,BSR are not saved in stack upon an entry to interrupt
4158         is the interrupt is a high priority one, same for return from ISR,
4159         * src/pic16/glue.c: changed all calls of addSetHead for publics and
4160         externs to calls of checkAddSym,
4161         * src/pic16/pcode.c (pic16_pBlockConvert2*): emit warning when
4162         pic16_pcode_verbose flag is set,
4163         * src/pic16/pcode.h: extern to pic16_pcode_verbose,
4164         * src/pic16/pcoderegs.c: message about how many registers are saved
4165         will only be emitted if pic16_pcode_verbose flag is set,
4166
4167 2004-03-02 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4168
4169         * src/ds390/ralloc.h,
4170         * src/ds390/ralloc.c (ds390_regWithIdx),
4171         * src/ds390/gen.c (emitcode),
4172         * src/ds390/main.h,
4173         * src/ds390/main.c (instructionSize, ds390newAsmLineNode, updateOpRW,
4174         ds390opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4175         ds390operandCompare, getRegsRead, getRegsWritten,
4176         initializeAsmLineNode): customized instruction size calculation for
4177         ds390, started basis for some register optimizations
4178         * src/ds390/gen.c (gen390Code, emitcode): associate iCodes with
4179         corresponding assembly output
4180         * src/ds390/gen.c (genFunction, genEndFunction): added case to handle
4181         missing push/pop of r0/r1. Optimized push/pops
4182
4183 2004-03-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4184
4185         * src/mcs51/main.c (instructionSize): fixed ACALL size
4186         * src/mcs51/main.c (updateOpRW): fixed bug with @dptr, @a+dptr operands
4187
4188 2004-03-01 Vangelis Rokas <vrokas AT otenet.gr>
4189
4190         * src/pic16/device.c (pic16_dump_section): fixed a bug that allowed
4191         the sorting of rlist with NULL elements
4192         * (print_idataType, print_idata): NEW to create idata sections
4193         * src/pic16/device.h: idataSymSet new variable
4194         * src/pic16/gen.c (genFunction): fixed some bugs in string
4195         comparing, improved the absolute section creation for ISRs,
4196         added FSR0L/FSR0H in registers that are saved in an ISR,
4197         * (genInline): fixed the processing of inline snippets,
4198         now they undergo no process by the peephole optimizer
4199         * src/pic16/glue.c (pic16emitRegularMap): symbols with initialiser
4200         are placed in idataSymSet,
4201         * (pic16emitStaticSeg): extern symbols are added in externs,
4202         * src/pic16/ralloc.c (pic16_allocDirReg): work around to reduce bank
4203         switching when aboslute variables are placed in access bank memory
4204         * (pic16_writeUsedRegs): added call to pic16_dump_idata,
4205         * (packRegsForSupport,packRegsForAccUse,packRegsForOneuse):
4206         commented out with #if,
4207         * (pic16_packRegisters): reintroduce the check for CAST because some
4208         symbols are not correctly handled,
4209         * src/pic16/pcode.h: changed the definition of pCodeAsmDir to hold a
4210         pCodeInstruction instead of pCode,
4211         * src/pic16/pcode.c (pic16_newpCodeAsmDir): modified for the new
4212         pCodeAsmDir definition,
4213         * (pic16_pCode2str, genericPrint): when an AsmDir pcode has a NULL
4214         directive, then the argument directive is emitted without the leading
4215         tab, hack for inline labels which must be in the first column,
4216         * (compareLabel,pic16_findNextInstruction),
4217         * (pic16_findPrevInstruction): added case for PO_ASMDIR,
4218         * (insertBankSwitch): modified for the new pCodeAsmDir,
4219
4220 2004-03-01 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4221         patch applied by Vangelis Rokas <vrokas AT otenet.gr>
4222
4223         * src/pic16/gen.c (pic16_popGet): case PO_DIR, adds the offset to
4224         instance,
4225         * (pushSide): commented out with #if,
4226         * (assignResultValue): fixed some typos in saving
4227         registers,
4228         * (genPcall): FIXED and sync'ed with genCall,
4229         * (genDataPointerGet,genDataPointerSet): using offset not leoffset
4230         * (genNearPointerGet): fixed to handle some more cases,
4231         implementation scheme via table reads,
4232         * (genConstPointerGet): modified to access code memory correct,
4233         * (genCodePointerGet,genNearPointerSet,genGenPointerSet): modified
4234         and improved to handle some cases
4235         * glue.c (printIvalType,printIvalChar,emitStaticSeg): use "DB"
4236         instead of "RETLW" for init data
4237         * src/pic16/ralloc.c (pic16_allocDirReg): warning when a symbol is
4238         not IN_DIRSPACE, work around to reduce bank switching when aboslute
4239         variables are placed in access bank memory (<0x80 and >=0xf80),
4240         * src/pic16/pcode.c: added SFRs TBLPTR, TABLAT, added opcodes TBLRD,
4241         TBLRD_POSTINC,TBLRD_POSTDEC,TBLRD_PREINC,TBLWT,TBLWT_POSTINC,
4242         TBLWT_POSTDEC,TBLWT_PREINC
4243         * Fixed initialisation of BSR, set "alias" for SSAVE to "0"
4244         * (pic16_emitDB,pic16_flushDB): New functions to generate "DB"
4245         directives
4246         * (pic16_pCodeConstString): use "DB" instead of "RETLW"
4247         * src/pic16/pcode.h: added TBLRD*,TBLWT*, added pic16_emitDB,
4248         pic16_flushDB, made pic16_newpCodeAsmDir public, added TBLPTR, TABLAT
4249         * src/pic16/ralloc.h: added IDX_BSR,IDX_TBLPTR*,IDX_TABLAT
4250
4251 2004-02-29  Borut Razem <borut.razem AT siol.net>
4252
4253         * src/Makefile.in, src/SDCCutil.c, support/Util/findme.c,
4254         support/Util/findme.h, support/Util/system.h: enhance binary relative
4255         search for lib and include by using findProgramPath()
4256
4257 2004-02-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4258
4259         * src/SDCCpeeph.h,
4260         * src/SDCCpeeph.c (pcDistance),
4261         * src/port.h,
4262         * src/mcs51/ralloc.h,
4263         * src/mcs51/ralloc.c (mcs51_regWithIdx),
4264         * src/mcs51/main.h,
4265         * src/mcs51/main.c (instructionSize, asmLineNode, updateOpRW,
4266         mcs51opcodeCompare, asmLineNodeFromLineNode, getInstructionSize,
4267         mcs51operandCompare, getRegsRead, getRegsWritten): made instruction
4268         size calculation port specific, started basis for some register
4269         optimizations
4270         * src/mcs51/gen.c (genFunction, genEndFunction): added case to handle
4271         missing push/pop of r0/r1. Optimized push/pops
4272         * src/mcs51/ralloc.c (packregisters): fixed bug #727095
4273         * device/lib/_modsint.c (_modsint),
4274         * device/lib/_modslong.c (_modslong): fixed sign of result in non-asm
4275         and stack version so regression tests pass
4276
4277 2004-02-26 Bernhard Held <bernhard AT bernhardheld.de>
4278
4279         * src/Makefile.in (dep): include SLIBOBJS in dependency check
4280         * src/SDCCast.c (decorateType): catch another small optimization
4281         with '?' operator
4282         * src/SDCCsymt.c (computeType): added comments and cosmetic changes
4283         * src/SDCCval.c (valMult, valDiv, valMod, valPlus, valMinus, valShift):
4284         modified to finally use computeType() all over SDCC,
4285         see Feature Request #877103
4286         * src/SDCCval.h: cosmetic
4287         * src/SDCCicode.c (operandOperation): fixed EQ_OP bug, now same as in
4288         valCompare(); regression tested in muldiv.c
4289         * support/regression/tests/muldiv.c (testMod): mod sign follows
4290         dividend only
4291
4292 2004-02-23 Bernhard Held <bernhard AT bernhardheld.de>
4293
4294         * src/SDCCast.c (decorateType): fixed bug #902362
4295         * doc/INSTALL.txt: fixed install instructions for win32
4296
4297 2004-02-21 Bernhard Held <bernhard AT bernhardheld.de>
4298
4299         * device/include/Makefile.in (install): fixed by replacing spaces
4300         by tabs
4301         * doc/README.txt,
4302         * doc/INSTALL.txt: updated for release
4303         * doc/sdccman.lyx: added warning for --xstack being buggy
4304
4305 2004-02-20 Bernhard Held <bernhard AT bernhardheld.de>
4306
4307         * src/pic16/ralloc.c (packRegsForAccUse):  disabled functions with #if
4308         to eliminate build warnings.
4309         * src/pic16/gen.c (pic16_popGet): fixed for gcc 2.95.4
4310
4311 2004-02-20 Vangelis Rokas <vrokas AT otenet.gr>
4312            Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4313
4314         * doc/sdccman.lyx: removed PIC16 from PIC16 Port Specific Options,
4315         removed -penable-stack, added comment for stack pragma, added
4316         warning for not initializing the stack/frame registers, removed
4317         comment at interrupts section
4318
4319         Stack is made permanent, there is no ability to disable stack usage.
4320         * src/pic16/device.h,
4321         * src/pic16/device.c: removed all references to USE_STACK macro,
4322         * src/pic16/device.c (pic16_dump_section): when no elements in
4323         rlist, free rlist before return,
4324         * (pic16_dump_int_registers): NEW, internal registers are a new set
4325         of general purpose registers reused by each function,
4326         * (checkAddReg): returns 1 if registers is added to set,
4327         * (pic16_groupRegistersInSection): when a registers is of type
4328         PO_GPR_TEMP add it in pic16_int_regs and not in pic16_rel_udata,
4329         * src/pic16/device.h: memRange and Assigned Memory are deleted,
4330         SRCASECMP macro is moved here from device.c
4331         * src/pic16/genarith.c (pic16_pCodeOpType): added cases for
4332         PO_PCLATU, PO_PRODL, PO_PRODH,
4333         * (pic16_pCodeOpType, genMinus,
4334         changed compares to "a" register, with AOP_ACC,
4335         * (pic16_genPlus): fixed some bugs and indented properly,
4336         * (pic16_addSign): changed size to size+offset in the MOVWF
4337         instruction,
4338         * (pic16_genUMult8XLit_8): NEW, uses processor MULLW instruction to
4339         multiply 8-bit operand by literal, result is 8-bit,
4340         * (pic16_genUMult8X8_8): NEW, uses processor MULWF instruction to
4341         multiply 2 8-bit operand, result is 8-bit,
4342         * (pic16_genMult8X8_8): modified to call genUMult8X*_8 functions and not
4343         genUMult8X*_16,
4344         * src/pic16/gen.c: changed accUse to contain WREG only,
4345         * (pic16_emitcomment): renamed to pic16_emitpcomment,
4346         * (aopForSym): allocated dir register when IN_DIRSPACE(space) is,
4347         true, do not use immediate addressing any more unless sym is a
4348         pointer in codespace,
4349         * (aopForRemat): do not use immediate addressing when symbol not in
4350         codespace and when symbol's address is requested,
4351         * (aopOp): for-loop in if(sym->accUse) is modified for the new
4352         accUse size (= 1),
4353         * (aopGet): added case for AOP_ACC and don't return "accumulator
4354         bug" but WREG instead,
4355         * (popGetTempReg): pushes contents of temporary register in stack,
4356         * (popReleaseTempReg): pops contents of temporary register from
4357         stack. Use popGetTempReg/popReleaseTempReg in aligned pairs,
4358         * (pic16_popGet): separated case AOP_ACC to return register WREG
4359         from processor registers, AOP_PCODE not checks if pcop is PO_DIR
4360         or PO_IMMEDIATE and initializes their instance/offset appropriately,
4361         * The whole issue with aopForSym,aopForRemat,popGet) is to minimize
4362         the use of immediate pointers to certain cases only.
4363
4364         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): use pic16_popGet2p,
4365         * (pic16_loadFromReturn, pic16_storeForReturn: NEW,
4366         * (assignResultValue, genCall, genRet): modified to use the new
4367         function return value scheme with WREG,PRODL,PRODH,FSR0L and FSR0,
4368         genPcall is still broken,
4369         * (genFunction): added code to create 'A' type pBlocks when
4370         interrupt functions are generated, code not extensively tested yet,
4371         ISRs push WREG,STATUS,BSR,PRODL,PRODH,FSR0L,FSR0H registers on stack,
4372         * (genEndFunction): modified so ISRs pop stored registers from stack,
4373         * (genMultOneByte): cleanup,
4374         * (AccRsh): added flag andmask, to and result with appropriate mask,
4375         * (genUnpackBits,genPackBits): fixed and can handle bit fields,
4376         * (genDataPointerGet): fixed and reenabled its use,
4377         * (genNearDataPointerGet): bugs fixed,
4378         * (genDataPointerSet): bugs fixed,
4379         * src/pic16/genutils.c: added functions pic16_DumpValue,pic16_DumpAop,
4380         pic16_DumpSymbol, pic16_DumpOp,
4381         * src/pic16/genutils.h: function prototypes for the above functions,
4382         * src/pic16/glue.c: new flags initsfpnt, to initialize stack/frame
4383         pointers,
4384         * (pic16emitRegularMap): many many many improvements, but needs a
4385         major cleanup,
4386         * src/pic16/main.c: enable_stack in pic16_options is removed,
4387         * (_pic16_parseOptions): removed command line options -penable-stack,
4388         * (_process_pragma): emit stack symbol only when stack pragma is
4389         processed,
4390         * src/pic16/pcode.c: pic16_pc_fsr0 is removed, all operations are
4391         redirected to FSR0L/FSR0H pair,
4392         * (pic16_get_op, pic16_get_op2): modifications and improvements,
4393         * (pic16_getRegFromInstruction, pic16_getRegFromInstruction2): added
4394         cases PO_PRODL,PO_PRODH, pic16_getRegFromInstruction2 returns sane
4395         for immediates,
4396         * (insertBankSwitch): modified to handle cases like: (alfa + 1)
4397         * (dumpPicOptype): NEW,
4398         * src/pic16/pcode.h: added PO_PCLATU,PO_PRODL,PO_PRODH in enum,
4399         * src/pic16/pcoderegs.c (pCodeRegMapLiveRangesInFlow): fixed bug
4400         with movff instruction,
4401         * src/pic16/ralloc.c: renamed typeRegWithIdx to pic16_typeRegWithIdx,
4402         added pic16_int_regs, some packRegsFor* functions are commented out,
4403         because produce errors,
4404         * src/pic16/NOTES: minor modifications
4405
4406 2004-02-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4407
4408         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c, as/mcs51/lkmain.c,
4409         as/mcs51/lkmem.c, src/SDCCglob.h, src/SDCCmain.c: added options --stack-size and
4410         --pack-iram.
4411         * doc/sdccman.lyx: described options --stack-size and --pack-iram.
4412         * as/mcs51/lkaomf51.c: fixed bug #895763
4413
4414 2004-02-17 Bernhard Held <bernhard AT bernhardheld.de>
4415
4416         * device/include/c8051f320.h: added. Contributed by Maarten Brock.
4417
4418 2004-02-17 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4419
4420         * doc/sdccman.lyx: added details about the HC08 storage classes and
4421         interrupts, fixed the register usage info for z80 & gbz80
4422
4423 2004-02-17 Vangelis Rokas <vrokas AT otenet.gr>
4424
4425         * doc/sdccman.lyx: added more pic16 port documentation
4426         * device/include/pic16/: added header pic18fregs.h
4427
4428 2004-02-16 Bernhard Held <bernhard AT bernhardheld.de>
4429
4430         * doc/sdccman.lyx: added Vangelis' contribution
4431
4432 2004-02-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4433
4434         * src/SDCClrange.c (rlivePoint): live range of SEND operand should
4435         extend to the next CALL or PCALL, not just to the next CALL.
4436
4437 2004-02-16 Vangelis Rokas <vrokas AT otenet.gr>
4438
4439         * src/pic16/gen.c (genInline): fixed bug #896482 with inline assembly
4440
4441 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4442
4443         * src/mcs51/ralloc.c (packRegsForAssign, reassignAliasedSym): fixed
4444         bug #895752 and a better fix for bug #716790
4445
4446 2004-02-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4447
4448         * src/SDCCsymt.c (processFuncArgs): fixed bug #896796
4449
4450 2004-02-14 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4451
4452         * doc/sdccman.lyx: minor changes, minor changed
4453
4454 2004-02-13 Bernhard Held <bernhard AT bernhardheld.de>
4455
4456         * src/SDCCicode.c (usualBinaryConversions): removed pic16 from ports
4457         which can't handle SDCC_NEWONEBYTEOPS,
4458         (geniCodeMultiply): removed conversion from mult to shift for pic14
4459         and pic16
4460
4461 2004-02-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4462
4463         * src/hc08/gen.h,
4464         * src/hc08/gen.c (storeRegToAop, aopOp, aopAdrStr, accopWithAop,
4465         rmwWithAop): Ported my 2003-10-02 fix for bug #663539 to the hc08,
4466         thus fixing bug #895406
4467
4468 2004-02-11 Bernhard Held <bernhard AT bernhardheld.de>
4469
4470         * device/lib/_modsint.c,
4471         * device/lib/_modslong.c: sign follows divisor only
4472         * src/hc08/gen.c (genMultOneByte): if result size is 1,
4473         signs or signedness can be ignored
4474         * src/SDCCast.c (addCast): cosmetic - added lineno to CAST
4475         * src/SDCCast.c (resultTypePropagate): added even more ops: +, - and *,
4476         added optimization for IFX,
4477         (decorateType): Mult/Div/ModOneByte ops can handle all kind of signed
4478         arguments;
4479         reenabled optimization for IFX, which was removed on 2004-01-11
4480         * src/SDCCast.h: added return type IFX
4481         * src/SDCCicode.c: Mult/Div/ModOneByte ops can handle all kind of signed
4482         arguments with 8 or 16 bit results; pic14 and pic16 ports use old
4483         promotion behaviour; env. var. SDCC_NEWONEBYTEOPS selects the new,
4484         SDCC_OLDONEBYTEOPS selects the old behaviour
4485         * src/SDCCsymt.c (computeType): type2 can be NULL (for LEFT_OP);
4486         changed again and commented promotion rule
4487         * src/SDCCval.c (valDiv): promotion no longer necessary
4488         * src/ds390/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte),
4489         * src/mcs51/gen.c (genMultOneByte) (genDivOneByte) (genModOneByte):
4490         rewritten
4491         * support/regression/tests/onebyte.c: added
4492
4493 2004-02-11 Vangelis Rokas <vrokas AT otenet.gr>
4494
4495         * gen.c (genInline): reverted to old code for assemnling inline
4496         code because of bug reported James Chadd
4497
4498 2004-02-10 Vangelis Rokas <vrokas AT otenet.gr>
4499
4500         * ralloc.h: missing declarations from previous patch,
4501         seems that patch for ralloc.h was never applied, fixed
4502
4503 2004-02-10 Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4504            patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4505
4506         * pcode.c,
4507         * pcode.h,
4508         * ralloc.h: added FSR0L, FSR0H and other missing PIC16 SFR's for
4509         indirect addressing. Marked FSR0 as deprecated
4510         * gen.c (pointerCode): commented out, not needed now
4511         (pic16_popGet2p): new MOVFF helper function
4512         (genGenPointerGet),
4513         (genGenPointerSet): reimplemented with MOVFF and POSTINC0
4514         (shiftRLong): removed duplicate debugging info
4515
4516 2004-02-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4517
4518         * src/ds390/gen.c (genNearPointerGet),
4519         * src/mcs51/gen.c (genNearPointerGet): allow the genDataPointerGet()
4520         optimization with bits, but not bitfields.
4521         * src/ds390/ralloc.c (packRegisters),
4522         * src/mcs51/ralloc.c (packRegisters): fixed bug #884453 & #880832
4523
4524 2004-02-09 Bernhard Held <bernhard AT bernhardheld.de>
4525
4526         * src/SDCCcse.c (algebraicOpts): copy operands before modification
4527
4528 2004-02-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4529
4530         * src/SDCCsymt.h,
4531         * src/SDCCicode.c (operandFromSymbol),
4532         * src/mcs51/ralloc.c (verifyRegsAssigned, serialRegAssign),
4533         * src/ds390/ralloc.c (verifyRegsAssigned, serialRegAssign),
4534         * src/z80/ralloc.c (verifyRegsAssigned, serialRegAssign),
4535         * src/hc08/ralloc.c (verifyRegsAssigned, serialRegAssign),
4536         * src/pic/ralloc.c (verifyRegsAssigned, serialRegAssign),
4537         * src/pic16/ralloc.c (verifyRegsAssigned, serialRegAssign): fixed
4538         bug #892038
4539         * src/SDCCast.c (createIvalStruct, createIvalArray, gatherAutoInit),
4540         * src/SDCCglue.c (emitRegularMap, printIvalStruct, printIvalArray,
4541         printIvalCharPtr, printIvalPtr, printIval, emitStaticSeg, emitOverlay)
4542         * src/SDCCsymt.c (newSymbol),
4543         * src/SDCC.y (struct_or_union_specifier, enum_specifier,
4544         enumerator_list),
4545         * src/SDCCval.h,
4546         * src/SDCCval.c (newiList): fixed bug #885705
4547
4548 2004-02-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
4549
4550         * doc/sdccman.lyx: added section 3.1.4: sdcclib.
4551         * as/mcs51/lkmem.c: report the size of the stack in .mem file.
4552
4553 2004-02-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4554
4555         * device/include/c8051f120.h,
4556         * device/include/c8051f300.h,
4557         * device/include/c8051f310.h: added/updated header files for Silicon
4558         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4559         * doc/sdccman.lyx: minor changes, recommended diff -Naur and diff -u
4560         in new section Submitting patches
4561
4562 2004-02-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4563
4564         * src/mcs51/gen.c (genNearPointerGet, genPagedPointerGet,
4565         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4566         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4567         genGenPointerSet),
4568         * src/ds390/gen.c (genNearPointerGet, genPagedPointerGet,
4569         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4570         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4571         genGenPointerSet),
4572         * src/pic16/gen.c (genNearPointerGet, genPagedPointerGet,
4573         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4574         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4575         genGenPointerSet),
4576         * src/pic/gen.c (genNearPointerGet, genPagedPointerGet,
4577         genFarPointerGet, genCodePointerGet, genGenPointerGet,
4578         genNearPointerSet, genPagedPointerSet, genFarPointerSet,
4579         genGenPointerSet): fixed bug #892400
4580         * src/pic16/gen.c (genSkipz, AccRol): disabled functions with #if 0
4581         to eliminate build warnings.
4582         * src/SDCCast.c (processParms),
4583         * src/SDCC.y (function_declarator2, declarator2_function_attributes):
4584         fixed bug 751859
4585         * support/valdiag/valdiag.py: added GCC to the list of defines active
4586         when compiling with gcc
4587
4588 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4589
4590         * support/Util/SDCCerr.h,
4591         * support/Util/SDCCerr.c,
4592         * src/SDCCast.c (decorateType, sizeofOp): complain when sizeof is used
4593         with an incomplete type (fixed bug #883734)
4594         * src/SDCCicode.c (geniCodeCast): fixed bug #890510
4595
4596 2004-02-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4597
4598         * src/pic16/gen.c (genCmpEq, shiftRLong): fixed declarations
4599
4600 2004-02-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4601
4602         * src/SDCCast.c (decorateType),
4603         * src/SDCCicode.c (geniCodeParms, geniCodeCall): fixed bugs in my ANSI
4604         function pointer implementation
4605         * support/regression/tests/funptrs.c: added tests to verify both forms
4606         of function pointers work correctly. Added tests to verify parameters
4607         are passed in the correct order.
4608
4609 2004-02-06  Vangelis Rokas <vrokas AT otenet.gr>
4610
4611         * device.c (regCompare): registers are sorted by ascending
4612         address and increasing size,
4613         * main.c (_pic16_finaliseOptions): removed the declaration
4614         of compiler macro MCU. Now a macro of the format pic18fxxxx
4615         will be defined from the command line
4616
4617 2004-02-06  Hans-Juergen Dorn <hans.dorn AT apl-landau.de>
4618             patch committed by Vangelis Rokas <vrokas AT otenet.gr>
4619
4620         * pcode.c (pic16initMnemonics): fixed typo in assignment to PCOP_RLNCF
4621         PCOP_RLCF was overwritten!
4622         * gen.c (genSkip): commented out calls to pic16_emitcode,
4623         * (genCmpEQ): fixed "long" compares, only high word did get compared,
4624         * (genlshTwo),
4625         * (genRRC): added debugging info,
4626         * (shiftL2Left2Result): Fixed bug, if offr > offl. Result got
4627         overwritten while shifting,
4628         * (shiftR2Left2Result): Fixed bug, if offr < offl. Result got
4629         overwritten while shifting,
4630         * (AccLsh),
4631         * (AccRsh),
4632         * (shiftLLeftOrResult),
4633         * (shiftRLeftOrResult),
4634         * (shiftRLong),
4635         * (shiftLLong): Implemented with pic16_emitpcode
4636         * (genlshFour): Replaced pic16_aopPut with pic16_emitpcode,
4637         * (genLeftShift): Fixed bug, operand for shift by variable always
4638         was "and"ed with 0x0f,
4639         * (genLeftShiftLiteral),
4640         * (genrshTwo),
4641         * (genRightShiftLiteral): added debugging info,
4642         * (genrshFour): added comment,
4643         * (genRightShift): determined signedness from operand "left"
4644         instead of "result"
4645
4646 2004-02-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4647
4648         * src/SDCCicode.c (geniCodeParms),
4649         * src/SDCCast.c (decorateType, processParms): support for ANSI-style
4650         function pointers, fixed function pointer bugs #861242 and #861896
4651
4652 2004-01-31 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4653
4654         * device/include/c8051f000.h,
4655         * device/include/c8051f120.h,
4656         * device/include/c8051f300.h: added header files for Silicon
4657         Laboratories (formerly Cygnal) CPUs. Contributed by Maarten Brock.
4658
4659 2004-01-31 Bernhard Held <bernhard AT bernhardheld.de>
4660
4661         * src/SDCCast.c (processParams): added new type flow and restructured
4662         (gatherAutoInit): added new type flow
4663         (addCast): cosmetic changes
4664         (getLeftResultType): added new type flow for array indices, patch
4665         provided by Stas, see FR #877103
4666         (decorateType): SDCC_NEWTYPEFLOW removed, new type flow is now standard;
4667         array index patch by Stas
4668         * src/SDCCast.h: added prototype getResultTypeFromType()
4669         * src/SDCCval.h,
4670         * src/SDCCval.c (resolveIvalSym) (resolveIvalSym),
4671         * src/pic/glue.c (pic14emitStaticSeg),
4672         * src/pic16/glue.c (pic16emitStaticSeg),
4673         * src/SDCCglue.c (emitRegularMap) (emitStaticSeg): added new type flow
4674         for initialization of symbols
4675         * src/SDCCicode.c (geniCodeArray): removed warning W_ARRAY_BOUND
4676         * support/Util/SDCCerr.h:
4677         * support/Util/SDCCerr.c: replaced W_ARRAY_BOUND by W_IDX_OUT_OF_BOUNDS
4678         * .version: bumped version number to 2.3.8
4679         * device/include/Makefile.in (install),
4680         * doc/Makefile (install): changed to 'rm `find ...`' construct to
4681         avoid warnings
4682
4683 2004-01-30 Bernhard Held <bernhard AT bernhardheld.de>
4684
4685         * support/regression/tests/libmullong.c: fixed for 64 bit hosts
4686         Slade Rich fixed an optimization bug
4687         * src/pic/pcodepeep.c,
4688         * src/pic/pcoderegs.c
4689         * doc/Makefile (install): added test for directory
4690
4691 2004-01-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4692
4693         * src/mcs51/ralloc.c (getRegPtr, getRegGpr),
4694         * src/ds390/ralloc.c (getRegPtr, getRegGpr),
4695         * src/pic/ralloc.c (getRegPtr, getRegGpr),
4696         * src/pic16/ralloc.c (getRegPtr, getRegGpr),
4697         * src/z80/ralloc.c (getRegGpr): fixed bug #883361
4698         * as/mcs51/asexpr.c (term),
4699         * as/hc08/asexpr.c (term): fixed bug #887146
4700
4701 2004-01-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4702
4703         * src/z80/gen.c (genMult): handle single byte result product
4704         * src/SDCCopt.c (killDeadCode): never convert ADDRESS_OF iCode to
4705         DUMMY_READ_VOLATILE (fixed bug #886367)
4706
4707 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4708
4709         * support/regression/tests/libmullong.c: fixed logic, on little endian
4710         hosts we ended without a mullong_wrapper()
4711
4712 2004-01-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4713
4714         * ChangeLog: changed "@" to " AT " in hopes of reducing spam and
4715         virus/worm forged address usage.
4716
4717 2004-01-27 Bernhard Held <bernhard AT bernhardheld.de>
4718
4719         Fixed promotion, it should be done on AST level:
4720         * src/SDCCast.c (addCast): added promotion to int
4721         (decorateType): updated call to upCast()
4722         * src/SDCCicode.c (geniCodeLeftShift): removed call to
4723         usualUnaryConversions()
4724
4725 2004-01-26  Michael Hope  <michaelh AT juju.net.nz>
4726
4727         * support/regression/tests/literalop.c (mulWrapper): Added a
4728         wrapper to remove integer overflow warnings.
4729
4730         * support/regression/tests/float_trans.c: Made work on host.
4731
4732         * support/regression/ports/ucz80/spec.mk (UCZ80): Made detect the
4733         location of sz80.
4734
4735         * support/regression/generate-cases.py (main): Changed from inline
4736         to a main method.
4737
4738         * doc/Makefile (install): Changed to depth first to get rid of
4739         missing directory install warning.
4740
4741         * as/Makefile (install-doc): Made work on Mac.
4742
4743 2004-01-25 Bernhard Held <bernhard AT bernhardheld.de>
4744
4745         * src/SDCCast.c: added an additional type flow in decorateType() of
4746         opposite direction, see feature request #860006; it's enabled at runtime
4747         by setting the environment variable SDCC_NEWTYPEFLOW
4748         * src/SDCCast.h: changed prototype of decorateType()
4749         * src/SDCCglue.c (emitRegularMap): updated call of decorateType()
4750         * src/SDCCicode.c (geniCodeDivision) (geniCodeModulus): promotion from
4751         'char' to 'int' can be omitted, if both operands are 'unsigned char';
4752         see feature request #877103
4753         * src/SDCCval.c: updated call of decorateType()
4754         (valBitwise): fixed bug #882876
4755         (valMinus): added promotion
4756         (valLogicAndOr): result is unsigned
4757         (cheapestVal) (constVal): literals from 0...255 are 'unsigned char' now
4758         * src/SDCCsymt.c (computeType),
4759         * src/mcs51/gen.c (genCmpGt) (genCmpLt): literal 'unsigned char'
4760         must not cause an unsigned operation
4761         * src/pic/glue (pic14emitRegularMap),
4762         * src/pic16/glue.c (pic16emitRegularMap): updated call of decorateType()
4763
4764 2004-01-23 Bernhard Held <bernhard AT bernhardheld.de>
4765
4766         * src/pic/pcode.c (PCodeID): commented out left over debug code
4767
4768 2004-01-20 Bernhard Held <bernhard AT bernhardheld.de>
4769
4770         * support/valdiag/tests/overflow.c: added shift tests
4771         * src/pic/device.c,
4772         * src/pic/gen.c,
4773         * src/pic/gen.h,
4774         * src/pic/glue.c,
4775         * src/pic/main.c,
4776         * src/pic/pcode.c,
4777         * src/pic/pcode.h,
4778         * src/pic/pcodepeep.c,
4779         * src/pic/pcoderegs.c,
4780         * src/pic/ralloc.c,
4781         * src/pic/ralloc.h: applied patch from Slade Rich;
4782         added support for multiple code pages and multiple RAM banks on the
4783         PIC 14 port. The ASM files now no longer simply assume all the
4784         code / RAM are in the same page / bank. This means the linker can
4785         safely allocate code/RAM of separate ASM files to different pages/banks.
4786         * doc/sdccman.lyx: added Slade's tips
4787         * src/mcs51/peeph.def: fixed bug #880768
4788
4789 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4790
4791         * src/hc08/ralloc.c (rematStr): fixed bug #879282
4792         * src/SDCCast.c (decorateType): fixed bug #880197
4793
4794 2004-01-20  Michael Hope  <michaelh AT juju.net.nz>
4795
4796         * sim/ucsim/gui.src/serio.src/main.cc: Fixed unconditional use of
4797         getopt.h.
4798
4799         * debugger/mcs51/cmd.c (getValBasic): Changed strtof to strtod as
4800         strtof is not part of C89 and isn't included with Mac OS X.
4801
4802 2004-01-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4803
4804         * src/hc08/gen.c (genPlusIncr, genUminus, genMinusDec, genCmp,
4805         shiftL2Left2Result): fixed bug #879326
4806         (genAnd, genOr, genXor): fixed bug when result was of type AOP_CRY
4807         (genMultOneByte): fixed bug in signed vs unsigned multiplication
4808         * sim/ucsim/hc08.src/inst.cc (inst_clr): added missing effective
4809         address fetch for clr instruction
4810         * device/lib/hc08/_mulint.c: created optimized assembly version
4811         * src/SDCCdflow.c (computeDataFlow): fixed bug #878209
4812
4813 2004-01-19 Bernhard Held <bernhard AT bernhardheld.de>
4814
4815         * src/SDCCicode.c (geniCodeArray): applied patch from Stas Sergeev
4816         proposed in FR #877103
4817
4818 2004-01-18 Bernhard Held <bernhard AT bernhardheld.de>
4819
4820         * src/SDCCval.c (cheapestVal): added missing checks
4821         * src/SDCCicode.c (usualBinaryConversions): fixed condition
4822         * src/SDCCicode.c (geniCodeAdd): fixed part of bug #877103
4823
4824 2004-01-16 Klaus Flittner <klaus_flittner AT gmx.de>
4825
4826         * src/ds390/gen.c (aopOp3): fixed the assignment of different dptrs to
4827         equal operands
4828
4829 2004-01-16 Vangelis Rokas <vrokas AT otenet.gr>
4830
4831         * src/SDCCmain.c (linkEdit): variable $3 of the linker command is
4832         loaded with the linker search paths (-L arguments) and the libraries
4833         to be linked with the current source (-l arguments). Changes
4834         currently will affect only the pic16 port.
4835         * src/pic16/main.c (_pic16_finaliseOptions): add to the linker
4836         include path the port specific paths and port specific libraries,
4837         * gplink command now contains the $3 argument,
4838         * src/pic16/device.h,
4839         * src/pic16/device.c,: structure PIC_device is made public and
4840         renamed to PIC16_device, the same for variable Pics which is renamed
4841         to Pics16. Updated all references to them.
4842         * src/pic16/glue.c (pic16glue): corrected bug with code
4843         initialization which bypassed the variable initializations block.
4844
4845         * device/lib/pic16/Makefile.rules: removed --penable-stack from
4846         COMPILE_FLAGS and added the --nostdinc option
4847
4848 2004-01-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4849
4850         * device/include/mc68hc908jb8.h: Register defs for another member
4851         of the hc08 family. Contributed by Bjorn Bringert - thanks!
4852
4853 2004-01-14 Vangelis Rokas <vrokas AT otenet.gr>
4854
4855         Documenting changes from previous commits.
4856         * configure.in (version 1.56),
4857         * configure: initially I've added AC_CONFIG_SUBDIRS(device/lib/pic16)
4858         when generating output files to configure the pic16 library,
4859         but now I've commented it out, since gputils aren't installed in the
4860         SF compile farm, so library won't compile
4861
4862         * device/lib/Makefile.in (version 1.56): initially I've added in
4863         target 'all' the prerequestive 'model-pic16' so it compiled the
4864         pic16 library, but now I've commented it out for the same reasons
4865         above,
4866         * added targets 'model-pic16' and 'objects-pic16' to compile the
4867         library
4868         * added target 'port-specific-objects-pic16' to handle the
4869         generated libraries and copy them into the build/ directory
4870         * added target 'clean-intermediate-pic16' to clean intermediate
4871         files into pic16 directory
4872         * in target 'installdirs' added line to create directory pic16 in
4873         the installation path
4874
4875         * device/include/Makefile.in (version 1.11): in target 'install'
4876         added lines to copy all header files to installation path,
4877         * in target 'installdirs' added line create directory for pic16
4878         headers in the installation path
4879
4880 2004-01-13 Klaus Flittner <klaus_flittner AT gmx.de>
4881
4882         * src/ds390/gen.c (genCall): fixed a double use of acc and b after
4883          a function call
4884
4885 2004-01-13 Bernhard Held <bernhard AT bernhardheld.de>
4886
4887         * configure,
4888         * device/lib/configure.in,
4889         * device/lib/configure: fixed for autoconf 2.57
4890
4891 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4892
4893         * src/z80/main.c (_parseOptions): fixed the portmode= command line
4894         option so that it actually works. Made it specific to the z80, since
4895         the gbz80 doesn't have these kinds of I/O ports.
4896
4897 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4898
4899         * device/include/z180.h,
4900         * device/lib/_memcpy.c,
4901         * device/lib/_memmove.c,
4902         * device/lib/_mulint.c,
4903         * device/lib/ser_ir.c,
4904         * device/lib/ser_ir_cts_rts.c,
4905         * device/lib/_strcmp.c,
4906         * device/lib/_strtok.c: fixed pragmas to non-deprecated form
4907         * src/z80/main.c (_process_pragma): add support for pragmas bank and
4908         portmode; added deprecation warning for bank= and protmode= forms.
4909         Also, guard against buffer overflow.
4910         * src/z80/gen.c (aopGet): generate better code for sfr banked read
4911
4912 2004-01-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
4913
4914         * src/hc08/main.c (_hc08_genAssemblerPreamble): fixed bug #875487. Also
4915         changed interrupt vector table generation to only emit declared vectors.
4916         * device/include/Makefile.in: added missing backslash
4917         * device/lib/pic16/Makefile.rules: add $(MODELFLAGS) to $(CFLAGS)
4918
4919 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4920
4921         Mainly changes to support compilation of the device libraries
4922         * src/pic16/device.c: stack is allocated via symbol and not
4923         via literal number. The symbol is placed in the corresponding
4924         position of the data ram
4925         * (pic16_dump_section): relocatable and absolute uninitialized
4926         data are now emitted in sorted order to reduce section naming,
4927         * src/pic16/ralloc.c (newReg): fixed bug with SFR's that
4928         weren't marked as being in the access bank,
4929
4930 2004-01-13 Vangelis Rokas <vrokas AT otenet.gr>
4931
4932         Added portion of GNU PIC Library under the directory
4933         device/include/pic16 and device/lib/pic16. These files
4934         contain the declarations of SFRs for the PIC18Fxx2 devices.
4935         The directory is initialized via configure from toplevel.
4936
4937 2004-01-12 Klaus Flittner <klaus_flittner AT gmx.de>
4938
4939         * src/ds390/gen.c (operandsEqu): fixed a little typo, that prevented
4940         the spilllocations to be compared correctly
4941
4942 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4943
4944         * src/SDCCast.c (decorateType): fixed bug introduced today
4945
4946 2004-01-12  Borut Razem <borut.razem AT siol.net>
4947
4948         * src/SDCC.lex, support/Util/SDCCerr.h, support/Util/SDCCerr.c,
4949         doc/sdccman.lyx: upper case pragmas are deprecated
4950
4951 2004-01-12 Bernhard Held <bernhard AT bernhardheld.de>
4952
4953         * src/SDCCast.c (decorateType): replacing 'ul > 0' by  '!ul' results
4954         in simpler and even better code
4955
4956 2004-01-11 Bernhard Held <bernhard AT bernhardheld.de>
4957
4958         * src/SDCCicode.c (operandOperation): fixed bug #874819
4959         * src/SDCCast.c (decorateType): fixed
4960         char foo (unsigned long ul) { return ul > 0; }
4961
4962 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
4963
4964         * doc/sdccman.lyx: Moved and added some sections, small changes
4965         all over. Telling LaTeX to be less strict with word spacing
4966         to better keep the right margin. Changed some notes about
4967         maintainance of the ports in section 3.2.1 - is it OK like this?
4968
4969 2004-01-11 Vangelis Rokas <vrokas AT otenet.gr>
4970
4971         SDCC source changes:
4972         * src/SDCCopt.c (cntToFcall, cnvToFloatCast, cnvFromFloatCast,
4973         convilong): modified to inform the pic16 port that builtin functions
4974         are external
4975
4976         PIC16 PORT specific changes:
4977         * src/pic16/device.c pic16_dump_equates() added,
4978         processor registers declared internally by the port are emitted in
4979         the translation as equates,
4980         * src/pic16/gen.c: inline code is passed unprocessed to the
4981         translation,
4982         * (pic16_popGetLit2): fnuction modified to take second operand as
4983         pCodeOp pointer and not as literal,
4984         * (popRegFromIdx): prefixed with pic16_,
4985         * (pic16_popCombine2): modified to receive already allocated pCode
4986         operands,
4987         * (pic16_pushpCodeOpReg, pic16_poppCodeOpReg): added
4988         * (genFunction): initializes local stack frame and pushes on stack
4989         all the registers used by this function,
4990         * (genEndFunction): restores all registers from stack and restores
4991         stack frame,
4992         * src/pic16/glue.c (pic16emitRegularMap): various changes and
4993         improvements,
4994         * (pic16glue): changed the program startup sequence,
4995         * added new dbName code 'A' for functions placed in absolute section
4996         * src/pic16/main.c: added function attribute _naked,
4997         * added pragma 'code' to place a fnuction at an absolute address,
4998         * added command line arguments --debug-ralloc and --pcode-verbose,
4999         * (_pic16_finiliseOptions): options.all_callee_saves is set by default
5000         * src/pic16/pcode.c (pic16_pBlockConvert2Absolute) added,
5001         * (pic16_newpCodeOpLit2): modified to take the second operand as
5002         pCodeOp pointer,
5003         * (pic16_printpBlock): modified to emit each function in a separate
5004         section,
5005         * (pic16_get_op): modified to use the gpasm modifiers LOW,HIGH and
5006         UPPER for immediate operands,
5007         * src/pic16/pcodepeeph.c: added peephole support for the LFSR
5008         instruction,
5009         * src/pic16/peeph.def: all peepholes with movff are commented out,
5010         because there is a problem in the pcode peep optimizer,
5011         * src/pic16/ralloc.c: the register allocator can now reuse local
5012         function symbols for another function. This saves register usage.
5013         * src/pic16/ralloc.h: added flag isLocal in structure regs,
5014
5015         Added file src/pic16/NOTES with information about program writing on
5016         the current port version.
5017
5018 2004-01-11 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5019
5020         * src/mcs51/peephole.def: added peepholes 177.c,d (redundant moves)
5021         and peephole 252 (array access)
5022
5023 2004-01-09  Borut Razem <borut.razem AT siol.net>
5024
5025         * src/SDCCmain.c : fixed #872250: -l command line defined library
5026           files are scanned before standard library files
5027
5028 2004-01-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5029
5030         * src/SDCCast.c (decorateType): fixed bug #874046
5031
5032 2004-01-09  Borut Razem <borut.razem AT siol.net>
5033
5034         * support/scripts/sdcc.nsi: remove previous installation
5035
5036 2004-01-09 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5037
5038         * src/SDCCglue.c (createInterruptVect): don't append 7(5) padding
5039         bytes for last interrupt vector (mcs51)
5040         * sdcc.spec: fixed typo
5041
5042 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5043
5044         * src/mcs51/gen.c (genFunction, genEndFunction, genReceive, getTempRegs,
5045         gen51Code): more efficient parameter receive for --model-large
5046         ("bug" #845294)
5047
5048 2004-01-09 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5049
5050         * src/ds390/main.c,
5051         * src/z80/main.c: added missed needLinkerScript flags (more than
5052         one port structure defined in these file)
5053         * src/ds390/gen.c (aopForSym, aopOp, operandsEqu, aopOp3): fixed
5054         bug #795325
5055
5056 2004-01-08 Vangelis Rokas <vrokas AT otenet.gr>
5057
5058         * src/SDCCmain.c: removed various references to DEFAULT_PORT
5059         * src/port.h: added flag needLinkerScript in port->linker
5060         structure to inform whether to create a .lnk file or not,
5061         * src/avr/main.c,
5062         * src/ds390/main.c,
5063         * src/hc08/main.c,
5064         * src/mcs51/main.c,
5065         * src/pic/main.c,
5066         * src/pic16/main.c,
5067         * src/xa51/main.c,
5068         * src/z80/main.c: changed appropriately to configure
5069         needLinkerScript flag
5070         * src/pic/gen.c,
5071         * src/pic16/gen.c (genAddrOf): fixed bug #863624
5072         * src/pic/glue.c: added variable udata_section_name to
5073         override default uninitialized data segment definition for
5074         devices only with SHAREBANK memory (reported from Erik Epetrich)
5075         * (pic14emitOverlay): modified to emit a commented overlay segment
5076         directive when no overlay data exist
5077         * (picglue): modified to emit uninitialized data segment
5078         according to udata_section_name
5079         * src/pic/main.c (_pic14_parseOptions): added command line
5080         options --udata-section-name=[name] to override default
5081         udata definition name
5082         * modified _linkCmd and _asmCmd to include compiler passed
5083         arguments via -W option
5084         * src/pic16/main.c: added $l in _asmCmd, changed extension for
5085         object file from '.rel' to '.o' in port->linker structure,
5086         changed size of fptr from 2 to 3 in port structure
5087
5088 2004-01-07  Borut Razem <borut.razem AT siol.net>
5089
5090         * support/scripts/sdcc.nsi: update PATH
5091         * support/scripts/sdcc.ico: craeted
5092
5093 2004-01-07 Bernhard Held <bernhard AT bernhardheld.de>
5094
5095         * device/include/Makefile.in: fix install
5096         * doc/Makefile: fix install
5097
5098 2004-01-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5099
5100         * src/SDCCsymt.c (processFuncArgs): fixed superflous allocation noted
5101         in bug #860505
5102         * src/SDCCmem.c (printAllocInfoSeg, printAllocInfo): minor changes to
5103         how the function variable allocation summary is displayed; also
5104         include information about variables allocated to the overlay
5105         segment
5106
5107 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5108
5109         * as/mcs51/lkmain.c: Help about -Y option
5110         * as/mcs51/lkarea.c: Fixed gcc warnings
5111
5112 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5113
5114         * src/SDCCval.c (valShift): changed from 16 to 32 bit shift count,
5115         fixed warning
5116         * support/valdiag/tests/overflow.c: added
5117         * src/SDCCast.c (decorateType),
5118         * src/SDCCicode.c (geniCodeLeftShift): added promotion to int for
5119         LEFT_OP (left shift)
5120
5121 2004-01-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5122
5123         * as/mcs51/lkmain.c: stack must be after data when option -Y is not used
5124         (default behaviour).
5125
5126 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5127
5128         A python script to validate compiler diagnostic messages. It can be
5129         used to verify that sdcc complains about bad c source code and
5130         gives a good location of the error.
5131         * support/valdiag/Makefile,
5132         * support/valdiag/valdiag.py,
5133         * support/valdiag/tests/*
5134
5135 2004-01-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5136
5137         * src/SDCC.y (enum_specifier, enumerator_list, opt_assign_expr),
5138         * src/SDCCsymt.c (newEnumType),
5139         * src/SDCCsymt.h
5140         * support/Util/SDCCerr.c,
5141         * support/Util/SDCCerr.h: fixed bug #871258 and some other unreported
5142         enum related bugs.
5143         * support/regression/tests/enum.c: added test for enum values that
5144         require at least 2 bytes of storage.
5145
5146 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5147
5148         * src/common.h: added ifndef/define/endif macros
5149         around the header file.
5150         Bug reported from Jesus Calvino-Fraga
5151
5152 2004-01-06 Bernhard Held <bernhard AT bernhardheld.de>
5153
5154         * sdcc.spec: updated
5155         * device/include/Makefile.in: don't install CVS directories
5156         * device/lib/Makefile.in: added removal of CVS directories after install
5157         * doc/Makefile: fixed install, added local_icons
5158         * sim/ucsim/gui.src/Makefile.in: fixed an old typo
5159         * src/mcs51/gen.c (genRightShift): fixed bug #870788
5160         * src/ds390/gen.c (genRightShift): fixed bug #870788
5161         * src/SDCCast.c (decorateType): fixed bug #870781
5162
5163 2004-01-06 Vangelis Rokas <vrokas AT otenet.gr>
5164
5165         PIC16 port related changes:
5166         * device.c: removed pic16_finalMapping and pic16_finalMappingSize,
5167         added variable stackPos,
5168
5169         * gen.c: genCall, assignResultValue: added support for
5170         pushing/retrieving function parameters to/from stack,
5171         genFunction,genEndFunction: setup stack frame for the
5172         generated function,
5173         genAddrOf: will be changed according to bug 863624
5174
5175         * added files genutils.c and genutils.h which contain gen*
5176         debugged and optimised functions extracted from gen.c
5177
5178         * glue.c: added variable 'externs' which holds extern symbols,
5179         pic16emitRegularMap: is modified to properly handle relocatable
5180          symbols under the new scheme,
5181         pic16createInterruptVect: is modified
5182         pic16printPublics: is modified to emit 'global' assembler directives,
5183         added pic16_printExterns to print extern symbols,
5184         pic16glue: initializes stack/frame pointer in the beginning of
5185         the assembly output. Temporary hack, will be corrected later,
5186         because gplink yet does not support stack and SDCC does not
5187         yet support a type of crt0.o object to create the final binary.
5188
5189         * Removed many lines that contain 8051 legacy code.
5190         * The code is finally placed under a 'code' directive.
5191         * Added port specific options.
5192
5193         * _process_pragma: simplified since now we do not need *special*
5194         include file to define SFR registers. But a separate header
5195         will be needed. This will be developed later.
5196         * _pic16_parseOptions: added, parses port specific options:
5197         --pgen-banksel, --obanksel=, --pomit-config-words, --pomit-ivt,
5198         --pleave-reset-vector, --penable-stack, --pstack-model, --debug-xtra
5199         --preplace-udata-with=
5200
5201         * _pic16_setDefaultOptions: modified to initialize section names,
5202         but hack is temporarly out of order since it needs improvement.
5203         * _pic16_genAssemblerPreamble: configuration words are emitted by
5204         their address instead of their name. This part is incomplete and
5205         supports only the 18Fxx2 devices. Other devices will emit an error
5206         during assembly since they do not contain the same set of config
5207         registers
5208         * _pic16_genIVT: is modified,
5209
5210         * pcode.c: added definitions for some hardware registers that are needed
5211         for stack support
5212         * added flag is2LitOp and variable pci_magic in pCodeInstruction.
5213         All PCI entries are updated. Now LFSR is supported.
5214         * Removed pic16_pciTRIS is mentioned by mdubuc in source
5215         * added pic16_newpCodeOpLit2 to support instructions with
5216         two literal arguments
5217         * pic16_pCode2str: corrected code that emits assembler instructions
5218         with two literal operands and those that have an access bit modifier
5219         * genericPrint: now PC_ASMDIR pCodes, can emit a label if it exists,
5220         this fixes a bug which caused some labels to be lost, when an
5221         assembler directive was added, i.e. banksel,
5222         * pic16_FixRegisterBanking: improved logic that causes the insertion
5223         of bank switching,
5224         * InlineFunction: functions that are called once, are not any more
5225         inlined. This can be a port option in the future,
5226
5227         * pcode.h: added pCodeOpLit2 and added variable label in pCodeAsmDir
5228
5229         * ralloc.c: added pic16_rel_udata and pic16_fix_udata variables which
5230         hold the corresponding uninitialized symbols,
5231         * pic16_allocProcessorRegister: registers have explicit marked the
5232         accessBank field,
5233         * pic16_allocInternalRegister: registers are explicit marked as
5234         not used,
5235         * pic16_writeUsedRegs: pic16_dynDirectBitRegs was missing from the
5236         processing list, so bit registers were lost,
5237         *
5238
5239         * ralloc.h: added field 'accessBank' and original symbol operand
5240         in register definition,
5241         * removed the field isMapped from register definition,
5242
5243         ** Several functions have been removed from various sources:
5244         BanksUsedFlow2,BanksUsedFlow,FixBankFlow,InstructionRegBank,
5245         pic16_addMemRange,pic16_isREGinBank,pic16_dump_map,pic16_dump_cblock
5246         isSFR,validAddress,mapRegister,assignRegister,pic16_assignFixedRegisters
5247         pic16_assignRelocatableRegisters
5248
5249         ** others have been introduced:
5250         pic16_areRegsSame,pic16_dump_section,checkAddReg,pic16_groupRegistersInSection
5251         pic16_popGetLit2,pic16_popCombine2,pushw,pushaop
5252
5253 2004-01-05 Vangelis Rokas <vrokas AT otenet.gr>
5254
5255         * support/scripts/inc2h.pl: changed definition of BIT_AT
5256         to emit 'sbit at' instead of 'bit at'. This was a request.
5257
5258         PIC16 port related preliminary changes:
5259         * gen.c: prefixed function popRegFromString with
5260         pic16_ and all references to it corrected
5261         * pcode.c: all pic16_pc_* hardware registers prefixed
5262         with underscore (_),
5263         pic16_popCopyGPR2Bit(): function sets register wasUsed=1
5264         * ralloc.c: newReg(): when register is REG_SFR then
5265         set address to rIdx,
5266         pic16_allocProcessorRegister(): marks register wasUsed=0
5267         pic16_writeUsedRegs(): added a call to assign processor
5268         registers via pic16_assignFixedRegisters
5269
5270 2004-01-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5271
5272         * as/mcs51/aslink.h, as/mcs51/lkarea.c, as/mcs51/lkdata.c,
5273         as/mcs51/lkmain.c, as/mcs51/lkmem.c: 8051 linker can now pack
5274         variables in unused register banks.  Also the SSEG is placed
5275         wherever there is enough space for it, and IDATA can be anywhere
5276         in internal RAM.  For now compile using -Wl-Y[stack_size].
5277         The mem file is different for this option as well, since it
5278         makes no sense of talking about DSEG lenght.
5279
5280 2004-01-02 Vangelis Rokas <vrokas AT otenet.gr>
5281
5282         * src/SDCClrange.c: fixed bug 869095 that caused segfault
5283         in certain cases, e.g. when ROM assignment, patch provided
5284         from Albert den Haan.
5285
5286 2004-01-01 Bernhard Held <bernhard AT bernhardheld.de>
5287
5288         Many signedness and type propagation fixes:
5289         * src/SDCCicode.c: made geniCodeCast() static
5290         replaced SPEC_ by IS_ (cosmetic)
5291         (operandOperation): fixed div and mod operation
5292         (usualBinaryConversions): added support for promotion of char
5293         (geniCodeMultiply): replaced (unsigned long) by (TYPE_UDWORD)
5294         (geniCodeDivision): replaced (unsigned long) by (TYPE_UDWORD)
5295         (geniCodeAdd): an array index will stay unsigned, even if promoted
5296         from char to int
5297         (geniCodeArray): ditto
5298         * src/SDCCicode.h: made geniCodeCast() static: removed prototype
5299         * src/SDCCsymt.c (computeType): added more support for char;
5300         promotion of char is selectable by promoteCharToInt, fixed signedness
5301         for all cases
5302         (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5303         * src/SDCCsymt.h (powof2): replaced (unsigned long) by (TYPE_UDWORD)
5304         * src/SDCCval (val*): replaced signedness calculation by
5305         computeType()
5306         rearranged if-branches (cosmetic)
5307         (valShift): added warning W_SHIFT_CHANGED
5308         (valCompare): fixed problem with different types
5309         * src/hc08/rallo.c (leastUsedLR): fixed gcc 3.3 warning
5310         * support/regression/tests/literalop.c: added many cases
5311         * support/regression/tests/ast_constant_folding.c: changed finally to
5312         'unsigned int'
5313         * .version: new year, new version: 2.3.7
5314         * src/SDCCmain.c (main): applied patch #866468
5315         * debugger/mcs51/sdcdb.c (parseCmdLine): added -k for ucsim, patch
5316         provided by Scott Bronson
5317         * doc/sdccman.lyx: updated documentation for sdcdb
5318         updated and added chapter tips
5319
5320 2004-01-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5321
5322         * src/SDCCsymt.h: missing from yesterday's commits
5323
5324 2003-12-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5325
5326         * src/SDCC.y (struct_or_union_specifier),
5327         * support/Util/SDCCerr.c,
5328         * support/Util/SDCCerr.h: verify that struct & union tags are used
5329         as declared.
5330
5331 2003-12-29 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5332
5333         * src/SDCCglobl.h: missing from yesterday's commits
5334
5335 2003-12-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5336
5337         * src/SDCC.y (external_definition, type_specifier2, sfr_reg_bit,
5338         sft_attributes, struct_declaration, parameter_declaration,
5339         type_name, start_block, declaration_list),
5340         * src/SDCC.lex (check_type): support redefinition of typedef names
5341
5342 2003-12-22 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5343
5344         * src/mcs51/gen.c (genPlus): added special handling for 256 byte
5345         aligned xdata arrays. Erik helped me with the if clause.
5346
5347 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5348
5349         * device/lib/ds390/tinibios.c (CpuSpeed): suppress unreachable code
5350         warning
5351
5352 2003-12-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5353
5354         * src/SDCCast.h,
5355         * src/SDCCast.c (newAst_),
5356         * src/SDCCicode.h,
5357         * src/SDCCicode.c (ast2iCode, newiCode),
5358         * src/SDCCglobl.h,
5359         * src/SDCC.y (logical_and_expr, logical_or_expr, conditional_expr,
5360         expr, statement, expression_statement, selection_statement,
5361         iteration_statement, expr_opt, jump_statement): foundation for tracking
5362         sequence points
5363         * src/SDCCopt.c (killDeadCode): fixed bug #861580 (needs the sequence
5364         point code too)
5365
5366 2003-12-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5367
5368         * support/Util/SDCCerr.c,
5369         * src/SDCCast.h,
5370         * src/SDCCast.c (createCase, createDefault, decorateType),
5371         * src/SDCClabel.c (labelUnreach),
5372         * src/SDCC.y (labeled_statement, jump_statement): More improvements
5373         to error messages.
5374         * support/Util/SDCCerr.c (werrorfl): fixed a non-standard declaration
5375         (with thanks to Stas Sergeev)
5376         * device/include/time.h,
5377         * device/lib/time.c (CheckTime): suppress unreachable code warning
5378
5379 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5380
5381         * src/SDCCast.c (createIvalCharPtr),
5382         * src/SDCCglue.c (printChar): fixed bug #862241 (an error in my fix for
5383         bug #753752)
5384         * support/regression/tests/nullstring.c: tests for these two bugs
5385
5386 2003-12-18 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5387
5388         * support/Util/SDCCerr.h,
5389         * support/Util/SDCCerr.c (E_NOT_ALLOWED),
5390         * src/SDCC.y (struct_declaration, struct_or_union_specifier): complain
5391         about storage class and 'at' used inside struct or union
5392         * src/SDCCBBlock.c (iCodeFromeBBlock),
5393         * src/SDCCcse.c (ifxOptimize),
5394         * src/SDCCglue.c (emitRegularMap, initPointer, printIvalStruct,
5395         printIvalArray, printiValFuncPtr, printIvalCharPtr, printIvalPtr,
5396         printIval, emitStaticSeg, emitOverlay),
5397         * src/SDCClabel.c (deleteIfx),
5398         * src/SDCCopt.c (replaceRegEqv, eBBlockFromiCode),
5399         * src/SDCCast.c (resolveSymbols, createIvalStruct, createIvalArray,
5400         gatherAutoInit, processParms),
5401         * support/Util/SDCCerr.h,
5402         * support/Util/SDCCerr.c (werrorfl): Support for better error location
5403         reporting for post-parse errors.
5404
5405 2003-12-16 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5406
5407         * src/SDCCval.c (valPlus, valMinus, valShift): fixed some problems with
5408         implicit casts via union; they don't work on big endian systems
5409         (possible fix for bug #861138)
5410
5411 2003-12-16 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5412
5413         (committed by Erik Petrich <epetrich AT ivorytower.norman.ok.us> on Frieder's behalf)
5414         * src/mcs51/main.c: fixed the fix for bug #737001
5415
5416 2003-12-15  Borut Razem <borut.razem AT siol.net>
5417
5418         * support/scripts/sdcc.nsi: updated for NSIS 2.0 beta 4
5419
5420 2003-12-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5421
5422         * support/makebin/makebin.c: put output in binary mode
5423
5424 2003-12-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5425
5426         * src/mcs51/main.c: fixed bug #737001 for the mcs51. SDCC clears
5427         xdata and data memory on startup. Set the environment variable
5428         SDCC_NOGENRAMCLEAR to disable this.
5429         * src/mcs51/peephole.def,
5430         * src/ds390/peephole.def: using the atomic test and clear instruction jbc
5431         (allows non-interrupt and interrupt code to safely compete for a resource
5432         without the non-interrupt code having to disable interrupts)
5433
5434 2003-12-13 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5435
5436         * src/SDCCicode.c (geniCodeAdd),
5437         * src/SDCCast.c (decorateType): fixed bug #857753 (need to be careful
5438         with valFromType if type might be a pointer and host is big endian).
5439         * src/SDCCast.c (decorateType): unary plus compatible with all arithmetic
5440         types, not just integer types.
5441         * src/SDCCsymt.c (addSymChain): clarified error message when symbol is
5442         multiply defined with mismatching "at" address.
5443
5444 2003-12-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5445
5446         * src/ds390/main.c (PORT tininative_port): fixed bug #858416
5447         * src/SDCCglue.c (printChar, printIvalChar, emitStaticSeg),
5448         * src/SDCCast.c (createIvalCharPtr, stringToSymbol): handle strings
5449         with embedded nulls (fixed bug #753752)
5450
5451 2003-12-12 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5452
5453         * src/mcs51/main.c(_mcs51_genRAMCLEAR): using r0 instead of r1/r2.
5454         Apparently this did not see much testing (endless loop)
5455
5456 2003-12-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5457
5458         * src/z80/ralloc.c: set DISABLE_PACK_HL = 1 as a temporary fix to bug #855165
5459
5460 2003-12-10 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5461
5462         * src/SDCCdebug.c (outputDebugSymbols, outputDebugStackSymbols, dumpSymInfo):
5463         gracefully handle NULL memmap pointers
5464
5465 2003-12-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5466
5467         * src/SDCCopt.c (killDeadCode): change iCode type to DUMMY_READ_VOLATILE
5468         instead of deleting the iCode when an operand is volatile
5469         * src/z80/gen.c (genDummyRead),
5470         * src/mcs51/gen.c (genDummyRead),
5471         * src/ds390/gen.c (genDummyRead),
5472         * src/hc08/gen.c (genDummyRead): handle operands in IC_LEFT and/or IC_RIGHT,
5473         not just IC_RIGHT
5474         * src/SDCCicode.c (geniCodeCall): fixed bug #851607
5475         * src/SDCC.y: fixed bug #850420
5476
5477 2003-12-05 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5478
5479         Applied z80 i/o port patch from Peter Townson and fixed some operators
5480         to better handle operands in A register.
5481         * device/include/z180.h
5482         * src/SDCC.y
5483         * src/SDCCglue.c
5484         * src/z80/gen.c
5485         * src/z80/gen.h
5486         * src/z80/main.c
5487         * src/z80/peeph-z80.def
5488         * src/z80/peeph.def
5489         * src/z80/z80.h
5490
5491 2003-12-03 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5492
5493         * src/SDCCsymt.c (addSymChain, compareTypeExact): fixed bug #838241 again
5494
5495 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5496
5497         * device/lib/hc08/_mullong.c: Removed extra #endif
5498
5499 2003-12-01 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5500
5501         * sim/ucsim/hc08.src/inst.cc,
5502         * sim/ucsim/hc08.src/hc08mac.h: fixed some problems with CC flag bits and
5503         carries from x to h
5504         * src/hc08/gen.c (aopAdrStr): fixed problem with 16 bit immediate
5505         * src/hc08/gen.c (XAccRsh): fixed problem with right shift
5506         * device/include/stdarg.h: fixed varargs for hc08
5507         * device/lib/Makefile.in,
5508         * device/lib/hc08/Makefile,
5509         * device/lib/hc08/_mulint.c,
5510         * device/lib/hc08/_mullong.c: fixed some endian problems
5511
5512 2003-11-28 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5513
5514         * sdcc/src/mcs51/gen.c (genMultOneByte): help peephole 105
5515         * sdcc/src/mcs51/peeph.def: added peephole 186.e array access in code space
5516         * device/lib/_gptrget.c,
5517         * device/lib/_gptrput.c: P2 not used any more (related to #850747, #785979)
5518
5519 2003-11-27 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5520
5521         * src/SDCClrange.c (findNextUseSym, rlivePoint): fixed bug #849795
5522         * src/SDCCast.c (astErrors): fixed bug #846007
5523         * src/SDCCsymt.c (checkFunction): fixed follow-up bug on bug #846007
5524
5525 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5526
5527         * src/SDCCast.c (decorateType): disabled a transformation I added in
5528         revision 1.188 (access to fields of a structure at an absolute address);
5529         it breaks with bitfields, extern declarations, and gcse analysis.
5530         * src/SDCCopt.c (isLocalWithoutDef): if ADDRESS_OF applied to a symbol, it
5531         could be assigned through a pointer, so don't complain.
5532         * src/SDCCast.c (astErrors),
5533         * src/SDCCast.h,
5534         * src/SDCCglue.c (emitRegularMap): fixed bug #847813
5535
5536 2003-11-26 Vangelis Rokas <vrokas AT otenet.gr>
5537
5538         * src/pic16/main.c (_pic16_genIVT): fixed interrupt vector table
5539         * src/pic16/main.c (_pic16_genAssemblerPreamble): re-enabled the
5540         output of __config directives, since gpasm now supports them
5541         * src/pic16/main.c (_pic16_finaliseOptions): define MCU
5542         pre-processor macro, i.e. -DMCU=p18f452
5543         * src/pic16/ralloc.c: renamed packRegisters to pic16_packRegisters,
5544         and modified to handle 'cast' icode similarly to '=' icode
5545         * src/pic16/device.h (typedef struct PIC_device): added field
5546         'extMIface' to indicate that chip has external memory interface
5547         * src/pic16/device.c: added chips 18F248, 18F258, 18F448, 18F458,
5548         18F6520, 18F6620, 18F6680, 18F6720, 18F8520, 18F8620, 18F8680,
5549         18F8720
5550
5551 2003-11-26 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5552
5553         * src/SDCC.y (pointer): fixed bug #846006
5554         * support/Util/SDCCerr.c: made W_PTR_TYPE_INVALID message clearer
5555         * src/SDCCast.c (decorateType): fixed bug #846009
5556         * src/ds390/peeph.def,
5557         * src/ds390/gen.c (genAnd, genOr),
5558         * src/mcs51/peeph.def,
5559         * src/mcs51/gen.c (genAnd, genOr): fixed bug #846777
5560
5561 2003-11-25 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5562
5563         Fixed several common-sub-expression bugs (#772861, #768380, & #755323)
5564         * src/SDCCdflow.c
5565         * src/SDCCcse.c
5566         * src/SDCCcse.h
5567         * src/SDCCBBlock.h
5568         * src/SDCCBBlock.c
5569
5570 2003-11-23 Klaus Flittner <klaus_flittner AT gmx.de>
5571
5572         fixed bug #845089
5573         * src/SDCCbitv.h,
5574         * src/SDCCbitv.c: added function to free a bitvector
5575         * src/SDCClrange.h,
5576         * src/SDCClrange.c: added function to recompute the liveranges
5577         * src/avr/ralloc.c,
5578         * src/ds390/ralloc.c,
5579         * src/hc08/ralloc.c,
5580         * src/mcs51/ralloc.c,
5581         * src/pic/ralloc.c,
5582         * src/pic16/ralloc.c,
5583         * src/xa51/ralloc.c,
5584         * src/z80/ralloc.c: recompute the liveranges after register packing
5585
5586 2003-11-21 Klaus Flittner <klaus_flittner AT gmx.de>
5587
5588         * src/SDCCloop.c (newInduction): fixed bug #845630
5589
5590 2003-11-21 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5591
5592         * src/SDCCsymt.c (compareTypesExact): disabled debugging output
5593         inadvertantly left behind from my 2003-11-12 change
5594
5595 2003-11-20 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5596
5597         Updated headers I neglected to commit yesterday.
5598         * src/SDCClrange.h,
5599         * src/SDCCicode.h
5600
5601 2003-11-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5602
5603         * src/SDCCcse.c (algebraicOpts): fixed bug #773153
5604         * src/SDCClrange.c (rlivePoint): need to mark IC_RESULT used if POINTER_SET op
5605         * src/SDCCopt.c (eBBlockFromiCode),
5606         * src/SDCClrange.c (hashiCodeKeys, sequenceiCode, computeLiveRanges): seperated
5607         the creation of the key hash table from the sequencing so it can be used
5608         earlier (for some GCSE bug fixes still pending)
5609
5610 2003-11-15 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5611
5612         * src/mcs51/gen.c (genPlus): generate shortcut for adding 0xab00
5613         * support/regression/tests/addsub.c: testing genPlus shortcut
5614
5615 2003-11-15  Borut Razem <borut.razem AT siol.net>
5616
5617         * src/SDCCmain.c: fixed bug #841645: -MM command line option passed to sdcpp
5618
5619 2003-11-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5620
5621         * src/SDCCcse.c (cseBBlock): fixed bug #527779
5622         * src/SDCCcse.c (deleteGetPointers): rewrote so that the set
5623         ordering is immaterial.
5624         * src/SDCCdflow.c (mergeInExprs): fixed bug #587536
5625
5626 2003-11-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5627
5628         * src/SDCCicode.c (geniCodeAddressOf): fixed part of bug #840381
5629         * src/SDCCopt.c (replaceRegEqv, isLocalWithoutDef): fixed other part
5630         (SIGSEV) of bug #840381
5631         * src/SDCCmain.c (linkEdit, assemble): fixed bug #841606 (don't
5632         unlink new file before rename if new and old filenames are the same)
5633
5634 2003-11-13 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5635
5636         * src/mcs51/main.c: started fixing bug #737001 (SDCC not clearing
5637         uninitialized variables) for the mcs51. Set environment variable
5638         SDCC_GENRAMCLEAR to test.
5639         xdata initialization slightly shorter
5640
5641 2003-11-12 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5642
5643         * src/SDCCsymt.h,
5644         * src/SDCCsymt.c (addSymTypeChain, compareTypesExact): fixed bugs
5645         #838241 & 780691 (basicly the same bug)
5646         * src/SDCCBBlock.c (iCode2eBBlock): fixed bug #840148
5647         * src/SDCCBBlock.c (iCodeFromeBBlock): fixed bug #840162
5648
5649 2003-11-11 Bernhard Held <bernhard AT bernhardheld.de>
5650
5651         * src/SDCCmain.c (linkEdit): "fix" #834252
5652
5653 2003-11-11 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5654
5655         * src/SDCCast.c (removePostIncDecOps, removePreIncDecOps),
5656         * src/SDCCast.h,
5657         * src/SDCC.y: fixed bug #819403
5658
5659 2003-11-08 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5660
5661         * support/regression/fwk/lib/testfwk.c: printn is recursive and thus needs
5662         the reentrant attribute.
5663         * src/hc08/gen.c (genPackBits): added missing stack readjustment
5664         * sim/ucsim/hc08.src/inst.cc (inst_mov): fixed bugs with mov instruction
5665         simulation
5666         * src/SDCCast.c (decorateType): fixed bug with storage class not being
5667         updated during pointer dereference; f.e. ~(((char *)1)*) was being
5668         erroneously reduced to a literal.
5669         * src/hc08/ralloc.c (packRegisters, rematStr),
5670         * src/hc08/gen.c (aopForRemat): allow literals to be rematerialized in
5671         some cases
5672
5673 2003-11-08 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5674
5675         * src/mcs51/main.c: fixed bug #838385. Thanks to Josef Pavlik for finding and fixing
5676         * doc/sdccman.lyx: changed from 'article' to 'book'
5677         * doc/Makefile: readded test_suite_spec and cdbfileformat
5678
5679 2003-11-08 Bernhard Held <bernhard AT bernhardheld.de>
5680
5681         * device/include/stdlib.h: include malloc.h to comply with ANSI
5682         * support/regression/tests/malloc.c: include stdlib.h instead of malloc.h
5683
5684 2003-11-07 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5685
5686         * doc/Makefile: sdccman.pdf should build with correct references (more info in commit msg)
5687         * doc/clean.mk: also remove *.out files
5688         * doc/sdccman.lyx: some additions, larger top/bottom margins
5689
5690 2003-11-07 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5691
5692         * src/SDCC.y: fixed bug #837365
5693         * support/regression/tests/bitopcse.c
5694         * src/hc08/gen.c (genPointerGet): Don't assume pointer operand is
5695         a symbol (might be valop instead)
5696         * device/lib/Makefile.in: added errno.c to HC08SOURCES
5697         * device/lib/clean.mk: added hc08 to the cleaning list
5698
5699 2003-11-04  Borut Razem <borut.razem AT siol.net>
5700
5701         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h: reverted changes,
5702           made 2003-11-04
5703         * support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5704           as/z80/aslist.c, as/z80/assym.c: removed inclusion of nonstandard malloc.h;
5705           malloc is declared in standard stdlib.h
5706
5707 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5708
5709         * device/lib/hc08/Makefile: need to clean .rel not .o files
5710         * src/hc08/gen.c (genDjnz): can't use djnz with extended addressing mode
5711
5712 2003-11-06 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5713
5714         * src/port.h,
5715         * src/hc08/main.c,
5716         * src/mcs51/main.c,
5717         * src/ds390/main.c,
5718         * src/z80/main.c,
5719         * src/avr/main.c,
5720         * src/pic/main.c,
5721         * src/pic16/main.c,
5722         * src/xa51/main.c: added hasExtBitOp & oclsExpense functions to ports
5723         * src/SDCCicode.c: changed several IS_FARSPACE tests to isOclsExpensive
5724         tests (which uses the port's oclsExpense function)
5725         * src/SDCC.y,
5726         * src/SDCCast.c,
5727         * src/SDCCicode.c,
5728         * src/hc08/gen.c,
5729         * src/ds390/gen.c,
5730         * src/mcs51/gen.c: added support for the SWAP iCode (RFE #834167)
5731
5732 2003-11-04 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5733
5734         * src/SDCCcse.c (ifxOptimize),
5735         * src/SDCClabel.c (labelIfx, deleteIfx): When the condition to
5736         an IFX iCode is volatile, convert to DUMMY_READ_VOLATILE instead
5737         deleting the IFX iCode.
5738         * src/hc08/ralloc.c: reduced unneeded slocs
5739         * src/hc08/gen.c: fixed bug in asmopToBoolean
5740
5741 2003-11-04  Borut Razem <borut.razem AT siol.net>
5742
5743         * configure, configure.in, sdcc_vc_in.h, sdcconf_in.h,
5744           support/Util/NewAlloc.c, as/hc08/lklibr.c, as/mcs51/lklibr.c,
5745           as/z80/aslist.c, as/z80/assym.c: decision to include malloc.h
5746           transferred to configure
5747
5748 2003-11-03 Bernhard Held <bernhard AT bernhardheld.de>
5749
5750         Use headers defined in the C[++] standards:
5751         * sim/ucsim/gui.src/serio.src/fileio.cc
5752         * sim/ucsim/gui.src/serio.src/frontend.cc
5753         * sim/ucsim/gui.src/serio.src/main.cc
5754         * sim/ucsim/gui.src/serio.src/posix_signal.cc
5755         * support/Util/NewAlloc.c
5756         * as/hc08/lklibr.c
5757         * as/mcs51/lklibr.c
5758         * as/z80/aslist.c
5759         * as/z80/assym.c
5760
5761 2003-11-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
5762
5763         * Added MSVC projects for hc08 assembler and linker:
5764         all.dsp, config.dsp, sdcc.dsw, /as/hc08/as_hc08.dsp,
5765         /as/hc08/link_hc08.dsp
5766
5767 2003-11-03 Martin Helmling <Martin.Helmling AT octo-soft.de>
5768
5769         * debugger/mcs51/cmd.c: allows filename starting with digit(+ some debug)
5770
5771 2003-11-02 Bernhard Held <bernhard AT bernhardheld.de>
5772
5773         * src/SDCCmain.c (linkEdit): "fixed" again bug #833605
5774
5775 2003-11-01 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
5776
5777         * src/mcs51/main.c: xdata initialization is 13 bytes shorter now
5778
5779 2003-10-31  Borut Razem <borut.razem AT siol.net>
5780
5781         * support/cpp2/cpplib.h,
5782           support/cpp2/cpplib.c,
5783           support/cpp2/cpplex.c,
5784           support/cpp2/cppinit.c: introduced #pragma preproc_asm [ + | - ]
5785           to switch _asm block preprocessing on / off. Default is
5786           #pragma preproc_asm +
5787
5788 2003-10-31  Borut Razem <borut.razem AT siol.net>
5789
5790         * support/cpp2/cpplex.c: Fixed _WIN32 problem with CR-CR-LF sequences
5791           when outputting comment blocks (when executed with -C option) and
5792           _asm (SDCPP specific) blocks
5793
5794 2003-10-31 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5795
5796         * as/hc08/lkrloc.c (relr): Fixed ihx output, fixed lastAreaIndex warning
5797
5798 2003-10-31 Klaus Flittner <klaus_flittner AT gmx.de>
5799
5800         * src/SDCCcse.c (updateSpillLocation): fixed bug #808027
5801
5802 2003-10-31 Bernhard Held <bernhard AT bernhardheld.de>
5803
5804         * src/SDCCmain.c (linkEdit): "fixed" bug #833605
5805         * src/SDCCast.c (decorateType): fixed bug #832664
5806
5807 2003-10-31  Borut Razem <borut.razem AT siol.net>
5808
5809         * support\cpp2\cpplex.c: fixed for SDCPP:
5810           comments(when executed with -C option) and _asm blocks
5811           were included even if they where in skipped #if block.
5812           Applied solution from GCC cpp 3.3.2
5813
5814 2003-10-31  Borut Razem <borut.razem AT siol.net>
5815
5816         * src/SDCC.lex: sdcc now understands both formats:
5817           '# <line_number> <file_name>' and
5818           '#line <line_number> <file_name>'
5819         * support/cpp2/cppmain.c: sdcpp now generates the standard
5820           '# <line_number> <file_name>' instead of former
5821           '#line <line_number> <file_name>'
5822
5823 2003-10-30  Borut Razem <borut.razem AT siol.net>
5824
5825         * support/cpp2/cpphash.h,
5826         * support/cpp2/cpplib.h
5827         * support/cpp2/cpplex.c,
5828         * support/cpp2/cppmain.c,
5829         * support/cpp2/cppinit.c: fixed bug #828015 - Syntax variation for _asm character constants
5830
5831 2003-10-30 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5832
5833         Fixed a number of problems revealed by bug #827883.
5834         * src/SDCCloop.c (loopInvariants): Spill location of the
5835         result operand should be recomputed if extracted from
5836         a loop. Also, don't extract assignments of an iTemp
5837         from a literal.
5838         * src/SDCCast.c (isConformingBody): loop reversal should
5839         not occur if the control variable is involved with a
5840         relational operator.
5841
5842 2003-10-28 Bernhard Held <bernhard AT bernhardheld.de>
5843
5844         * .version: bumped to 2.3.6 to reflect the big improvements
5845         made by Erik and Klaus. Thanks!
5846
5847 2003-10-28 Klaus Flittner <klaus_flittner AT gmx.de>
5848
5849         Replaced the livrange code.
5850         * src/SDCClrange.c: added new LR code
5851         * src/SDCCloop.c,
5852         * src/SDCCBBlock.h: removed remainig parts from old LR code
5853         * src/ds390/ralloc.c,
5854         * src/ds390/gen.c: minor fixes to make it work with new code
5855
5856 2003-10-28 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5857
5858         * as/hc08/asm.h,
5859         * as/hc08/lkrloc.c,
5860         * src/hc08/gen.c,
5861         * src/hc08/ralloc.c: Fix various warnings related to the hc08
5862         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec): Fixed bug #829717
5863         (tweaked fix for bug #818696)
5864
5865 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5866
5867         * src/z80/ralloc.c (joinPushes): Fixed bug #828742
5868
5869 2003-10-23 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5870
5871         * src/SDCCmain.c,
5872         * sdccconf_in.h: Fixed bug #828387 (--disable-hc08-port didn't work)
5873         * src/mcs51/gen.c (gencjneshort),
5874         * src/ds390/gen.c (gencjneshort): Made comparison with AOP_IMMD operand
5875         more efficient (per Scott Bronson's suggestion)
5876
5877 2003-10-22 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5878
5879         Extended the semantics of the critical keyword to include
5880         individual statements. See RFE #827755 and #799831
5881         * src/SDCC.y
5882         * src/SDCCicode.c
5883         * src/SDCCopt.c
5884         * src/SDCCast.c
5885         * support/Util/SDCCerr.c
5886         * support/Util/SDCCerr.h
5887         * src/mcs51/gen.c
5888         * src/ds390/gen.c
5889         * src/hc08/gen.c
5890
5891 2003-10-19  Borut Razem <borut.razem AT siol.net>
5892
5893         * src/SDCC.lex: fixed bug #825944 - defined yytext_ptr to make it compile with flex 2.5.31
5894
5895 2003-10-19 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5896
5897         * src/SDCCicode.c (geniCodePreInc, geniCodePreDec, ast2iCode):
5898         Fixed bug #818696
5899         * src/SDCCast.c (ast_print): Fixed --dumptree so that preincrement
5900         and predecrement operand is displayed
5901
5902 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5903
5904         * src/SDCCval.c (valMinus): fixed bug #826041
5905
5906 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5907
5908         Some hc08 related updates that I missed earlier
5909         * sim/ucsim/stypes.h
5910         * support/regression/ports/hc08/spec.mk
5911
5912 2003-10-15 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5913
5914         New target "hc08" for the Motorola 68hc08 family of micros
5915
5916         * configure
5917         * configure.in
5918         * Makefile
5919         * src/hc08/*
5920         * src/SDCCmain.c
5921         * src/port.h
5922         * sim/ucsim/hc08.src/*
5923         * sim/ucsim/configure.in
5924         * src/ucsim/configure
5925         * sim/ucsim/packages_in.mk
5926         * as/hc08/*
5927         * as/Makefile
5928         * device/include/mc68hc908qy.h
5929         * device/lib/hc08/*
5930         * device/lib/Makefile.in
5931         * support/regression/ports/hc08/*
5932         * support/regression/Makefile
5933
5934 2003-10-14 Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5935
5936         * src/z80/gen.c: fixed bug revealed by ast_constant_folding.c
5937         regression test
5938         * src/ds390/gen.c (genCast): fixed bug #821957
5939
5940 2003-10-13 Bernhard Held <bernhard AT bernhardheld.de>
5941
5942         * device/lib/logf.c: "fixed" overlay bug
5943         * support/regression/ports/host/spec.mk: added m library
5944         * support/regression/ports/mcs51-stack-auto/spec.mk: added float funcs
5945         * support/regression/tests/float_trans: added (for Eric)
5946
5947 2003-10-12 Bernhard Held <bernhard AT bernhardheld.de>
5948
5949         * src/mcs51/gen.c (genCpl): fixed bug
5950         http://sf.net/mailarchive/message.php?msg_id=6263915
5951
5952 2003-10-10 Bernhard Held <bernhard AT bernhardheld.de>
5953
5954         * src/SDCCast.c (decorateType): added extended constant folding
5955         * src/SDCCsymt.c (computeType): cleanup
5956         * src/SDCCval.c (valShift): minor optimization
5957         * support/regression/tests/ast_constant_folding.c: added
5958
5959 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5960
5961         * src/SDCCmain.c: removed some unintended changes
5962
5963 2003-10-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
5964
5965         * src/SDCCmain.c (setParseWithComma): fixed bug #816685
5966         * src/z80/gen.c: fixed part of bug #817589
5967         * src/SDCCsymt.c (checkFunction): fixed bug #817895
5968
5969 2003-10-08 Bernhard Held <bernhard AT bernhardheld.de>
5970
5971         Replaced cast (void **) with (void *) to avoid gcc 3 warning:
5972         * src/SDCCcflow.c
5973         * src/SDCCcse.c
5974         * src/SDCCdflow.c
5975         * src/SDCClabel.c
5976         * src/SDCClrange.c
5977         * src/SDCCmem.c
5978         * src/SDCCopt.c
5979         * src/SDCCpeeph.c
5980         * src/SDCCset.c
5981         * src/avr/ralloc.c
5982         * src/ds390/ralloc.c
5983         * src/izt/ralloc.c
5984         * src/mcs51/ralloc.c
5985         * src/pic/ralloc.c
5986         * src/pic16/ralloc.c
5987         * src/xa51/ralloc.c
5988         * src/z80/ralloc.c
5989         * src/z80/gen.c: removed unused label "release:"
5990
5991 2003-10-06  Borut Razem <borut.razem AT siol.net>
5992
5993         * src/SDCC.lex: removed definition of unused variables
5994           save_optimize and save_options
5995
5996 2003-10-06 Bernhard Held <bernhard AT bernhardheld.de>
5997
5998         * clean.mk: removed '=' in "-maxdepth=1"
5999         * src/SDCCloop.c: replace LRKLAUS with SDCC_LRKLAUS
6000         * src/SDCClrange.c: replace LRKLAUS with SDCC_LRKLAUS
6001
6002 2003-10-06  Borut Razem <borut.razem AT siol.net>
6003
6004         * src/SDCC.lex, src/SDCC.lex: use dbuf for "_asm" definitions;
6005           my_unput() replaced by unput()
6006
6007 2003-10-05 Bernhard Held <bernhard AT bernhardheld.de>
6008
6009         * src/SDCCloop.c (assignmentsToSym, loopInduction): cast argument of
6010         setToNull() to (void *) to avoid gcc3.x's warning: "dereferencing
6011         type-punned pointer will break strict-aliasing rules"
6012         Old LR behaviour is again default; Klaus' LR can be choosen by
6013         defining the environment variable LRKLAUS
6014         * src/SDCCBBlock.h
6015         * src/SDCCloop.c
6016         * src/SDCClrange.c
6017         * src/ds390/ralloc.c (spillThis): applied Klaus' patch
6018         * clean.mk: fixed removal of files in bin/CVS/
6019         * device/lib/clean.mk: fixed removal of directories small and large
6020         * support/Util/SDCCerr.c: changed W_INT_OVL to ERROR_LEVEL_PEDANTIC
6021         * src/SDCCicode.c,
6022         * src/SDCCval.c: removed superflous test for pedantic
6023
6024 2003-10-05  Borut Razem <borut.razem AT siol.net>
6025
6026         * src/SDCC.lex, support/Util/SDCCerr.c, sdcc/support/Util/SDCCerr.h:
6027           Fixed bug #816692: introduced new ERROR_LEVEL_PEDANTIC warning
6028           message "unmatched #pragma SAVE and #pragma RESTORE"
6029
6030 2003-10-04  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6031
6032         * doc/sdccman.lyx: various additions and updates (interrupts, inline
6033           assembly, critical functions, atomic, nojtbound)
6034
6035 2003-10-04 Bernhard Held <bernhard AT bernhardheld.de>
6036
6037         Applied liferange patch from Klaus Flittner <klaus_flittner AT gmx.de>
6038         * src/SDCCBBlock.h
6039         * src/SDCCloop.c
6040         * src/SDCCloop.h
6041         * src/SDCClrange.c
6042
6043 2003-10-03  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6044
6045         * src/z80/gen.h,
6046         * src/z80/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6047         * src/mcs51/gen.h
6048         * src/mcs51/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6049         * src/ds390/gen.h
6050         * src/ds390/gen.c (aopOp, aopGet, aopPut, genDummyRead),
6051         * src/SDCCicode.c (ast2iCode, geniCodeDummyRead): Fixed bug #663539
6052         * src/SDCCopt.c (killDeadCode): Fixed bugs #663539 & #816705
6053
6054 2003-10-02  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6055
6056         * src/z80/gen.c (genRet): fixed bug #524753
6057         * src/z80/gen.c (genCast): fixed internal error on cast from
6058         pointer to long
6059         * src/z80/gen.c (_saveRegsForCall, emitCall): adapted Johan's
6060         fix for bug #477835 to the z80
6061         * src/z80/gen.c (genZ80code, _vemit2, _emit2): added support
6062         for tracking iCodes in the peephole optimizer for z80
6063
6064 2003-10-01  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6065
6066         * src/SDCCicode.c (geniCodeJumpTable, geniCodeSwitch): fixed
6067         the other part of bug #814548
6068         * src/SDCCpeeph.c (labelInRange): fixed bug #814558
6069
6070 2003-09-30  Bernhard Held <bernhard AT bernhardheld.de>
6071
6072         * src/SDCCcse.c: fixed part of bug #814548
6073
6074 2003-09-28  Borut Razem <borut.razem AT siol.net>
6075
6076         * src/asm.c: rewrite of printILine() to use temporary file instead
6077           a pipe
6078         * src/xa51/main.c: commented out declaration of int rewinds
6079
6080 2003-09-27  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6081
6082         * src/SDCCicode.c (geniCodeJumpTable): Fixed bug #813206
6083
6084 2003-09-26  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6085
6086         * src/SDCCdflow.c (computeDataFlow): Fixed bug #810746
6087         * src/asm.c (printILine): Fixed bug #811015
6088
6089 2003-09-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6090
6091         *link/z80/lklibr.c, as/mcs51/lklibr.c: Improved memory allocation and
6092         freeing.
6093
6094 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6095
6096         * src/z80/gen.c (setupToPreserveCarry): Fixed bug #796955
6097         * src/z80/gen.c (setupPair, genMovePairPair): Fixed setupPair
6098         to correctly handle general case of AOP_PAIRPTR
6099         * src/z80/gen.c (aopGet, aopPut): Generalized AOP_PAIRPTR handling
6100
6101 2003-09-21  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6102
6103         * src/mcs51/ralloc.c (fillGaps),
6104         * src/ds390/ralloc.c (fillGaps): fixed bug #810093 (yet another
6105         register positioning bug)
6106
6107 2003-09-21  Bernhard Held <bernhard AT bernhardheld.de>
6108
6109         * device/lib/_fsdiv.c: replaced (1<<31) by (1ul<<31)
6110
6111 2003-09-19  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6112
6113         * src/mcs51/gen.c (loadDptrFromOperand, genFarPointerGet,
6114         genCodePointerGet, genGenPointerGet, genFarPointerSet,
6115         genGenPointerSet): handle AOP_DPTR correctly when loading dptr
6116         (ralloc doesn't intentionally do this now, but perhaps later)
6117         * src/mcs51/ralloc.c (serialRegAssign, fillGaps),
6118         * src/ds390/ralloc.c (serialRegAssign, fillGaps): fixed some
6119         register positioning bugs (Fixed bug #762602 and #795325)
6120         * src/SDCCicode.c (geniCodeDerefPtr): Track output class correctly
6121         (Fixed bug #808779)
6122         * src/z80/gen.c: increased _vemit2's buffer[] to handle long
6123         lines that --i-code-in-asm generates
6124
6125 2003-09-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6126
6127         *link/z80/lklibr.c, as/mcs51/lklibr.c: Fixed Linux segfaults when
6128         trying to fclose a FILE* that was already closed.
6129
6130 2003-09-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6131
6132         * src/SDCCsymt.c (structElemType): fixed bug #808291 (members
6133         of const struct should be treated as if const themselves)
6134
6135 2003-09-18  Bernhard Held <bernhard AT bernhardheld.de>
6136
6137         * src/SDCCval.c (valPlus, valMinus): fixed bug #808337
6138
6139 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6140
6141         * support/librarian/sdcclib.c: Generate correct offsets for libraries with
6142         Unix (/n) and DOS (/r/n) line terminations.
6143
6144 2003-09-17  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6145
6146         * src/SDCCopt.c (cnvFromFloatCast, cnvToFloatCast): fixed
6147         bug #613775
6148
6149 2003-09-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6150
6151         * src/mcs51/gen.c (genFunction, genEndFunction),
6152         * src/ds390/gen.c (genFunction, genEndFunction): Moved save
6153         and restore of EA so that stack offsets to parameters are
6154         correct when using both critical and reentrant/stack-auto.
6155         * src/z80/gen.c (aopOp): removed erroneous assertion about sloc
6156         size (can be triggered in error if sloc is shared between
6157         different sized objects)
6158         * device/include/float.h: fixed macros to explicitly use
6159         unsigned long where needed
6160
6161 2003-09-15  Bernhard Held <bernhard AT bernhardheld.de>
6162
6163         Feature req. 799831: added code to allow nesting of critical functions
6164         * src/mcs51/gen.c (genFunction, genEndFunction)
6165         * src/ds390/gen.c (genFunction, genEndFunction)
6166
6167 2003-09-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6168
6169         * src/SDCCsymt.c (sclsFromPtr),
6170         * src/SDCCsymt.h,
6171         * src/SDCCast.c (decorateType): fixed bug #462971. Also, better
6172         support for standard C idiom of memory mapped variables; for
6173         example, *((xdata int*)0x1234) = 1 is now internally equivalent
6174         to xdata int at 0x1234 tempvar = 1.
6175         * sim/ucsim/z80.src/inst_xd.cc: fixed bug #805483 with patch
6176         provided by Akiya ISHIDA
6177
6178 2003-09-13  Bernhard Held <bernhard AT bernhardheld.de>
6179
6180         * src/SDCCval.c (cheapestVal): reenabled to reduce int to char
6181         * src/SDCCval.c (constVal): added reduction from int to char
6182         * src/SDCCval.c (valMult, valDiv): fixed sign handling
6183         * src/SDCCval.c (valShift): fixed after change of cheapestVal()
6184         * src/SDCCval.c (valCompare): fixed EQ_OP and NE_OP; they have
6185         to ignore the sign
6186         * support/regression/tests/shifts.c: fixed
6187
6188 2003-09-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6189
6190         * src/z80/gen.c (genXor): Fixed bug #805445
6191
6192 2003-09-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6193
6194         Fixed bug #621531 (const & volatile confusion in the type chain).
6195         DCL_PTR_CONST, DCL_PTR_VOLATILE, & IS_PTR_CONST now exclusively
6196         refer to the const or volatile state of the pointer itself.
6197
6198         * src/SDCCast.c
6199         * src/SDCCglue.c
6200         * src/SDCCicode.c
6201         * src/SDCCsymt.c
6202         * src/SDCCval.c
6203         * src/SDCC.y
6204         * src/SDCCsymt.h
6205         * src/pic/gen.c
6206         * src/pic/ralloc.c
6207         * src/pic16/gen.c
6208         * src/pic16/ralloc.c
6209         * support/regression/tests/const.c
6210
6211 2003-09-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6212
6213         When checking for duplicated modules, use absolute paths
6214         instead of relative paths.  Files changed:
6215
6216         * as/mcs51/lklib.c
6217         * link/z80/lklib.c
6218
6219 2003-09-09  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6220
6221         * src/SDCCicode.c (geniCodeLogic): fixed bug #797572
6222
6223 2003-09-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6224
6225         * device/include/string.h: added size_t typedef, changed
6226         prototypes to use size_t, eliminated separate reentrant and
6227         non-reentrant declarations, added _memmove declaration
6228         * device/lib/_memcpy.c: changed to use size_t instead of int,
6229         changed /4 to >>2 to avoid division library call
6230         * device/lib/_memcmp.c,
6231         * device/lib/_memset.c,
6232         * device/lib/_strncat.c,
6233         * device/lib/_strncpy.c,
6234         * device/lib/_strncmp.c: changed to use size_t instead of int
6235         * device/lib/_memmove.c: new file (fixed bug #772294)
6236         * device/lib/Makefile.in: added _memmove.c
6237         * device/lib/z80/asm_strings.s: fixed bug #772290
6238         * support/regression/tests/bitfields.c: attempt to fix host assertion
6239         failure on amd64-unknown-linux2.2
6240
6241 2003-09-06  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6242
6243         * src/z80/gen.c (aopPut, spillPairReg): fixed bug #800998
6244         * src/z80/gen.c (genFunction, genEndFunction): fixed "bug" #774700
6245         * as/z80/asmain.c (main): fixed bug #801766
6246
6247 2003-09-06  Bernhard Held <bernhard AT bernhardheld.de>
6248
6249         * src/SDCCicode.c (ast2iCode): fixed differences in iCode with different
6250         compilers
6251
6252 2003-09-05  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6253
6254         * src/SDCCast.c (isConformingBody): fixed loop reversal bug
6255         reported in bug #800609
6256
6257 2003-09-04  Vangelis Rokas <vrokas AT otenet.gr>
6258
6259         * Top header beautifications in src/pic16 directory:
6260           device.c, device.h, gen.c, gen.h, genarith.c, glue.c, pcode.c,
6261           pcodeflow.c, pcodeflow.h, pcode.h, pcodepeep.c, pcoderegs.c,
6262           pcoderegs.h, ralloc.c, ralloc.h
6263         * main.c: added top header and GPL license notice
6264         * pcode.c: fixed the if-conditional warning
6265
6266 2003-09-04  Bernhard Held <bernhard AT bernhardheld.de>
6267
6268         * device/lib/_mullong.c: replaced int by short for gcc
6269
6270 2003-08-31  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6271
6272         * src/SDCCpeeph.c (notVolatile, notVolatileVariable): handle IFX
6273         and JUMPTABLE iCodes properly now (worked by accident before)
6274         * src/mcs51/gen.c (leftRightUseAcc),
6275         * src/ds390/gen.c (leftRightUseAcc): handle IFX and JUMPTABLE
6276         iCode properly now. Use getSize instead of nRegs since a & b
6277         aren't part of the nRegs tally.
6278
6279 2003-08-31  Vangelis Rokas <vrokas AT otenet.gr>
6280
6281         * src/pic16/main.c: corrected offsets of interrupt vectors in _pic16_genIVT()
6282         * src/pic16/pcode.c: fix to disable inserting BANKSEL directive
6283           before instructions that use the _STATUS register
6284
6285 2003-08-31  Bernhard Held <bernhard AT bernhardheld.de>
6286
6287         * src/mcs51/gen.c (freeAsmop): fixed off by one in stack offset (AOP_STK)
6288         * src/mcs51/gen.c (genNearPointerSet): added missing opcode for
6289         fetching of the pointer
6290         * src/mcs51/gen.c (genNearPointerGet): added reuse of PREG,
6291         copied from genNearPointerSet()
6292         * src/mcs51/gen.c (genNearPointerGet): don't pop r0/r1, if RESULTONSTACK
6293         * src/mcs51/gen.c: changed order of freeAsmop(left/right/result)-calls.
6294         If they pop r0/r1 they must be called in the opposite order than aopOp().
6295         * device/lib/_mullong.c: fixed for "--model-large --int-long-reent"
6296         (resp. --stack-auto), prepared for --xstack
6297
6298 2003-08-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6299
6300         * doc/sdccman.lyx: reverted tables to those in cvs 1.64
6301
6302 2003-08-28  Bernhard Held <bernhard AT bernhardheld.de>
6303
6304         * device/lib/_startup.c: quick & dirty fix for ds390/ds400;
6305         these ports have their own __sdcc_external_start()
6306
6307 2003-08-26  Bernhard Held <bernhard AT bernhardheld.de>
6308
6309         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6310         * src/pic/glue.c (pic14printPublics): fixed bug introduced when symbol
6311         type for bits was changed. It resulted in bit variables becoming
6312         global, which is not permitted in PIC 14 assembly output.
6313
6314 2003-08-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6315
6316         * doc/sdccman.lyx: various additions and updates. Rearranged sections
6317
6318 2003-08-22  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6319
6320         Z80 and MCS51 linkers complaint if a public symbol is defined
6321         in more than one library module:
6322
6323         * as/mcs51/lklib.c
6324         * link/z80/lklib.c
6325         * as/mcs51/Makefile.in
6326
6327 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6328
6329         A few small changes that speed up the peephole optimizer.
6330
6331         * src/SDCCpeeph.c
6332
6333 2003-08-22  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6334
6335         Try to make the peephole optimizer smarter by maintaining
6336         an association between the assembly source code and the
6337         iCodes that originated them. Put this information to use
6338         with a new peephole rule condition "notVolatile" so that
6339         the rules can be aggressive yet still safe.
6340
6341         * src/SDCCpeeph.c
6342         * src/SDCCpeeph.h
6343         * src/mcs51/gen.c
6344         * src/mcs51/peeph.def
6345
6346 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6347
6348         Fixed bug #741761
6349
6350         * src/mcs51/gen.c (aopForSym, leftRightUseAcc),
6351         * src/ds390/gen.c (aopForSym, leftRightUseAcc): preserve A and B
6352         if the left or right operand symbols have the accuse flag set.
6353
6354 2003-08-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6355
6356         Changed the type of the result of the ! (NOT) operator to char;
6357         previously it returned the same type as the source. This allows
6358         us to eliminate all the genFloatNot functions (all of its target
6359         implementations were very buggy) since !float can use the same
6360         code as !long now.
6361
6362         * src/SDCCicode.c (ast2iCode): ! returns char
6363         * src/mcs51/gen.c (genNot, genNotFloat),
6364         * src/ds390/gen.c (genNot, genNotFloat),
6365         * src/z80/gen.c (genNot, genNotFloat),
6366         * src/pic/gen.c (genNot, genNotFloat),
6367         * src/pic16/gen.c (genNot, genNotFloat): eliminated genNotFloat
6368
6369 2003-08-19  Bernhard Held <bernhard AT bernhardheld.de>
6370
6371         pic patch provided by Slade Rich <slade_rich AT yahoo.com>
6372         1. Interrupt would not compile properly. Ensure PCLATH register is saved
6373            during interrupts. Ensure WSAVE is located at a shared bank address.
6374         2. Fixed page selection in some places
6375         3. Fixed BTFSS/C to where necessary use registers directly and not simply
6376            the registers name strings.
6377         4. Fixed "signed / unsigned compare" compiler warnings.
6378         5. The PIC port manages its own allocation of the general purpose
6379            registers, but makes no attempt to reuse them. As a result when
6380            compiling it soon runs out of general purpose registers. Some
6381            additional code was added to the files pcode.c and device.c to walk
6382            through the function call tree and rename the registers so that they
6383            get reused.
6384
6385         * src/pic/device.c
6386         * src/pic/gen.c
6387         * src/pic/glue.c
6388         * src/pic/pcode.c
6389         * src/pic/pcode.h
6390         * src/pic/ralloc.c
6391         * src/pic/ralloc.h
6392         * src/pic/genarith.c: Fixed problems with PIC 14 port in functions
6393         genPlus() & genMinus() when the result is the same as left or right
6394
6395 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6396
6397         * src/z80/gen.c (isUnsplitable, fetchPairLong): fixed bug #770454
6398
6399 2003-08-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6400
6401         Made bitfield a distinct type from bit so that bitfields
6402         convert as per ANSI C and bits retain their traditional
6403         boolean style behaviour. Implemented bitfield support in
6404         the z80 port.
6405
6406         * src/SDCCsymt.h,
6407         * src/SDCCsymt.c,
6408         * src/SDCCast.c,
6409         * src/cdbFile.c,
6410         * src/mcs51/gen.c,
6411         * src/ds390/gen.c: bit v bitfield split
6412         * src/z80/gen.c: New support for bitfields
6413         * support/regression/tests/bitfields.c: reenabled z80,
6414         added more tests
6415
6416 2003-08-17  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6417
6418         Rules 246.x, 247.x relate to bitfields, the others speed up
6419         access to xdata mapped I/O devices.
6420
6421         * src/mcs51/peeph.def: added 26 peepholes 246.x - 248.x, 180.x
6422
6423 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6424
6425         Cleaned up genPackBits and genUnpackBits and added two helper
6426         functions, emitPtrByteGet & emitPtrByteSet. Added optimizations
6427         for literal assignments in genPackBits (thanks to Frieder for
6428         reminding me).
6429
6430         * src/mcs51/gen.c
6431         * src/ds390/gen.c
6432
6433 2003-08-16  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6434
6435         Fixed bug #748310 (pointer to function type mishandled when the
6436         function name is omitted). Also fixed a SIGSEGV when a function
6437         attribute (reentrant, etc) is used on a non-function or on a
6438         function but misplaced before the parameter list.
6439
6440         * src/SDCC.y (abstract_declarator, abstract_declaractor2): fixed
6441         bug #748310
6442         * src/SDCC.y (declarator2_function_attributes): avoided SIGSEGV
6443         * support/Util/SDCCerr.h,
6444         * support/Util/SDCCerr.c: Added func attr misuse error msg
6445
6446 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6447
6448         Fixed bug #787649 by anonymous
6449         * src/SDCCglue.c (emitRegularMap): added emission of sloc for func ptr
6450         * src/ds390/gen.c (aopForSym): fixed func ptr in sloc
6451
6452 2003-08-14  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6453
6454         Fixed numerous bitfield problems.
6455
6456         * src/SDCC.y: More bitfield related error checking
6457         * src/SDCCsymt.h,
6458         * src/SDCCsymt.c (compStructSize): fixed bitfield offset calc
6459         * support/Util/SDCCerr.h,
6460         * support/Util/SDCCerr.c: Added & edited some bitfield err msgs
6461         * src/mcs51/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6462         * src/ds390/gen.c (genPackBits, genUnpackBits): fixed mask bugs
6463         * support/regression/tests/bitfields.c: tests added
6464
6465 2003-08-13  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6466
6467         Made the constant following the "interrupt" keyword optional. If
6468         omitted, the function will not automatically be given an entry
6469         in the interrupt vector table (similar to #pragma NOIV, but
6470         less syntacticly kludgy). The interrupt number is also now
6471         range checked. Also fixed a bug in the high order bit example
6472         in the manual.
6473
6474         * src/SDCC.y
6475         * src/SDCCmem.c
6476         * src/SDCCglue.c
6477         * src/SDCCsymt.h
6478         * support/Util/SDCCerr.c
6479         * support/Util/SDCCerr.h
6480         * doc/sdccman.lyx
6481
6482 2003-08-13  Bernhard Held <bernhard AT bernhardheld.de>
6483
6484         * src/SDCCcse.c (algebraicOpts): fix bug converting op from value to type
6485         * src/SDCCicode.c (operandOperation): rewritten some ops
6486         (*, ==, unary_minus) to fix possible overflows and to accord with ANSI
6487         * src/SDCCsymt.c (computeType): literals are handled the same way as any
6488         other type
6489         * src/SDCCval.c (cheapestVal): removed, it doesn't accord with ANSI (can
6490         be re-activated by defining REDUCE_LITERALS)
6491         * src/SDCCval.c (constVal): fixed; hex and octal constants can be
6492         unsigned, but are signed by default
6493         * src/SDCCval.c (constVal): rearranged
6494         * src/SDCCval.c (valMod): preliminary fix
6495         * src/SDCCval.c (valCastLiteral): use TYPE_* types
6496         * support/regression/literalop.c: added, work in progress
6497
6498 2003-08-12  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6499
6500         Generate warnings for useless declarations like "char data;"
6501         that don't do what new users expect.
6502
6503         * src/SDCC.y
6504         * support/Util/SDCCerr.h
6505         * support/Util/SDCCerr.c
6506
6507 2003-08-09  Bernhard Held <bernhard AT bernhardheld.de>
6508
6509         * src/SDCCval.c (valMult): fix overflow detection of negative int
6510
6511 2003-08-07  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6512
6513         * src/z80/ralloc.c (joinPushes): made compatible with new signedness
6514
6515         Changes to support big endian targets:
6516
6517         * src/ports.h
6518         * src/SDCCglue.c
6519         * src/avr/main.c
6520         * src/ds390/main.c
6521         * src/izt/i186.c
6522         * src/mcs51/main.c
6523         * src/pic/main.c
6524         * src/pic16/main.c
6525         * src/xa51/main.c
6526         * src/z80/main.c
6527
6528 2003-08-06  Bernhard Held <bernhard AT bernhardheld.de>
6529
6530         * src/SDCCval.c (cheapestVal): changed behaviour to the same as constVal()
6531         * device/lib/time.c: fixed warning "integer overflow in expression"
6532
6533 2003-08-05  Bernhard Held <bernhard AT bernhardheld.de>
6534
6535         * src/SDCCval.c (cheapestVal, valueFromLit): use TYPE_* types
6536         * src/SDCCval.c (constVal): changed default to signed; hex and octal
6537         constants are unsigned; added recognition of "u" flag for unsigned
6538         * src/SDCCval.c (valMult): fixed signdness, added warning for overflow
6539         * src/SDCCval.c (valDiv, valMod): fixed signdness
6540         * src/SDCCicode.c (operandOperation): fixed critical typo; fixed
6541         signedness of modulo, left and right shift
6542         * support/Util/SDCCerr.c: added warning "integer overflow in expression"
6543         * support/Util/SDCCerr.h: added warning W_INT_OVL
6544         * src/SDCCast.c (decorateType): fixed gcc3.3 warning
6545         * src/SDCCast.c (ast_print): improved output of constants
6546
6547 2003-08-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6548
6549         Fixed some warnings when building with MSVC:
6550
6551         * as\mcs51\asdata.c
6552         * as\z80\asdata.c
6553         * as\mcs51\asm.h
6554         * as\z80\asm.h
6555         * link\z80\aslink.h
6556         * link\z80\lkdata.c
6557         * link\z80\lkeval.c
6558         * link\z80\lkgb.c
6559         * link\z80\lkihx.c
6560         * link\z80\lks19.c
6561         * link\z80\lksym.c
6562         * support\cpp2\cpplib.c
6563         * src\ds390\gen.c
6564         * src\mcs51\gen.c
6565
6566 2003-08-03  Bernhard Held <bernhard AT bernhardheld.de>
6567
6568         * src/SDCCast.c (constExprTree): fix bug #781827 by Carl Worth <cworth AT isi.edu>
6569
6570 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6571
6572         * support\librarian\clean.mk: Do not remove Makefile.
6573         * support\librarian\Makefile: added.
6574
6575 2003-08-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6576
6577         Added librarian to MSVC build:
6578         * all.dsp
6579         * sdcc.dsw
6580         * support\librarian\librarian.dsp
6581
6582         'configure' not needed for librarian, removed:
6583         * support\librarian\configure
6584         * support\librarian\configure.in
6585         * support\librarian\config_in.h
6586         * support\librarian\Makefile.in
6587
6588         Hopefully these ones built the librarian and the rest of sdcc properly:
6589         * Makefile
6590         * Makefile.common.in
6591
6592         Messed up 'configure', so revert to previous version:
6593         * configure
6594         * configure.in
6595
6596 2003-07-31  Bernhard Held <bernhard AT bernhardheld.de>
6597
6598         * src/SDCCicode.c (operandOperation): 3. fix, this time for Alpha; ULONG has 64 bits
6599         there, while the mantissa of a double is "only" 53 bits wide.
6600
6601 2003-07-31  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6602
6603         Adding sdcclib to the build.  MSVC project coming soon.
6604         Files added/changed:
6605
6606         * support\librarian\clean.mk
6607         * support\librarian\configure
6608         * support\librarian\configure.in
6609         * support\librarian\config_in.h
6610         * support\librarian\Makefile.bcc
6611         * support\librarian\Makefile.in
6612         * support\librarian\sdcclib.c
6613         * Makefile.bcc
6614         * Makefile
6615         * Makefile.common.in
6616         * configure
6617         * configure.in
6618
6619 2003-07-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6620
6621         Linker now complaints if linked modules have conflicting options, for
6622         example, one compiled using --model-large and another one compiled with
6623         --model-small.  The following files were modified:
6624
6625         * as\mcs51\asdata.c
6626         * as\mcs51\aslink.h
6627         * as\mcs51\asm.h
6628         * as\mcs51\asmain.c
6629         * as\mcs51\asout.c
6630         * as\mcs51\i51pst.c
6631         * as\mcs51\lkdata.c
6632         * as\mcs51\lklibr.c
6633         * as\mcs51\lkmain.c
6634         * as\z80\asdata.c
6635         * as\z80\asm.h
6636         * as\z80\asmain.c
6637         * as\z80\asout.c
6638         * as\z80\z80pst.c
6639         * link\z80\aslink.h
6640         * link\z80\lkdata.c
6641         * link\z80\lklibr.c
6642         * link\z80\lkmain.c
6643         * src\SDCCglue.c
6644
6645 2003-07-28  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6646
6647         *link/z80/aslink.h, link/z80/lklibr.c, as/mcs51/aslink.h,
6648         as/mcs51/lklibr.c: Generate a warning when a library is not found.
6649
6650 2003-07-28  Bernhard Held <bernhard AT bernhardheld.de>
6651
6652         * src/z80/mappings.i: fix _mul[us][int,long] entries
6653
6654 2003-07-26  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6655
6656         *src/SDCCmain.c: do not search for crt0.o when using --nostdlib
6657
6658 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6659
6660         * src/SDCCicode.c (operandOperation): really fixed problem with bitops
6661         * support/regression/tests/bitopcse.c: added
6662         fixed warning:
6663         * src/avr/gen.c:
6664         * src/pic/gen.c:
6665         * src/pic16/gen.c:
6666         * src/z80/gen.c:
6667         * src/xa51/gen.c:
6668
6669 2003-07-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6670
6671         added support for new library format to z80, gbz80 linkers:
6672         *link/z80/aslink.h
6673         *link/z80/lklex.c
6674         *link/z80/lklib.c
6675         *link/z80/lklist.c
6676
6677 2003-07-24  Bernhard Held <bernhard AT bernhardheld.de>
6678
6679         * src/SDCCicode.c (operandOperation): fixed problem with bitops and 0xffffffff;
6680         after {double d = 0xffffffff; long l = d;} l will be 0x80000000 (LONG_MIN)
6681
6682 2003-07-23  Bernhard Held <bernhard AT bernhardheld.de>
6683
6684         added DUMMY_READ_VOLATILE:
6685         * src/SDCC.y:
6686         * src/avr/gen.c:
6687         * src/xa51/gen.c:
6688         * src/z80/gen.c:
6689         * src/pic/gen.c:
6690         * src/pic16/gen.c:
6691         * src/mcs51/gen.c:
6692         * src/ds390/gen.c:
6693         * src/SDCCcse.c (algebraicOpts): many improvements
6694         * src/SDCCcse.h: removed algebraicOpts()
6695         * src/SDCCicode.c (picDummyRead): added
6696
6697 2003-07-23  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6698
6699         * as/mcs51/lkmem.c: Changed message "Insufficient DRAM memory" to
6700         "Insufficient space in data memory".
6701
6702 2003-07-20  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6703
6704         * src/mcs51/gen.c: fixed bug #771358
6705         * src/z80/gen.c: fixed bug #759087
6706
6707 2003-07-20  Bernhard Held <bernhard AT bernhardheld.de>
6708
6709         * src/pic16/glue.c: minor cleanup by Vangelis
6710
6711 2003-07-19  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6712
6713         * device/include/regc515c.h: fixed #758477
6714         * device/lib/_gptrget.c: saving some cycles in generic pointer get
6715         * device/lib/_gptrput.c: saved a few bytes
6716         * my tab spacing is 8, yours too?)
6717         * device/lib/_ser.c: process RX bytes earlier than TX bytes
6718         * device/lib/serial.c: process RX bytes earlier than TX bytes
6719         * src/mcs51/gen.c(genGenPointerGet/Set): removed writing of type after postincrement
6720
6721 2003-07-18  Erik Petrich <epetrich AT ivorytower.norman.ok.us>
6722
6723         * src/z80/gen.c: fixed some right shift bugs (#772726 among them)
6724
6725 2003-07-17  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6726
6727     * link/z80/lklibr.c: fixed bug when there is a '.' in a library path.
6728
6729 2003-07-17  Bernhard Held <bernhard AT bernhardheld.de>
6730
6731         * device/lib/Makefile.in: bad fix, reverted to 1.43
6732
6733 2003-07-16  Bernhard Held <bernhard AT bernhardheld.de>
6734
6735         * device/lib/Makefile.in: added missing z80 object files
6736
6737 2003-07-14  Bernhard Held <bernhard AT bernhardheld.de>
6738
6739         * src/SDCCcse.c (algebraicOpts): CSE fun with &|^ and 0x00/0xff literals
6740         pic16 progress by Vangelis:
6741         * src/SDCCglobl.h:
6742         * src/SDCCmain.c:
6743         * src/pic/Makefile:
6744         * src/pic:
6745         * pic/Makefile:
6746         * pic16/device.c:
6747         * pic16/device.h:
6748         * pic16/gen.c:
6749         * pic16/gen.h:
6750         * pic16/genarith.c:
6751         * pic16/glue.c:
6752         * pic16/main.c:
6753         * pic16/pcode.c:
6754         * pic16/pcode.h:
6755         * pic16/pcodepeep.c:
6756         * pic16/peeph.def:
6757
6758 2003-07-13  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6759
6760     * src/SDCCmain.c, src/SDCCglobl.h: added option --no-std-crt0
6761
6762 2003-07-12  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6763
6764     * sdcc.dsw, all.dsp, link/z80/linkgbz80.dsp, as/z80/as-gbz80.dsp:
6765     added gbz80 build to MSVC project.
6766     * src/SDCCmain.c, src/SDCCglue.c, src/z80/main.c, src/z80/z80.dsp,
6767     link/z80/aslink.h, linkz80.dsp: cleaned up z80 and gbz80 asm files
6768     from 8051 stuff and setup so it links using a .lnk file.
6769
6770 2003-07-06  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6771
6772     * support/librarian/sdcclib.c: sdcc librarian.
6773     * as/mcs51/aslink.h, as/mcs51/lklib.c: Support for libraries created
6774     with sdcclib.
6775
6776 2003-07-03  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6777
6778     * as/mcs51/lkmain.c: properly handle extensions in function afile.
6779
6780 2003-07-02  Borut Razem <borut.razem AT siol.net>
6781
6782         * src/port.h, src/SDCCmain.c, src/pic/glue.h, src/pic/main.c,
6783         src/pic16/glue.h, sdcc/src/pic16/main.c, src/izt/i186.c,
6784         src/izt/tlcs900h.c, src/avr/main.c, src/ds390/main.c, src/mcs51/main.c,
6785         src/xa51/main.c, src/z80/main.c:
6786         virtualization of glue() function: each port has it's own glue function,
6787         which is accessed by do_glue function pointer in PORT.general structure
6788
6789 2003-07-01 Kevin Vigor <kevin AT vigor.nu>
6790
6791         * DS800C400 fun, improved ROM interface and tinibios.
6792
6793 2003-06-27 Kevin Vigor <kevin AT vigor.nu>
6794
6795         * More support for DS80C400. Now includes beginning of interface to ROM.
6796
6797 2003-06-25  Bernhard Held <bernhard AT bernhardheld.de>
6798
6799         * src/mcs51/gen.c (gencjneshort): fixed bug #760345
6800
6801 2003-06-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6802
6803         * as/mcs51/lkaomf51.c: Make sure the size of the last procedure is correct.
6804
6805 2003-06-19  Borut Razem <borut.razem AT siol.net>
6806
6807         * src/z80/main.c: fixed Z80 port again: missing -k library paths in linker command line
6808
6809 2003-06-19  Borut Razem <borut.razem AT siol.net>
6810
6811         * src/SDCCutil.h, src/SDCCutil.c, src/SDCCglobl.h, src/SDCCmain.c, src/z80/main.c:
6812         fixed Z80 port - crt0.o: cannot open.
6813
6814 2003-06-19  Bernhard Held <bernhard AT bernhardheld.de>
6815
6816         * support/Util/MySystem.c (merge_command): revert bad fix
6817
6818 2003-06-18  Borut Razem <borut.razem AT siol.net>
6819
6820         * src/SDCC.lex, src/SDCCmain.c: fixed some warnings, introduced with changes made 15.06.1003
6821
6822 2003-06-18  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6823
6824         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6825         option --use-stdout sends errors to stdout instead of stderr.
6826
6827 2003-06-18  Bernhard Held <bernhard AT bernhardheld.de>
6828
6829         * support/Util/MySystem.c (merge_command): quick fix for Linux segfault with \"cmd\" arg
6830
6831 2003-06-15  Borut Razem <borut.razem AT siol.net>
6832
6833         * support/cpp2/sdcc.h: HAVE_DOS_BASED_FILE_SYSTEM defined for _WIN32
6834         * src/SDCC.lex: cloneXxx and copyAndFreeXxx functions for options and optimize stack handling
6835         * src/SDCCglobl.h, src/SDCCmain.c, src/ds390/main.c, src/mcs51/main.c, src/z80/main.c:
6836         fixed width array of pointers replaced with sets;
6837         multiple include and lib paths ared transferred to preprocessor and linker
6838         * src/SDCCset.c, src/SDCCset.h: added function setFromSetNonRev() and mergeSets()
6839         * src/SDCCsymt.c: reimplemented function inCalleeSaveList() by using sets instead
6840         fixed width array of pointers
6841         * src/SDCCutil.c, src/SDCCutil.h: added functions fputStrSet(), appendStrSet(), joinStrSet();
6842         removed functions addToList(), join(), joinn(), pathCharsEquivalent(), pathCharTransform(),
6843         fixupPath(), getPathDifference()
6844         * src/ds390/gen.c, src/mcs51/gen.c: reimplemented function  inExcludeList() by using sets instead
6845         fixed width array of pointers
6846
6847 2003-06-11  Bernhard Held <bernhard AT bernhardheld.de>
6848
6849         * src/pic16/ralloc.c: fix warnings
6850         * src/pic16/pcode.c: fix warning
6851
6852 2003-06-10  Scott Dattalo  <scott AT dattalo.com>
6853
6854          Scott D. for Vangelis Rokas (vrokas AT otenet.gr). I (scott) don't
6855         know all the details, but essentially this set of changes enable
6856         the pic16 port to generate movff instructions and generate assembler
6857         directives,
6858         * src/SDCCmain.c:
6859         * src/pic16/gen.c:
6860         * src/pic16/glue.c:
6861         * src/pic16/pcode.c:
6862         * src/pic16/device.c:
6863         * src/pic16/main.c:
6864         * src/pic16/pcode.h:
6865         * src/pic16/pcoderegs.c:
6866         * src/pic16/ralloc.c:
6867         * src/pic16/ralloc.h:
6868
6869 2003-06-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6870
6871         * support/Util/SDCCerr.c, src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx:
6872         added option --vc, so sdcc errors and warnings are compatible with
6873         Microsoft Visual Studio.
6874
6875 2003-06-07  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6876
6877         * device/lib/_atof.c, device/lib/Makefile.in, device/include/stdlib.h,
6878           device/lib/libfloat.lib: added atof function.
6879
6880 2003-06-04  Bernhard Held <bernhard AT bernhardheld.de>
6881
6882         * doc/sdccman.lyx: updated to Lyx 1.3
6883         * doc/cdbfileformat.lyx: updated to Lyx 1.3
6884         * doc/test_suite_spec.lyx: updated to Lyx 1.3
6885         * doc/Makefile: added fix for the \tabularnewline problem, thanks to Jesus
6886
6887 2003-06-03  Bernhard Held <bernhard AT bernhardheld.de>
6888
6889         * src/SDCCpeeph.c: separate peepRules2pCode() for pic16 by "Vangelis Rokas" <vrokas AT otenet.gr>
6890
6891 2003-06-02  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6892
6893         * doc/sdccman.lyx: cvs revision keywords, passing pdf information in latex preamble,
6894           additions to the "related tools/documentation" section
6895
6896 2003-06-02  Bernhard Held <bernhard AT bernhardheld.de>
6897
6898         * src/SDCCglue.c (tempfileandname): added check for missing TMP/TEMP/TMPDIR variable
6899
6900 2003-05-29  Bernhard Held <bernhard AT bernhardheld.de>
6901
6902         * src/pic/device.c: added 16F819, patch by "David I. Lehn" <dlehn AT vt.edu>
6903         * src/SDCCcse.c (algebraicOpts): fixed "c * 1"
6904
6905 2003-05-28  Bernhard Held <bernhard AT bernhardheld.de>
6906
6907         * doc/sdccman.lyx: fix double dash and other minor things
6908         * doc/Makefile: fix double dash
6909
6910 2003-05-28  Karl Bongers(patches from Martin Helmling)
6911         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files. Martin adds
6912           condition and ignore commands.
6913
6914 2003-05-28  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6915
6916         * doc/sdccman.lyx: Changes all over, index improved, smaller margins. The manual
6917           is in parts still quite out of date, I did changes as far as I felt makes sense
6918           for a non-native english speaker.
6919           Please feel free to add to the manual or to correct my changes.
6920         * doc/Makefile: undid touching the date of intermediate tex files.
6921
6922 2003-05-26  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6923
6924         * doc/sdccman.lyx: Manual has an index now
6925
6926 2003-05-25  Bernhard Held <bernhard AT bernhardheld.de>
6927
6928         Finalize muluint/mulsint and mululong/mulslong merging:
6929         * device/lib/_mulint.c
6930         * device/lib/_mullong.c
6931         * device/lib/gbz80/mul.s
6932         * device/lib/gbz80/stubs.s
6933         * device/lib/z80/mul.s
6934         * device/lib/z80/stubs.s
6935         * src/SDCCsymt.c (initCSupport)
6936
6937 2003-05-25  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6938
6939         * as/mcs51/lkaomf51.c: Address space 'z' was missing.
6940         * src/avr/avr.dsp, src/ds390/ds390.dsp, src/mcs51/mcs51.dsp,
6941           src/pic/pic.dsp, src/pic16/pic16.dsp, src/xa51/xa51.dsp,
6942           src/x80/z80.dsp: peep.rul is bigger now, so /Zm1000 is used
6943           instead of /Zm500.
6944
6945 2003-05-25  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
6946
6947         * src/mcs51/peeph.def: added rules 244.x, 245.x. Although they pass
6948           the regression tests I'm not brave enough to enable 245.b, 245.c
6949         * doc/sdccman.lyx: added latex preamble for hyperref package.
6950           Using pdflatex this will give you a hyperlinked pdf file with
6951           bookmarks. (prepend '%' before /usepackage if this breaks something)
6952
6953 2003-05-24  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
6954
6955          * doc/sdccman.lyx: updated information about .adb files (fixed bug 742649)
6956
6957 2003-05-22  Bernhard Held <bernhard AT bernhardheld.de>
6958
6959         * src/pic16/pcode.c (pic16_get_op_from_instruction): fixed a gcc 3.x warning
6960
6961 2003-05-21    <johan AT balder>
6962
6963         * src/SDCCglue.c (printIval): fixed bug #739934
6964
6965 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6966
6967         Applied patch from bug 737905 (renamed yylineo to mylineno):
6968         * src/altlex.c
6969         * src/SDCCast.c
6970         * src/SDCglobl.h
6971         * src/SDCC.lex
6972         * src/SDCCsymt.c
6973         * src/SDCCval.c
6974         * src/pic16/pcode.c: Cleaned warnings
6975         * src/pic16/pcodeflow.c: Cleaned warnings
6976         * src/pic16/pcoderegs.c: Cleaned warnings
6977
6978 2003-05-19  Scott Dattalo  <scott AT dattalo.com>
6979
6980         * src/pic16/pcode.c: Cleaned warnings
6981         * src/pic16/pcodepeep.c: Cleaned warnings
6982         * src/pic16/ralloc.c: Cleaned warnings
6983
6984 2003-05-19  Bernhard Held <bernhard AT bernhardheld.de>
6985
6986         * doc/sdccman.lyx: fixed bug 739745
6987         * src/pic16/pcode.c (pic16_get_op): fixed warning on alpha
6988
6989 2003-05-18  Bernhard Held <bernhard AT bernhardheld.de>
6990
6991         * src/port.h: removed DEFAULT_PORT, it's not yet pic16 ;-)
6992         it can be defined with CFLAGS when running configure
6993         * src/SDCCmain.c: fixed compiling + linking with object files
6994
6995 2003-05-18  Vangelis Rokas (vrokas AT otenet.gr)
6996
6997         * configure.in: configure for pic16 port,
6998             added --disable-pic16-port
6999         * sdccconf_in.h: added macro OPT_DISABLE_PIC16
7000         * src/SDCCmain.c: linkOptions is changed to set *,
7001             added if/endif conditional macros to remove options help
7002             messages from optionsTable when a port is not configured, added
7003             support for the PIc16 port in the ports table, when executing
7004             the compiler with no port specified on command line, a default
7005             port is selected with the new macro DEFAULT_PORT which is
7006             defined in port.h, in setDefaultOptions() linkOptions is removed
7007             from initialization assignment, since now it is a set,
7008             parseCmdLine uses setParseWithComma for linkOptions, in
7009             linkEdit() linkOptions are accessed with new function indexSet()
7010             which returns the i'th item of a set variable. See SDCCset.c, in
7011             linkEdit() when calling buildCmdLine(), added linkOptions as
7012             last argument. Now users can pass arguments to gplink via the
7013             -Wl option, main() uses pic16glue() to glue up pic16 programs
7014         * src/SDCCpeeph.c: various changes to support pic16
7015         * src/SDCCset.c: added function  void *indexSet(set *, int)  to
7016             return the i'th item of the set
7017         * src/SDCCset.h: added function prototype for indexSet()
7018         * src/SDCCsymt.c: in checkSClass(), added support for PIC16
7019         * src/clean.mk: added pic16 in CLEANALLPORTS variable
7020         * src/port.h: added TARGET_ID_PIC16,TARGET_IS_PIC16 macro,
7021             added macro DEFAULT_PORT
7022         * src/pic/main.c: corrected arguments of gplnk in _linkCmd
7023         * src/pic16/gen.c: bug fix in genCpl(), now the correct code is
7024             generated
7025         * src/pic16/glue.c: commented out some error producing lines
7026         * src/pic16/main.c: __config directives are commented out to stop
7027             gpasm complaining and test the linkage with gplink, _linkCmd and
7028             _asmCmd changed to be more gplink and gpasm friendly
7029         * src/pic16/peeph.def: peep rule 3 is commented out, since it
7030             produced an error when parsed, peep rule 12 is added to utilize
7031             movff, but it is commented out since the pCode does not support
7032             yet a command with 2 address arguments
7033
7034 2003-05-18    <johan AT balder>
7035
7036         * src/ds390/gen.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7037         * src/ds390/main.c (genArrayInit): removed obsolete and buggy ARRAYINIT
7038 2003-05-17  Karl Bongers(apply patches from Martin Helmling)
7039
7040         * debugger/mcs51/sdcdb.c,cmd.c,break.c and .h files.
7041   Added feature to script commands from file.
7042
7043 2003-05-14  Bernhard Held <bernhard AT bernhardheld.de>
7044
7045         * device/lib/_strtok.c: fixed bug #734355 by Lenny Story and Tim Woodall
7046         * src/SDCCutil.c: include ctype.h for win32
7047
7048 2003-05-13  Bernhard Held <bernhard AT bernhardheld.de>
7049
7050         * src/pic16/*: removed CR from many files, reported by Vangelis Rokas
7051
7052 2003-05-12  Karl Bongers(apply development patches from Martin Helmling)
7053
7054         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,break.c and .h files.
7055   Fixed so you can set breakpoints prior to run, run does not stop
7056   on entry now.  Add tbreak.  Other enhancements and fixes for use
7057   with ddd.
7058
7059 2003-05-12  Borut Razem <borut.razem AT siol.net>
7060
7061         * src/SDCCmain.c: fixed the problem with searching the DATADIR as the last resort on *nix
7062
7063 2003-05-11  Borut Razem <borut.razem AT siol.net>
7064
7065         * src/SDCCutil.c: WIN32 version of getBinPath() calls GetModuleFileName() to determine
7066         the path of bin directory, so that PATH is the only env. variable, which has to be set
7067         in case of standard installation.
7068         * src/ds390/ds390.dsp: increased value of /Zm option to 1000
7069         * src/pic/main.c: add quotes to file name parameters for gplink and gpasm
7070         * src/SDCCglobl.h, src/SDCCmain.c, doc/sdccman.lyx: added --print-search-dirs command line option
7071
7072 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7073
7074         * src/SDCCmain.c (linkEdit): fixed buffer overflow for gbz80
7075         * support/regression/Makefile: inter-port-clean is no longer nesessary, the
7076         temp files are in the port dir; clean the gen/test directory when
7077         generating new test.c
7078         * support/regression/ports/host/spec.mk: defined OBJEXT for target clean
7079         * support/regression/tests/vaargs.c: fixed gcc 3.3 warning
7080         * support/regression/tests/zeropad.c: added
7081
7082 2003-05-09    <johan AT balder>
7083
7084         * src/SDCCglue.c: fixed bug #597940
7085
7086 2003-05-05  Karl Bongers(apply patches from Martin Helmling)
7087
7088         * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7089   cache sfr, optimize next,step, fix off by one sourceline,
7090   support ddd list function.
7091         * sim/ucsim/cmd.src/newcmd.cc - small fix for sdcdb use.
7092
7093 2003-05-04  Bernhard Held <bernhard AT bernhardheld.de>
7094
7095         * support/regression/HTMLgen.py: added compare_s2f()
7096         * support/regression/Makefile: redo 1.27
7097         * support/regression/generate-cases.py: redo 1.5
7098
7099 2003-04-30  Bernhard Held <bernhard AT bernhardheld.de>
7100
7101         * support/regression/tests/float.c: workaround 33 bit hex constant
7102         * support/regression/tests/simplefloat.c: fix division for host
7103
7104 2003-04-29  Scott Dattalo  <scott AT dattalo.com>
7105
7106         * src/pic/pcoderegs.c Applied patch from Jim Hawkridge <jim AT jimhawkridge.uk.eu.org>
7107         that tame's the PIC's over-aggressive optimizer.
7108
7109 2003-04-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7110
7111          * src.dsw, link/z80/aslink.h, link/z80/linkz80.dsp: z80 linker
7112          support for MSVC.
7113
7114 2003-04-29  Kevin Vigor <kevin AT vigor.nu>
7115
7116         Initial support for DS80C400. "Hello world" runs on TINIm400
7117         (with polled I/O).
7118
7119 2003-04-28  Karl Bongers(apply patches for Martin Helmling)
7120
7121          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,symtab.c and .h files.
7122          * Some notes on ddd usage added in debugger/README
7123          Martin Helmling adding more features and fixes for ddd GUI debugger.
7124          Code added for nexti, stepi, up, down, and other adjustments.
7125
7126 2003-04-28  Scott Dattalo  <scott AT DATTALO.COM>
7127
7128         * src/pic/pCodepeep.c non-wildcard asmops are now handled
7129         * src/pic/peeph.def Added two rules to optimize carry manipulation
7130         * src/pic/* removed debug printfs
7131
7132 2003-04-28  Bernhard Held <bernhard AT bernhardheld.de>
7133
7134         * debugger/mcs51/cmd.c: added header newalloc.h
7135
7136 2003-04-26  Bernhard Held <bernhard AT bernhardheld.de>
7137
7138         * as/Makefile: new EXEEXT
7139         * as/z80/Makefile: remove trailing slash of BUILDIR
7140         * as/z80/clean.mk: new EXEEXT
7141         * Makefile.common.in: add to CFLAGS (and others), don't replace it
7142         * support/cpp2/Makefile.in: new EXEEXT
7143         * src/pic/glue.c (pic14emitRegularMap): fixed warning
7144
7145 2003-04-24  Bernhard Held <bernhard AT bernhardheld.de>
7146
7147         Cygwin's gcc always appends .exe: 'gcc -o a a.c' creates a.exe;
7148         EXEEXT was introduced to fix all related problems with targets
7149         "clean", "install" and "uninstall"; a couple of further flaws
7150         especially with "clean" have been fixed too
7151         * as/mcs51/Makefile.in
7152         * as/mcs51/clean.mk
7153         * as/z80/Makefile
7154         * Makefile
7155         * clean.mk
7156         * debugger/mcs51/Makefile.in
7157         * debugger/mcs51/clean.mk
7158         * link/z80/Makefile
7159         * link/z80/Makefile.in
7160         * link/z80/clean.mk
7161         * link/Makefile
7162         * packihx/Makefile.in
7163         * packihx/clean.mk
7164         * sim/ucsim/Makefile
7165         * sim/ucsim/clean.mk
7166         * sim/ucsim/avr.src/Makefile.in
7167         * sim/ucsim/avr.src/clean.mk
7168         * sim/ucsim/s51.src/Makefile.in
7169         * sim/ucsim/s51.src/clean.mk
7170         * sim/ucsim/xa.src/Makefile.in
7171         * sim/ucsim/xa.src/clean.mk
7172         * sim/ucsim/z80.src/Makefile.in
7173         * sim/ucsim/z80.src/clean.mk
7174         * sim/ucsim/main_in.mk
7175         * sim/ucsim/packages_in.mk
7176         * sim/ucsim/gui.src/Makefile.in
7177         * sim/ucsim/gui.src/serio.src/Makefile.in
7178         * sim/ucsim/gui.src/serio.src/clean.mk
7179         * src/Makefile.in
7180         * src/clean.mk
7181         * support/cpp2/Makefile.in
7182         * support/cpp2/clean.mk
7183         * support/makebin/Makefile
7184         * support/makebin/clean.mk
7185         * support/scripts/sdcc_mingw32: --program-suffix no longer needed
7186         * doc/sdccman.lyx: --program-suffix no longer needed
7187
7188 2003-04-23  Karl Bongers(apply patches for Martin Helmling)
7189
7190          * debugger/mcs51/sdcdb.c,simi.c,cmd.c,..
7191          Martin Helmling added support for ddd GUI debugger.
7192          Code added to display assembly, set variables, and other commands
7193          to interface to ddd.
7194
7195 2003-04-23  Bernhard Held <bernhard AT bernhardheld.de>
7196
7197         * as/Makefile: fix target clean
7198         * as/clean.mk: fix target clean
7199         * as/z80/clean.mk: fix target clean
7200
7201 2003-04-22  Bernhard Held <bernhard AT bernhardheld.de>
7202
7203         * Makefile.common.in: added  AT EXEEXT AT
7204         * configure.in: removed all mingw32 stuff
7205         * configure: rebuilt from configure.in
7206         * doc/sdccman.lyx: updated section "installation"
7207         * support/scripts/sdcc_mingw32: adapted to configure
7208         * support/scripts/sdcc_cygwin_mingw32: added
7209
7210 2003-04-22  Scott Dattalo  <scott AT dattalo.com>
7211
7212         * src/pic Added object file support for the PIC port
7213         * src/pic Applied patch from Craig Franklin (this started the object file support)
7214         * src/regression Updated the PIC regression tests for object files
7215
7216 2003-04-20  Borut Razem <borut.razem AT siol.net>
7217
7218         * sdcc/as/mcs51/lklex.c: make getfid() more robust and fixed gcc warning:
7219           lklex.c: In function `getfid':
7220           lklex.c:203: warning: array subscript has type `char'
7221         * src/SDCCglobl.h: small change in stack handling macros, to avoid crash when compiled
7222           with MSVC with global optimization enabled (probably an cl compiler bug ;-)
7223         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added function fatal(), called from
7224           stack handling macros
7225
7226 2003-04-19  Borut Razem <borut.razem AT siol.net>
7227
7228         * "handling space characters in file path" task:
7229         * src/SDCCmacro.c: fixed bug in handlig quote at the end of line
7230         * support/Util/BuildCmd.c: define par as NULL if parameter value is invalid
7231         * support/Util/MySystem.h: make it self-sufficient
7232         * src/avr/main.c, src/ds390/main.c, src/mcs51/main.c, src/pic/main.c, src/xa51/main.c,
7233           src/z80/main.c, sdcc/as/mcs51/lklex.c:
7234           handling space characters in file path
7235         * src/SDCCmain.c: introduced setDataPaths() function, {datadir} macro
7236           (it will be used by assemblers, which have their own includes, e.g. gpasm)
7237         * support/Util/MySystem.c: handling space characters in executable's path
7238
7239 2003-04-19  Bernhard Held <bernhard AT bernhardheld.de>
7240
7241         * as/z80/Makefile: fix permanent rebuild of z80
7242         * sim/ucsim/gui.src/Makefile.in: target "install" builds the same packages as target "all"
7243         * support/regression/tests/bitfields.c: added Johan's bitfields.c
7244
7245 2003-04-18      Kevin Vigor <kevin AT vigor.nu>
7246
7247         * src/SDCCopt.c: add special case optimization to replace modulo by
7248           a power of two with a bitwise AND.
7249
7250 2003-04-18    <johan AT balder>
7251
7252         * src/mcs51/gen.c (getFreePtr): fixed bug #635354
7253
7254 2003-04-17    <johan AT balder>
7255
7256         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #716790 and removes lot's of redundant register usage around function calls
7257         * src/mcs51/ralloc.c (packRegisters): fixed bug #720667
7258
7259 2003-04-13  Borut Razem <borut.razem AT siol.net>
7260
7261         * doc/sdccman.lyx: updated info about #pragma SAVE/RESTORE nesting
7262         * configure.in, configure: fixed problems on cygwin/WinCVS environmet with ports.* line endings;
7263           fixed mingw problem in adl_NORMALIZE_PATH
7264
7265 2003-04-12  Borut Razem <borut.razem AT siol.net>
7266
7267         * fixed "#pragma SAVE/RESTORE can not be nested":
7268         * src/SDCC.lex: reworked pragma handling functions
7269         * sdcc/src/SDCCglobl.h: reworked stack handling macros
7270         * support/Util/SDCCerr.c, support/Util/SDCCerr.h: added E_STACK_VIOLATION error
7271
7272 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7273
7274         * src/SDCCutil.c (pathEquivalent): defined but not used
7275         * debugger/mcs51/sdcdb.c: replace SDCC_LIB_DIR
7276         * configure.in: remove sdcc_datadir, sdcc_lib_dir and sdcc_include_dir
7277         * configure: rebuilt from configure.in
7278         * sdccconf_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7279         * sdcc_vc_in.h: remove SDCC_LIB_DIR and SDCC_INCLUDE_DIR
7280         * device/include/Makefile.in: replace sdcc_datadir
7281         * device/lib/Makefile.in: replace sdcc_datadir
7282         * Makefile.common.in: add LDFLAGS from configure
7283         * packihx/Makefile.in: use LDFLAGS
7284         * src/Makefile.in: use LDFLAGS
7285         * support/cpp2/Makefile.in: add LDFLAGS from configure
7286         * support/makebin/Makefile: use LDFLAGS
7287         * .version: bumped version number to 2.3.5
7288
7289 2003-04-12  Borut Razem <borut.razem AT siol.net>
7290
7291         * completed "different paths" task:
7292         * src/SDCCmacro.c: fixed bug in handling quotes
7293         * src/SDCCutil.c, src/SDCCutil.c: rewritten getPrefixFromBinPath()
7294         * src/SDCCmain.c: _discoverPaths() replaced with setBinPaths(), setIncludePath() and setLibPath()
7295
7296 2003-04-12  Bernhard Held <bernhard AT bernhardheld.de>
7297
7298         * src/pic/pcoderegs.c (Remove1pcode): fix warning on alpha
7299
7300 2003-04-11 kevin Vigor <kevin AT vigor.nu>
7301
7302         * ds390/gen.c ds390/peeph.def: fix bug 706781
7303
7304 2003-04-11  Borut Razem <borut.razem AT siol.net>
7305
7306         * support/Util/dbuf.c, support/Util/dbuf.h: update to version 1.1.1 - re-added C++ stuff to make it still more portable
7307
7308 2003-04-10  Scott Dattalo  <scott AT dattalo.com>
7309
7310         * src/pic/* Applied the pointer-to-function patch from Steve Tell.
7311         * src/pic/* Fixed several pointer bugs. (PIC port broke when the ruonly bit was
7312          set - this bit used to not be set...).
7313         * src/pic/gen.c Fixed buf 609268 ==> x = (x+1) & 0xf; generated
7314           bad code in PIC Port
7315         * src/regression/and2.c added to test bug 609268
7316         * src/regression/Makefile added and2.c to regression test
7317
7318
7319 2003-04-08    <johan AT CP255758-A>
7320
7321         * src/mcs51/gen.c (gen51Code): display reg usage in --icode-in-asm
7322         * src/mcs51/ralloc.c (serialRegAssign): update the registers in use and save some slocs
7323         * src/SDCCicode.h: added riu to show the register usage in --icode-in-asm
7324
7325 2003-04-07  Bernhard Held <bernhard AT bernhardheld.de>
7326
7327         * configure.in: fully support prefix, exec_prefix, datadir, docdir;
7328         fix bug #487815
7329         * support/cpp2/Makefile.in: fix bug #487815
7330         * configure: rebuilt from configure.in
7331         * Makefile.common.in: docdir changed, new path suffixes
7332         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7333         * sdcc_vc_in.h: reflect changes from sdccconf.h
7334         * src/SDCCglobl.h: remove *SEPARATOR_CHARS, they are now in sdccconf.h
7335         * src/SDCCutil.h: remove BINDIR hack
7336         * doc/sdccman.lyx: update new path hierarchy
7337
7338 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7339
7340         * src/SDCCpeeph.c: added okToRemoveSLOC test
7341
7342 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7343
7344         * device/lib/printf_fast.c: added leading zero format ("%06d", etc)
7345
7346 2003-04-06    Paul Stoffregen <paul AT pjrc.com>
7347
7348         * src/SDCCpeeph.c: added labelIsReturnOnly test
7349         * src/mcs51/peeph.def: Peephole 244: replace ljmp to ret with ret
7350
7351 2003-04-05    <johan AT balder>
7352
7353         * src/SDCCcse.c (cseAllBlocks): fixed bug #460088
7354         * src/SDCCloop.c (DEFSETFUNC): fixed bug #460088
7355         * src/SDCCopt.c (eBBlockFromiCode): fixed bug #460088
7356         * src/SDCCast.c: fixed a warning
7357         * src/SDCCast.h: fixed a warning
7358         * src/SDCCicode.c (operandFromAst): fixed a warning
7359
7360 2003-04-04    <johan AT balder>
7361
7362         * src/SDCCloop.c (DEFSETFUNC): undid the fix for bug #519584
7363         * src/SDCCast.c (decorateType): fixed bug #715076
7364         * src/SDCC.y: fixed bug #702907
7365
7366 2003-04-03    <johan AT balder>
7367
7368         * device/lib/_mulint.c (_muluint): new #pragma LESS_PEDANTIC
7369         * src/SDCCopt.c (eBBlockFromiCode): new #pragma LESS_PEDANTIC
7370         * src/SDCCglobl.h (PRAGMA_LESSPEDANTIC): new #pragma LESS_PEDANTIC
7371         * src/SDCC.lex (doPragma): new #pragma LESS_PEDANTIC
7372         * src/SDCCmain.c (parseCmdLine): new #pragma LESS_PEDANTIC
7373
7374 2003-04-03  Bernhard Held <bernhard AT bernhardheld.de>
7375
7376         * _decdptr.c: fix return values
7377         * _gptrget.c: fix return values
7378         * _gptrgetc.c: fix return values
7379         * _gptrput.c: fix return values
7380         * _mulint.c: fix return values
7381         * as/z80/Makefile: fix 'make -j' problem
7382
7383 2003-04-02  Bernhard Held <bernhard AT bernhardheld.de>
7384
7385         * Makefile.common.in: unused PORT, SCC and SAS removed, fixed docdir
7386         * configure.in: big cleanup, updated to autoconf 2.5x
7387         * configure: rebuilt from configure.in
7388         * sdccconf_in.h: new RETSIGTYPE, and other PATHs
7389         * sdcc_vc_in.h: reflect changes from sdccconf.h
7390         * doc/Makefile: fixed a flaw in "make install"
7391
7392 2003-04-02    <johan AT balder>
7393
7394         * src/ds390/gen.c (genCmp): no comments
7395         * src/mcs51/gen.c (genCmp): no comments
7396         * src/SDCCopt.c (eBBlockFromiCode): detect missing return values
7397         * src/SDCCast.c (ast_print): fixed the function type in --dumptree
7398
7399 2003-04-01  Bernhard Held <bernhard AT bernhardheld.de>
7400
7401         * support/regression/generate-cases.py: place generated file in given sub directory
7402         * support/regression/ports/host/spec.mk: prevent removal of testfwk.o
7403         * support/regression/Makefile: improvements for 'make -j';
7404         side effect: it's simpler and faster now
7405
7406 2003-03-31  Borut Razem <borut.razem AT siol.net>
7407
7408         * src/z80/main.c: link-{port} and as-{port} defined without path
7409         * src/src.dsp: support/Util/MySystem.h and src/SDCCutil.h added to project
7410
7411 2003-03-31  Bernhard Held <bernhard AT bernhardheld.de>
7412
7413         * Makefile, src/Makefile.in: add dependencies, so that 'make -j' works
7414
7415 2003-03-30  Borut Razem <borut.razem AT siol.net>
7416
7417         * support/Util/BuildCmd.c, support/Util/BuildCmd.h: rewrite buildCmdLine(),
7418           changed type of list parameter to set
7419         * src/ds390/main.c: changed type of parameter asmOptions to set in _tininative_do_assemble()
7420         * src/port.h: changed type of do_assemble() parameter to set
7421         * src/SDCCmain.c: type of asmOptions changed to set, introduced setParseWithComma(),
7422           sdcpp defined without path, removed variable VersionString, introduced set binPathSet,
7423           definition of "cppoutfilename" macro with NULL value in preProcess()
7424         * src/SDCCglobl.h: included "SDCCset.h", added declaration of setParseWithComma()
7425         * src/SDCCglue.c: removed variable VersionString, inroduced spacesToUnderscores()
7426         * support/Util/MySystem.c, support/Util/MySystem.h: rewrite, char *ExePathList[]
7427           replaced with set *binPathSet
7428         * shash_add() deallocates the item, if allready exsists, before adding the new one
7429         * src/SDCCmacro.c: handling macros with empty or NULL values in _evalMacros()
7430
7431 2003-03-30  Scott Dattalo  <scott AT dattalo.com>
7432
7433         * src/pic/gen.c: Commit patch from Steve Tell <tell AT telltronics.org> that fixes
7434           a nested for loop bug in the PIC port
7435         * src/regression/nestfor.c: new regression test file Steve wrote to test nested
7436           for loops
7437
7438 2003-03-29  Bernhard Held <bernhard AT bernhardheld.de>
7439
7440         * support/Util/dbuf.h: remove C++ stuff to make it portable
7441
7442 2003-03-28  Borut Razem <borut.razem AT siol.net>
7443
7444         * src/SDCC.lex: Fix for bug #711240: dynamic buffer handling of C
7445           literal strings in stringLiteral()
7446         * support/Util/dbuf.c, support/Util/dbuf.h: added: dynamic buffer handling
7447         * src/Makefile.bcc, src/Makefile.in, src\src.dsp: added support/Util/dbuf.c
7448           to the project
7449
7450 2003-03-27  Paul Stoffregen <paul AT pjrc.com>
7451
7452         * src/SDCCpeeph.c (pcDistance): accurate byte distance for mcs51
7453
7454 2003-03-26    <johan AT balder>
7455
7456         * src/mcs51/gen.c (saveRegisters): catched symbol abuse
7457         * src/ds390/gen.c (saveRegisters): catched symbol abuse
7458         * src/SDCCast.c (decorateType): fixed " -v < 3"
7459
7460 2003-03-23  Bernhard Held <bernhard AT bernhardheld.de>
7461
7462         * doc/cdbfile.html: removed, replaced by cdbfileformat.lyx
7463         Added Lenny Story's debug infrastructure changes:
7464         * src/Makefile.in:  added new files cdbFile.c and SDCCdebug.c
7465         * src/Makefile.bcc: added new files cdbFile.c and SDCCdebug.c
7466         * src/cdbFile.c: added
7467         * src/SDCCdebug.c: added
7468         * src/SDCCdebug.h: added
7469         * src/SDCCast.c (createFunction)
7470         * src/SDCCglue.c (emitRegularMap, emitStaticSeg, emitOverlay, glue)
7471         * src/SDCCmain.c (parseCmdLine, main)
7472         * src/SDCCmem.c (redoStackOffsets)
7473         * src/SDCCsymt.c (cdbStructBlock, cdbTypeInfo, cdbSymbol, cdbStruct, cdbStructBlock)
7474         * src/SDCCsymt.h
7475         * src/common.h
7476         * src/avr/gen.c (genAVRCode)
7477         * src/ds390/gen.c (gen390Code)
7478         * src/mcs51/gen.c (gen51Code)
7479         * src/pic/gen.c (genpic14Code)
7480         * src/pic/glue.c (pic14emitRegularMap, pic14emitStaticSeg, pic14emitOverlay, picglue)
7481         * src/xa51/gen.c (genXA51Code)
7482         * src/SDCCast.c: fixed "void foo(void){char c; -c < 0;}"
7483
7484 2003-03-22  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7485
7486         * src/mcs51/gen.c (genCodePointerGet): quicker code for bug #700797
7487         * src/mcs51/peeph.def: added rules 177, 241.x to 243, touched 181, 182.x, 193.x
7488
7489 2003-03-22    <johan AT balder>
7490
7491         * src/SDCCicode.c (geniCodeDerefPtr): fixed bug #698231
7492
7493 2003-03-21  Bernhard Held <bernhard AT bernhardheld.de>
7494
7495         * support/scripts/sdcc_mingw32: adapted to configure from autoconf 2.54
7496         * doc/cdbfileformat.lyx: added, written by Lenny Story
7497         * doc/Makefile: added cdbfileformat.lyx
7498         * doc/clean.mk: added cdbfileformat.lyx
7499
7500 2003-03-20  Bernhard Held <bernhard AT bernhardheld.de>
7501
7502         * src/mcs51/peeph.def: fix bug #705773
7503
7504 2003-03-20    <johan AT balder>
7505
7506         An sfr/sbit can have an "at #" AND an initializer
7507         * src/SDCCsymt.c (checkSClass):
7508         * src/SDCCmem.c (allocGlobal):
7509         * src/SDCCmem.c (allocLocal):
7510         * src/SDCCast.c (createBlock):
7511
7512 2003-03-17  Bernhard Held <bernhard AT bernhardheld.de>
7513
7514         * src/ds390/peeph.def: fix bug #704878: added rule 213.b suggested by Jan Rejlek
7515
7516 2003-03-16    <johan AT balder>
7517
7518         Undid the hackup of const and volatile, the problem is much bigger
7519         * src/SDCC.y:1.65
7520         * src/SDCCast.c:1.171
7521         * src/SDCCglue.c:1.138
7522         * src/SDCCicode.c:1.146
7523         * src/SDCCsymt.c:1.150
7524         * src/SDCCval.c:1.65
7525
7526 2003-03-15  Bernhard Held <bernhard AT bernhardheld.de>
7527
7528         * src/mcs51/ralloc.c (packRegsForAssign): fixed bug #703541
7529         * src/ds390/gen.c (genAddrOf): fixed bug #704087
7530
7531 2003-03-13    <johan AT balder>
7532
7533         Hackup const and volatile modifiers in type chains a bit:
7534         * src/SDCC.y:1.63
7535         * src/SDCCast.c:1.169
7536         * src/SDCCglue.c:1.136
7537         * src/SDCCicode.c:1.143
7538         * src/SDCCsymt.c1.146
7539         * src/SDCCsymt.h1.59
7540         * src/SDCCval.c:1.63
7541
7542 2003-03-12    <johan AT balder>
7543
7544         * src/SDCCBBlock.h: more LRH debugging junk
7545         * src/SDCCcflow.h: more LRH debugging junk
7546         * src/SDCCloop.c: more LRH debugging junk
7547         * src/SDCC.y (struct_declaration): fixed bug #697590
7548         * src/SDCCsymt.[hc] (cloneSpec): NEVER EVER use this again
7549         * src/ds390/gen.c (aopForRemat): fixed bug #700031
7550         * src/SDCCglue.c (emitStaticSeg): fixed bug #700797
7551
7552 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7553         * src/SDCCpeeph.c: quit being lazy and made proper fix (peephole
7554         test function names must now match exactly).
7555         * src/SDCCcse.c: added special case in findCheaperOp to allow
7556         extending a short integer. Makes less awful code for bug 700121 test case.
7557
7558 2003-03-11  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7559
7560         * as/mcs51/lkmain.c: Added ASlink-Warning to messages
7561         * as/mcs51/lkaomf51.c: Fixed bug when linking asmblink example
7562
7563 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7564
7565         * src/SDCCpeeph.c: fix so that operandsNotEqualX functions are
7566         actually called (operandsNotEqual() was called for all
7567         operandsNotEqualX tests).
7568
7569 2003-03-11 Kevin Vigor <kevin AT vigor.nu>
7570
7571         * src/SDCCcse.c: fix findCheaperOp to prevent replacing int types
7572         with shorter literals. Fixes bug 700121.
7573
7574 2003-03-11    <johan AT balder>
7575
7576         * src/SDCCsymt.c (compareType): a (void *) can be assigned to any pointer
7577
7578 2003-03-11  Bernhard Held <bernhard AT bernhardheld.de>
7579
7580         * src/SDCCloop.c (mergeRegions): an evil beast is dead
7581         * src/SDCCmain.c (preProcess): minor cleanup: eliminate preOutName
7582
7583 2003-03-10  Borut Razem <borut.razem AT siol.net>
7584
7585         * src/SDCCmain.c: pipe preprocessor's output
7586         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7587         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7588         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7589         which closes all pipes in pipeSet set
7590         * src/SDCCset.c: free deleted item in function deleteSetItem()
7591         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7592         moved from z80 to src subproject
7593         * .version: increased version number to 2.3.4
7594
7595 2003-03-10  Bernhard Held <bernhard AT bernhardheld.de>
7596
7597         * support/regression/ports/mcs51/spec.mk: increase timeout for CF's sparc to 30s
7598         * support/regression/ports/ds390/spec.mk: increase timeout for CF's sparc to 25s
7599         * support/regression/ports/xa51/spec.mk: fix typo
7600
7601 2003-03-09  Bernhard Held <bernhard AT bernhardheld.de>
7602
7603         * src/SDCCglobl.h: PATH_MAX is already defined in mingw32 headers
7604
7605 2003-03-09  Borut Razem <borut.razem AT siol.net>
7606
7607         * src/SDCCmain.c: pipe preprocessor's output
7608         * support/Util/MySystem.c, support/Util/MySystem.h: added my_popen()
7609         * sdcc_vc_in.h: define pclose as _pclose for WIN32
7610         * src/SDCCglue.c, src/SDCCglue.h: added set pipeSet, added function closePipes,
7611         which closes all pipes in pipeSet set
7612         * src/SDCCset.c: free deleted item in function deleteSetItem()
7613         * src/src.dsp, src/z80/z80.dsp: files support/Util/BuildCmd.c and support/Util/MySystem.c
7614         moved from z80 to src subproject
7615
7616 2003-03-09  Borut Razem <borut.razem AT siol.net>
7617
7618         * src/SDCCglue.c: re-implemented tempfilename() and tempfile(): using mkstemp() if available
7619         * src/SDCCsymt.h: fixed MSVC and BORLANDC compilation (included SDCCglobl.h instead srccconf.h)
7620         * sdcc_vc_in.h: explicitly undefined HAVE_MKSTEMP which is not available on BORLANDC and MSVC
7621         * src/SDCCset.h: removed inclusion of sdccconf.h or sdcc_vc.h
7622         * src/SDCCglobl.h: unification of WIN32 native definitions
7623
7624 2003-03-09  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7625
7626         * src/mcs51/gen.c: applied in-/dec patch mentioned on sdcc-devel 2003-03-01
7627
7628 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7629
7630         * src/configure.in:   check for endianess (even while cross-compiling)
7631         * src/configure:      check for endianess (even while cross-compiling)
7632         * src/configure_in.h: check for endianess (even while cross-compiling)
7633         * src/avr/gen.c:        remove old endianess stuff
7634         * src/mcs51/gen.c:      remove old endianess stuff
7635         * src/ds390/gen.c:      remove old endianess stuff
7636         * src/pic/gen.c:        remove old endianess stuff
7637         * src/pic/genarith.c:   remove old endianess stuff
7638         * src/pic/glue.c:       fix endianess check
7639         * src/pic16/gen.c:      remove old endianess stuff
7640         * src/pic16/genarith.c: remove old endianess stuff
7641         * src/pic16/glue.c:     fix endianess check
7642         * src/xa51/gen.c:       remove old endianess stuff
7643         * src/z80/gen.c:        fix endianess check
7644         * src/SDCCglue.c:       fix endianess check
7645         * src/ds390/peeph.def: fix bug 700036
7646
7647 2003-03-08  Bernhard Held <bernhard AT bernhardheld.de>
7648
7649         * src/SDCCsymt.h: use appropriate data-types on host for SDCC's int and long
7650         * src/configure: find appropriate data-types on host for SDCC's int and long
7651         * src/configure.in: find appropriate data-types on host for SDCC's int and long
7652         * src/sdccconf_in.h: find appropriate data-types on host for SDCC's int and long
7653         * src/xa51/gen.c: use %d, not %ld for 4 byte variables
7654
7655 2003-03-07    <johan AT balder>
7656
7657         Just a big NOOP:
7658                 some minor cleanups before the big shot
7659                 OP_DEFS and OP_USES now use Kevin's protection
7660                 new option --nolabelopt
7661
7662         * src/SDCCBBlock.c:
7663         * src/SDCCast.c,:
7664         * src/SDCCcflow.c:
7665         * src/SDCCcse.c:
7666         * src/SDCCicode.c:
7667         * src/SDCCicode.h:
7668         * src/SDCClabel.c:
7669         * src/SDCCloop.c:
7670         * src/SDCCmain.c:
7671         * src/ds390/ralloc.c:
7672         * src/mcs51/ralloc.c:
7673         * src/pic/ralloc.c:
7674         * src/xa51/ralloc.c:
7675         * src/z80/ralloc.c:
7676
7677 2003-03-06  Bernhard Held <bernhard AT bernhardheld.de>
7678
7679         * src/pic/pcode.c (get_op): fix 64 bit warnings
7680         * src/pic/pcode.c (pCode2str): fix 64 bit warnings
7681         * src/SDCChasht.c (newHashTable): fix 64 bit warnings
7682         * src/SDCCsymt.c (checkTypeSanity): fix 64 bit warnings
7683         * support/regression/tests/malloc.c: fix 64 bit warnings
7684
7685 2003-03-04  Bernhard Held <bernhard AT bernhardheld.de>
7686
7687         * src/mcs51/gen.c (genMinus): fixed bug 696436
7688
7689 2003-03-02  Borut Razem <borut.razem AT siol.net>
7690
7691         * src/SDCCmain.c: added BORLANDC, corrected MSVC in printVersionInfo()
7692
7693 2003-02-26  Bernhard Held <bernhard AT bernhardheld.de>
7694
7695         * configure.in: test for mkstemp
7696         * sdccconf_in.h: add HAVE_MKSTEMP
7697
7698 2003-02-24  Bernhard Held <bernhard AT bernhardheld.de>
7699
7700         * device/include/ctype.h: removed warning while using --stack-auto
7701         * device/include/malloc.h: removed warning while using --stack-auto
7702         * device/include/string.h: removed warning while using --stack-auto
7703
7704 2003-02-23  Borut Razem <borut.razem AT siol.net>
7705
7706         * src/asm.h: corrected assertion in function printILine(): _pipe() was not executed on MSVC,
7707         because NDEBUG is defined (see man assert)
7708         * sdcc_vc_in.h: vsnprintf is defined as _vsnprintf on MSVC
7709
7710 2003-02-23  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7711
7712         * src/mcs51/gen.c (genUminusFloat): avoided dptr in-/decrement for xdata variables
7713         * src/mcs51/peeph.def: added rule suggested by Gernot Fink, white space/comment changes
7714
7715 2003-02-18  Frieder Ferlemann <Frieder.Ferlemann AT web.de>
7716
7717         * src/SDCCpeeph.c: added peephole conditions testing for same arguments
7718         * src/mcs51/peeph.def: added rules 238a-d which remove redundant moves
7719
7720 2003-02-18    <johan AT balder>
7721
7722         * as/mcs51/asmain.c (asmbl): module can start with a digit
7723         * as/z80/asmain.c (asmbl): module can start with a digit
7724
7725 2003-02-16  Bernhard Held <bernhard AT bernhardheld.de>
7726
7727         * sim/ucsim/mkecho: inserted #!/bin/sh for Cygwin, so that it's executable
7728         * src/asm.c: fix pipe() for Mingw32
7729
7730 2003-02-15  Bernhard Held <bernhard AT bernhardheld.de>
7731
7732         * src/SDCCglue.h: make tmpfileNameSet available for preOutName
7733         * src/SDCCmain.c (preProcess): make sure, that preOutName will be deleted;
7734         make -V work again; --c1mode reads now from stdin
7735         * doc/sdccman.lyx: added --c1mode
7736         * support/Util/SDCCerr.c: new messages for c1 mode
7737         * support/Util/SDCCerr.h: new messages for c1 mode
7738         * src/SDCC.lex (checkCurrFile): test if fullSrcFileName is NULL for c1mode
7739
7740 2003-02-15    <johan AT balder>
7741
7742         * src/asm.c: new options: --no-c-code-in-asm and --i-code-in-asm
7743
7744 2003-02-14  Bernhard Held <bernhard AT bernhardheld.de>
7745
7746         * doc/sdccman.lyx: Environment variables, -o and other minor things
7747
7748 2003-02-14    <johan AT balder>
7749
7750         * src/xa51/main.c: before anyone really tries to use it :)
7751
7752         * Install doc's in share/sdcc/doc
7753         * removed some obsolete files
7754         * Do a proper make distclean and uninstall
7755         M Makefile.common.in
7756         R sdccbuild.sh
7757         M as/Makefile
7758         M device/include/Makefile.in
7759         M device/lib/Makefile.in
7760         M doc/sdccman.lyx
7761         M link/Makefile
7762         M sim/ucsim/doc/Makefile.in
7763         M src/clean.mk
7764         R src/avr/peeph.rul
7765         R src/xa51/peeph.rul
7766         M support/cpp2/Makefile.in
7767         M support/makebin/Makefile
7768
7769
7770 2003-02-13  Bernhard Held <bernhard AT bernhardheld.de>
7771
7772         * support/regression/ports/host/spec.mk: use cc as host compiler for max osx
7773
7774 2003-02-10  Borut Razem <borut.razem AT siol.net>
7775
7776         * doc/bccinst.txt, packihx/packihx.c, sdcc_vc_in.h, src/SDCCset.h,
7777         support/cpp2/config.in: Borland C++ build doesn't depend on Cygwin configure
7778         * Bcc.ini, Makefile.bcc, as/mcs51/Makefile.bcc,
7779         device/examples/ds390/tinitalk/Makefile.bcc, packihx/Makefile.bcc,
7780         support/cpp2/Makefile.bcc, src/Makefile.bcc, src/avr/Makefile.bcc,
7781         src/ds390/Makefile.bcc, src/izt/Makefile.bcc, src/mcs51/Makefile.bcc,
7782         src/pic/Makefile.bcc, src/pic16/Makefile.bcc, src/xa15/Makefile.bcc,
7783         src/z80/Makefile.bcc: Borland Makefile cleanup
7784         * as/z80/Makefile.bcc: Added Borland Makefile
7785         * support/cpp2/borland.h: Removed
7786
7787 2003-02-10  Bernhard Held <bernhard AT bernhardheld.de>
7788
7789         * doc/sdccman.lyx: new pragma NOIV by "Johannes Stezenbach" <js AT convergence.de>
7790         * src/SDCC.lex: new pragma NOIV
7791         * src/SDCCglobl.h: new pragma NOIV
7792         * src/SDCCmem.c: new pragma NOIV
7793
7794 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7795
7796         * src/SDCCmain.c: signal handling is switched off by SDCC_LEAVE_SIGNALS
7797
7798 2003-02-09  Bernhard Held <bernhard AT bernhardheld.de>
7799
7800         * src/SDCCmain.c: signal handling is switched off by --debug
7801         * doc/Makefile: small fix for install; use clean.mk again
7802         * doc/clean.mk: clean *.pdf and *.html too
7803
7804 2003-02-08  Bernhard Held <bernhard AT bernhardheld.de>
7805
7806         * device/lib/_mulint.c: small fix for large/ds390 --int-long-reent resp. --stack-auto
7807         * device/lib/printfl.c: fix a ds390 bug by making it portable
7808         * src/SDCCsymt.c (initCSupport): fix compile warning on Cygwin
7809         * src/SDCCopt.c (cnvToFloatCast): fix compile warning on Cygwin
7810         * src/SDCCopt.c (cnvFromFloatCast): fix compile warning on Cygwin
7811         * debugger/mcs51/cmd.c: converted multi-line string literals
7812         * sim/ucsim/globals.cc: converted multi-line string literals
7813         * src/SDCCmain.c: introduced signal handler to remove temp files
7814         * doc/Makefile: small tweaks, implement clean
7815         * doc: removed generated files
7816
7817 2003-02-05  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7818
7819         * as/mcs51/aslink.h, as/mcs51/lkihx.c, as/mcs51/lkrloc.c:  Applied
7820         patch from Jan Rejlek <jr AT apex-lib.cz> to fix Bug 677692: "Extended
7821         Address Record is not correctly generated for DS390."
7822
7823 2003-02-02  Borut Razem <borut.razem AT siol.net>
7824
7825         * Makefile.bcc: removed non existing cpp project and non compilable izt project from makefile
7826         * as/mcs51/asm.h: fixed compilation with Borland C
7827         * support/cpp2/Makefile.bcc: added rule to generate auto-host.h
7828         * support/cpp2/auto-host_vc_in.h: fixed compilation with Borland C
7829         * src/mcs51/mcs51a.dsp: corrected misspelled project name from msc51a to mcs51a
7830         * src/avr/Makefile.bcc, src/ds390/Makefile.bcc, src/izt/Makefile.bcc,
7831         src/mcs51/Makefile.bcc, src/pic16/Makefile.bcc, src/xa51/Makefile.bcc,
7832         src/z80/Makefile.bcc: delete $(LIB) only if exist
7833         * src/Makefile.bcc, src/pic/Makefile.bcc:  fixed compilation with Borland C
7834
7835 2003-02-02  Bernhard Held <bernhard AT bernhardheld.de>
7836
7837         * device/include/malloc.h: introduced NULL
7838         * device/include/string.h: introduced NULL
7839         * device/include/stdlib.h: introduced NULL
7840         * device/lib/_memcpy.c: removed NULL
7841         * device/lib/_strcat.c: removed NULL
7842         * device/lib/_strchr.c: removed NULL
7843         * device/lib/_strcmp.c: removed NULL
7844         * device/lib/_strcpy.c: removed NULL
7845         * device/lib/_strcspn.c: removed NULL
7846         * device/lib/_strlen.c: removed NULL
7847         * device/lib/_strncat.c: removed NULL
7848         * device/lib/_strncmp.c: removed NULL
7849         * device/lib/_strncpy.c: removed NULL
7850         * device/lib/_strpbrk.c: removed NULL
7851         * device/lib/_strrchr.c: removed NULL
7852         * device/lib/_strspn.c: removed NULL
7853         * device/lib/_strstr.c: removed NULL
7854         * device/lib/_strtok.c: removed NULL
7855         * device/lib/malloc.c: removed NULL, include own header
7856
7857 2003-02-02    <johan AT balder>
7858
7859         * 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
7860         * support/regression/fwk/lib/testfwk.c: div and mod isn't broken anymore
7861         * regressions ds390/spec.mk and mcs51/spec.mk (timeout): my good old balder isn't fast enough for some tests
7862         * src/z80/gen.c (genZ80Code): added c-lines in asm comments
7863         * as/z80/asm.h (NINPUT): increased for long c-comments in regression tests
7864         * src/z80/gen.c (genRightShiftLiteral): fixed the (char)(-3)>>8 (I think)
7865
7866 2003-02-01  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7867
7868         * src/SDCCmain.c: Fixed bug 678574: "ds390: ASlink-Error-Stack overlaps
7869         area 'DATA'"
7870
7871 2003-02-01    <johan AT balder>
7872
7873         * src/SDCCval.c (valBitwise): fixed Karl's "2 | (1<<8)"
7874
7875 2003-01-31    <johan AT CP255758-A>
7876
7877         * src/ds390/main.c (_ds390_genAssemblerPreamble): applied Jan Rejlek's >64K startup patch
7878
7879 2003-01-30    <johan AT balder>
7880
7881         * src/SDCCBBlock.c: automatic bug detection
7882         * src/SDCCicode.c: automatic bug detection
7883
7884 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7885
7886         * src/SDCCglobl.h:   now --xram-size 0 works
7887         * src/SDCCmain.c:    now --xram-size 0 works
7888
7889 2003-01-29    <johan AT balder>
7890
7891         * src/almosteverything: changed OP_DEFS and OP_USES from macros to functions to catch symbol abuse (a hot topic in the bug list :)
7892
7893 2003-01-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
7894
7895         * as/mcs51/aslink.h: Added options --xram-size and --code-size
7896         * as/mcs51/lkdata.c: Added options --xram-size and --code-size
7897         * as/mcs51/lkmain.c: Added options --xram-size and --code-size
7898         * as/mcs51/lkmem.c:  Added options --xram-size and --code-size
7899         * src/SDCCglobl.h:   Added options --xram-size and --code-size
7900         * src/SDCCmain.c:    Added options --xram-size and --code-size
7901
7902 2003-01-28  Bernhard Held <bernhard AT bernhardheld.de>
7903
7904         * src/ds390/gen.c: fix deps by replacing <common.h> with "common.h"
7905         * src/SDCC.lex: rename P_OVERLAY to P_OVERLAY_ for cross-gcc 3.2 MINGW32
7906
7907 2003-01-27    <johan AT balder>
7908
7909         * src/SDCC.y: fixed bug #613764
7910
7911 2003-01-26    <johan AT balder>
7912
7913         * src/SDCClrange.c:  fixed Bernhard's "char * code ptr = &c"
7914         * src/SDCCsymt.h: fixed bug #673374
7915         * src/SDCCglue.c: fixed bug #661910
7916         * src/SDCCast.c: fixed bug #458099 and 673374
7917
7918 2003-01-26  Bernhard Held <bernhard AT bernhardheld.de>
7919
7920         * as/mcs51/strcmpi.c: added, provides Aurelien Jarno's as_strcmpi(); strcmpi() is not ANSI
7921         * as/mcs51/strcmpi.h: added
7922         * as/mcs51/asm.h: remove ugly "#define strcmpi strcmp"
7923         * as/mcs51/aslink.h: remove ugly "#define strcmpi strcmp"
7924         * as/mcs51/asmain.c: strcmpi -> as_strcmpi
7925         * as/mcs51/assym.c: strcmpi -> as_strcmpi
7926         * as/mcs51/lkmem.c: strcmpi -> as_strcmpi
7927         * as/mcs51/lknoice.c: strcmpi -> as_strcmpi
7928         * as/mcs51/lksym.c: strcmpi -> as_strcmpi
7929         * as/mcs51/Makefile.aslink: new module strcmpi
7930         * as/mcs51/Makefile.asx8051: new module strcmpi
7931         * as/mcs51/Makefil.bcc: new module strcmpi
7932         * as/mcs51/Makefile.in: new module strcmpi
7933         * sim/ucsim/s51.src/uc390.cc (get_mem_size): make RAM big enough for tinibios
7934
7935 2003-01-26    <johan AT balder>
7936
7937         * src/SDCCglue.c: reverted back to 1.124
7938         * src/SDCCast.c: reverted back to 1.156
7939         * src/mcs51/gen.c (aopGet): applied Frieder's efficiency patch
7940
7941 2003-01-25    <johan AT balder>
7942
7943         * src/SDCCglue.c: A better fix for bug #661910
7944         * src/SDCCast.c: A better fix for bug #661910
7945         * src/SDCCglue.c (emitRegularMap): That was a little too efficient
7946
7947 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7948
7949         * src/Makefile.in: remove spawn.o
7950         * src/SDCCmain.c: remove spawn.h
7951         * src/SDCCmain.c (printVersionInfo): report MINGW32 instead of UNIX
7952         * src/spawn.c: removed
7953         * src/spawn.h: removed
7954         * support/regression/ports/ds390/spec.mk: link with -r
7955
7956 2003-01-24    <johan AT CP255758-A>
7957
7958         * src/ds390/gen.c (aopOp): fixed bug #667458
7959         * src/SDCCglue.c (emitRegularMap): fixed bug #458099 again
7960         * src/SDCCast.c (createIvalCharPtr): fixed bug #661910
7961         (createIvalCharPtr): an ival doesn't always have a storage class anymore
7962
7963 2003-01-24  Bernhard Held <bernhard AT bernhardheld.de>
7964
7965         * src/mcs51/peeph.def: better assembler identation by Frieder
7966         * src/mcs51/gen.c: better assembler identation by Frieder
7967
7968 2003-01-22  Bernhard Held <bernhard AT bernhardheld.de>
7969
7970         * as/z80/string.h: removed for gcc 3.2
7971         * support/makebin/makebin.c: #include <string.h> for gcc 3.2
7972         * src/pic/pcode.c (get_op_from_instruction): fix concatenation of string literals with __FUNCTION__ for gcc 3.2
7973
7974 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7975
7976         * src/SDCCmain.c (linkEdit): rename mem and map files even in case of failure
7977         * src/SDCCpeeph.c (replaceRule): fix bug #663503
7978         * support/regression/Makefile: separate temp files for ports
7979         * support/regression/generate-cases.py: separate temp files for ports
7980         * src/mcs51/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7981         * src/ds390/peeph.def: Frieder: removed 237 (obsolete by 236g and 105); added 237 a/b
7982
7983 2003-01-19  Bernhard Held <bernhard AT bernhardheld.de>
7984
7985         * moved tinitalk to device/examples/ds390
7986
7987 2003-01-14  Bernhard Held <bernhard AT bernhardheld.de>
7988
7989         * as/mcs51/lkmem.c: rflag is for DS390
7990         * src/SDCCglobl.h: removed out_name and options stackOnData, genericPtr
7991         * src/SDCCmain.c (optionsTable, setDefaultOptions): removed --stack-after-data and --generic
7992                          (linkEdit): move mem- and map-files the same way as ihx-files
7993         * src/z80/main.c (_setDefaultOptions): removed --generic
7994         * src/SDCCmain.c (_processC1Arg, parseCmdLine, main): --c1mode works again
7995         * src/SDCCglue.c (createInterruptVect, glue): --c1mode works again
7996         * src/pic/glue.c (picglue): --c1mode works again
7997         * src/pic16/glue.c (pic16glue): --c1mode works again
7998         * src/asm.c (printCLine): fix #660034
7999
8000 2003-01-13  Bernhard Held <bernhard AT bernhardheld.de>
8001
8002         * src/ds390/peeph.def: fix #123; add 14 rules by Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>, 1 by Frieder
8003         * src/mcs51/peeph.def: fix #123; add 14 rules by Fiorenzo, 1 by Frieder
8004         * src/mcs51/gen.c (genFunction): emit r0 instead of ar0 by Fiorenzo
8005         * as/mcs51/lkmem (summary): better fix for sp problem
8006         * src/SDCCglue.c (glue): __start_stack - 1, saves 1 byte!
8007         * src/ds390/main.c (_ds390_finaliseOptions, _tininative_finaliseOptions): stack_loc = 0x400008
8008         * support/regression/ports/*/spec.mk: moving testfwk-object to port dir allow parallel execution of regression tests
8009                                               remove --stack-after-data
8010
8011 2003-01-12  Bernhard Held <bernhard AT bernhardheld.de>
8012
8013         * src/SDCCmain.c (main): port->finaliseOptions() moved for z80 linking
8014         * src/SDCCutil.c (join): ugly bug: missing '\0'
8015         * as/mcs51/lkmem.c (summary): sp on address 7 is safe
8016
8017 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8018
8019         * src/SDCCmain.c (assemble, linkEdit): preparations for -o
8020         * src/port.h: typo
8021         * src/pic/main.c (_asmCmd): gpasm supports -o
8022         * src/z80/main.c: more general macros
8023         * device/lib/Makefile.in: remove intermediate files
8024
8025 2003-01-11  Bernhard Held <bernhard AT bernhardheld.de>
8026
8027         * .version: Bumped version number to 2.3.3
8028         * src/SDCCBBlock.c: new option -o
8029         * src/SDCCglobl.h: new option -o
8030         * src/SDCCglue.c: new option -o
8031         * src/SDCCmain.c: new option -o
8032         * src/asm.c: new option -o
8033         * src/ds390/main.c: new option -o
8034         * src/pic/glue.c: new option -o
8035         * src/pic/pcode.c: new option -o
8036         * src/pic/ralloc.c: new option -o
8037         * src/pic16/glue.c: new option -o
8038         * src/pic16/pcode.c: new option -o
8039         * src/pic16/ralloc.c: new option -o
8040         * src/z80/main.c: new option -o
8041         * device/lib/Makefile.in: use -o
8042         * support/regression/ports/ds390/spec.mk: use -o
8043         * support/regression/ports/gbz80/spec.mk: use -o
8044         * support/regression/ports/mcs51/spec.mk: use -o
8045         * support/regression/ports/mcs51-stack-auto/spec.mk: use -o
8046         * support/regression/ports/z80/spec.mk: use -o
8047         * support/regression/ports/ucz80/spec.mk: use -o
8048         * support/regression/ports/xa51/spec.mk: use -o
8049         * support/regression/fwk/lib/timeout.c: fix usage string
8050
8051 2003-01-09  Bernhard Held <bernhard AT bernhardheld.de>
8052         * src/mcs51/gen.c (genPlus): replaced "mov b,acc" by "mov b,a" Fiorenzo D. Ramaglia <fd.ramaglia AT tin.it>
8053
8054 2003-01-07    <johan AT balder>
8055
8056         * src/SDCCast.c (decorateType): fixed bug #600035
8057
8058 2003-01-07  Bernhard Held <bernhard AT bernhardheld.de>
8059         * as/mcs51/lkmem.c: added several l-modifiers to printf to remove warnings
8060         * as/mcs51/lkaomf51.c: #include <ctype.h> to remove warnings
8061         * src/pic/main.c (_hasNativeMulFor): outcommented unused variables to remove warnings
8062         * src/pic/pcode.c: outcommented unused variable to remove warnings
8063         * src/pic/ralloc.c: outcommented unused variable to remove warnings
8064
8065 2003-01-06    <karl AT turbobit.com>
8066         * sim/ucsim/cmd.src/command.cc: fixed so "break xram r 0x7654" works again in
8067    regression tests.
8068
8069 2003-01-06    <johan AT balder>
8070
8071         * src/SDCCicode.c: fixed array add
8072
8073 2002-01-05  Bernhard Held <bernhard AT bernhardheld.de>
8074         * src/SDCCmacro.c: MAX_STRING_LENGTH increased to 2048; was too small for regression tests
8075         * support/regression/ports/host/support.c: #include <stdarg.h> for gcc 3.2
8076
8077 2003-01-04    <johan AT balder>
8078
8079         * src/SDCCval.c (getNelements): fixed the initialized array of structures
8080
8081 2002-12-29  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8082         * as/mcs51/Makefile.bcc: fixed typo lkomf51.o -> lkaomf51.o
8083
8084 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8085         * src/mcs51/peeph.def: added rules 234 and 235 from Frieder Ferlemann <frieder.ferlemann AT web.de>
8086         * support/regression/tests/bug-524697.c: fit mem usage into 8032
8087
8088 2002-12-28  Bernhard Held <bernhard AT bernhardheld.de>
8089         * src/mcs51/gen.c (aopGetUsesAcc): inserted missing "return FALSE"
8090
8091 2002-12-27  Bernhard Held <bernhard AT bernhardheld.de>
8092         * as/mcs51/Makefile.in: fixed typo lkomf51.o -> lkaomf51.o
8093
8094 2002-12-26  Bernhard Held <bernhard AT bernhardheld.de>
8095         * src/mcs51/main.c: removed {bindir}{sep} from aslink
8096
8097 2002-12-10  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8098
8099     * in \sdcc\as\mcs51\ changed these files in order to create an
8100     aomf51 file: aslink.h, lkdta.c, lklex.c, lklibr.c, lklist.c,
8101     lkmain.c.  Also added: lkmem.c and lkaomf51.c.  Changed the
8102     following files to include the previous two files: aslink.dsp,
8103     Makefile.aslink, Makefile.bcc, and Makefile.in.
8104
8105     * Changed \sdcc\src\SDCCmain.c so it creates files with extension
8106     .adb instead of .cdb
8107
8108 2002-11-09  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8109
8110         * \sdcc\as\mcs51\lklist.c: Now reports memory usage using the
8111         value from option --iram-size.
8112
8113 2002-09-20  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8114
8115         * \sdcc\as\mcs51\lklist.c: added boundary check before using
8116         dram[] array.
8117
8118 2002-09-18    <wiml AT hhhh.org>
8119
8120         * SDCClrange.h: exposed setFromRange() and setToRange()
8121         * mcs51/ralloc.c: fixed over-eager packRegsForSupport() and
8122           packRegsForAccUse() (bug 542397)
8123         * mcs51/gen.c: MOVA() is now a function to avoid calling aopGet()
8124           multiple times and emitting the fetch operations more than once
8125           added aopGetUsesAcc() function to allow binary operators to
8126           fetch their operands in the correct order; made genMinus() emit
8127           compact code for X = LITERAL - Y
8128
8129 2002-09-00  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8130         * \sdcc\as\mcs51\lklist.c: Fixed incorrect number of parameters to
8131         sprintf() in line 1267.
8132
8133 2002-09-08  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8134         * \sdcc\src\SDCCglue.c: Generate areas REG_BANK_[0-3] only for 8051
8135         like ports.
8136
8137 2002-09-04  Jesus Calvino-Fraga <jesusc AT ece.ubc.ca>
8138         Changes to aslink (All the changes are marked with 'JCF'):
8139
8140         * \sdcc\as\mcs51\aslink.h: External definition of sflag and
8141         summary().
8142
8143         * \sdcc\as\mcs51\lkarea.c: Computes the size of area BSEG_BYTES from
8144         area BSEG.  Also moves, if possible, the DATA area down into the internal
8145         ram so more space is available.
8146
8147         * \sdcc\as\mcs51\lkdata.c: Definition of memory summary output flag
8148         sflag.
8149
8150         * \sdcc\as\mcs51\lklist.c: For the BSEG area report the size in bits,
8151         not bytes.  Function summary() which creates a memory usage summary
8152         file with extension .mem.  Reports of overlaping stack and small stack
8153         size.  If the space for the stack is less than 16 bytes aslink trows a
8154         warning.
8155
8156         * \sdcc\as\mcs51\lkmain.c: Creation of some of the default areas for
8157         the 8051.  Option 'y' for memory summary output file.
8158
8159         Changes to sdcc (All the changes are marked with 'JCF'):
8160
8161         * \sdcc\src\SDCCglobl.h: External definition of RegBankUsed[4].
8162
8163         * \sdcc\src\SDCCglue.c:  If a register bank is used, creates an
8164         overlaying area for it (uses RegBankUsed[4]).
8165
8166         * \sdcc\src\SDCCmain.c: Definition RegBankUsed[4]; marks register
8167         bank zero as used by default.  By default aslink locates the stack
8168         (equivalent to --stack-after-data).  Pass option 'y' to aslink for
8169         the creation of the .mem file.  Delegates the allocation of data area
8170         to aslink (it is not longer 0x30 by default).  If --stack-loc passes
8171         the begining of the stack area to aslink.
8172
8173         * \sdcc\src\SDCCmem.c:  If a register bank is used, marks it so
8174         glue() in SDCCglue.c creates an area for it.
8175
8176 2002-09-03  Borut Razem <borut.razem AT siol.net>
8177         * sdcc/src/SDCCglue.c, sdcc/src/SDCCglue.h, sdcc/src/SDCCmain.c,
8178         sdcc/src/pic/glue.c:
8179         introduced atexit() handler for teporay files removal in case of
8180         errors, assertions, ...
8181
8182 2002-08-29  Borut Razem <borut.razem AT siol.net>
8183         * sdcc/support/cpp2/auto-host_vc_in.h:
8184         re-definition of O_BINARY and other O_XXX as _O_BINARY and _O_XXX, so the problem
8185         with the returned value from read() in sdcc/support/cpp2/cppfiles.c is solved for MSC.
8186         Maybe there is a similar problem with BORLANDC? It should be checked!
8187
8188         * sdcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c, sdcc/src/z80/ralloc.c:
8189         corrected improper use of assert: the assignment to clr variable was done inside the assert.
8190         In case that NDEBUG was defined, the assert macro was substituted with no-op, so the assignment
8191         was not executed, and the compiler (cl) launched a warning:
8192         ralloc.c(1442) : warning C4700: local variable 'clr' used without having been initialized
8193
8194 2002-08-28  Bernhard Held <bernhard AT bernhardheld.de>
8195         * src/SDCCglue.c (printIvalArray): iterative calculation of array length
8196
8197 2002-08-28  Jesus Calvino-Fraga and Borut Razem <borut.razem AT siol.net>
8198         * sdcc/sdcc.dsw: added sdcpp, sdcppa, yacc, conf projects
8199
8200         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8201           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp,
8202           sdcc/src/xa51/xa51.dsp, sdcc/src/avr/avra.dsp,
8203           sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8204           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp,
8205           sdcc/src/xa51/xa51a.dsp, sdcc/as/as_z80.dsp,
8206           sdcc/as/aslink.dsp, sdcc/as/asx8051.dsp, sdcc/packihx/packihx.dsp:
8207         - added Release configuration in VS projects
8208         - review of compiler an linker options
8209         - VC .exe files are generated in bin_vc directory, not to interfere
8210           with binaries generated from other projects (cygwin, mingw, bcc ...)
8211
8212         * sdcc/src/yacc.dsp: added
8213
8214         * sdcc/config.dsp, sdcc/configure_vc.awk, sdcc/sdcc_vc_in.h:
8215         added - genarate sdcc_vc.h using sdcc_vc_in.h as template
8216         and insert the version number definitions from .version
8217
8218         * sdcc/support/cpp2/sdcpp.dsp: added - VC project for sdcpp
8219
8220         * sdcc/support/cpp2/sdcppa.dsp, sdcc/support/cpp2/auto-host_vc_in.h:
8221         added - genarate auto-host.h using auto-host_vc_in.h as template
8222
8223         * sdcc/sdcc_vc.h,
8224         removed from CVS, generated automatically
8225
8226 2002-08-25  Bernhard Held <bernhard AT bernhardheld.de>
8227         * support/scripts/inc2h.pl: use gputils or gpasm (from Nathan Hurst)
8228
8229 2002-08-11  Borut Razem <borut.razem AT siol.net>
8230         * support/Util/NewAlloc.c: removed unneeded #include "sdccconf.h" (suggested by Jesus Calvino-Fraga)
8231
8232 2002-08-10  Borut Razem <borut.razem AT siol.net>
8233         * src/SDCCmain.c (main):
8234         file preOutName was unlinked before closed. This seems to be OK on UNIX and cygwin
8235         platforms, but it doesn't work with Visual Studio: the opened file can not be removed.
8236         The consequence was that some temporary files were not removed.
8237
8238         * src/SDCCglue.c:
8239         unification of code in functions tempfilename() and tempfile():
8240         function tempnam() is defined in Visual Studio 6.0 and .NET
8241
8242         * sdcc/sdcc.dsw: removed project sdcpp, added project xa51a
8243
8244         * sdcc/src/src.dsp, sdcc/src/avr/avr.dsp, sdcc/src/ds390/ds390.dsp,
8245           sdcc/src/mcs51/mcs51.dsp, sdcc/src/pic/pic.dsp, sdcc/src/z80/z80.dsp:
8246         - removed compiler command line option /WX: Treats all warnings as errors
8247         - update a list of source files, included into the project
8248
8249         * sdcc/src/avr/avra.dsp, sdcc/src/ds390/ds390a.dsp, sdcc/src/mcs51/mcs51a.dsp,
8250           sdcc/src/pic/pica.dsp, sdcc/src/z80/z80a.dsp:
8251         changed project type to Generic Project so that can be correcly converted to VS.NET project
8252
8253         * sdcc/as/mcs51/asm.h: definition of PATH_MAX for MSC
8254
8255         * sdcc/src/SDCCast.c: solved MSC error in function decorateType()
8256
8257         * sdcc/src/SDCC.y: added missing ending ';' to rules to get rid of bison warnings
8258
8259         * dcc/src/ds390/ralloc.c, sdcc/src/mcs51/ralloc.c:
8260         added return 0 statements after assert() to make compiler happy
8261
8262         * sdcc/src/xa51/peeph.rul, sdcc/src/xa51/peeph.def, sdcc/src/z80/ralloc.c:
8263         added newline in the def file to keep MSC compiler satisfied
8264
8265         * sdcc/src/z80/gen.c:
8266         - function strcasecmp() is not defined in MSC (and probably also in BORLANDC),
8267           so it is replaced with STRCASECMP, which is defined as stricmp in case of MSC and BORLANDC
8268         - solved MSC error in function aopDump()
8269
8270         * sdcc_vc.h: define PREFIX as "\\sdcc"
8271
8272 2002-07-18  Bernhard Held <bernhard AT bernhardheld.de>
8273         * src/SDCCast.c (decorateType): fixed access to array of structures http://sourceforge.net/mailarchive/forum.php?thread_id=902690&forum_id=4107
8274
8275 2002-06-22  Scott Dattalo <scott AT dattalo.com>
8276         * src/pic/*: Numerous bug fixes. Flow analysis has been enhanced.
8277         - Rewrote the register banking algorithm.
8278         - Added pCode live-range analysis to registers (for now, only non-used and
8279         singly-used registers optimized away)
8280
8281         * src/pic/pcoderegs.[ch]: Added new files for pCode live-range analysis
8282
8283         * 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.
8284
8285 2002-05-10  Scott Dattalo <scott AT dattalo.com>
8286         * src/pic/*: Added support for multiplication. Fixed many,many bugs.
8287
8288 2002-04-22  Michael Hope  <michaelh AT vroom>
8289
8290         * device/lib/z80/printf.c: Changed emitter to volatile to work around a pcall bug.
8291
8292         * configure.in (DD_COPT): Added include support required for gbdk.
8293
8294         * .version: Bumped version number just to increase it.
8295
8296         * src/SDCCmain.c: Added -nostdinc to the default options.
8297
8298 2002-04-15  Michael Hope  <michaelh AT vroom>
8299
8300         * device/lib/z80/printf.c (sprintf): Added.
8301
8302         * src/z80/ralloc.c (packRegisters): Disabled pack HL use for GB as it's broken.
8303
8304         * src/z80/peeph.def: Added transpose redundent load rule.
8305
8306         * src/z80/main.c: Added force callee saves for jaune.
8307
8308         * src/port.h: Removed the i186 and tlcs-900h ports as they weren't being being developed.
8309
8310         * src/SDCCmain.c: Pulled the options definition out so that you can add port specific options without changing the main file.
8311
8312 2002-03-28  Johan Knol  <johan AT balder>
8313
8314         * src/SDCCval.c: fixed bug #532436
8315
8316 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8317         * /src/port.h:
8318         Added "char *Processor" field to the port structure.
8319
8320         * /src/SDCCmain.c:
8321         Added -p option. Allows port dependent processor to be specified.
8322
8323         * all ports:
8324         Initialized the new field char *Processor field to NULL in all ports
8325
8326         * /src/pic/*:
8327         Compiler generated registers for interrupt context saving
8328         were not getting allocated.
8329
8330 2002-03-16  Sandeep Dutta  <sandeep AT ddi.com>
8331
8332         * /src/SDCCast.c:
8333         Fixed left shift. Will promote the left side of a left shift
8334         if a) left shifting more than size of operand or b) when assigned
8335         to something size > size of left side
8336
8337 2002-03-14  Scott Dattalo <scott AT dattalo.com>
8338         * src/pic/*
8339         tons of changes. Register allocation has been
8340         rewritten. Added customization for the various PICs. Flow
8341         analysis is restructured. ...
8342
8343         * src/pic/device.h:
8344         Added
8345
8346         * src/pic/device.c:
8347         Added. device.c is a PIC port hack to accomodate variations
8348         in PIC devices.
8349
8350 2002-03-13  Michael Hope  <michaelh AT vroom>
8351
8352         * src/z80/gen.c (genGenPointerGet): Fixed a bug where a pointer in HL is dereferenced into HL but HL is not spilled.  Yeah.
8353
8354 2002-03-04  johanknol  <johanknol AT manik>
8355
8356         * /src/SDCCval.c: fixed
8357
8358         const unsigned char arr[][2] = { { 0, 1 } };
8359         t18.c:1: error: Initializer element is not constant
8360
8361 2002-03-04  bela  <bela AT manik>
8362
8363         * /device/include/mcs51reg.h:
8364         ds89c420 register definition update
8365
8366 2002-03-03    <johan AT FRIJA>
8367
8368         * support/Util/SDCCerr.c: did something, but don't no why anymore
8369
8370         * support/regression/tests/bug-524691.c: made it a little less shy
8371
8372         * src/SDCCast.c (decorateType): fixed bug #524697
8373
8374         * src/SDCCast.c: made some lineno improvements
8375
8376         * src/SDCCval.c (getNelements): changed warning to error
8377
8378         * src/SDCCglue.c (printIvalArray): changed warning to error
8379
8380         * src/SDCCicode.c: fixed a warning for mingw
8381
8382         * src/SDCCast.c (decorateType): fixed the << promotion for ops
8383
8384         * src/SDCCicode.c (geniCodeDivision): divide is shift only for unsigned (bug #524685)
8385
8386 2002-03-02  Sandeep Dutta  <sandeep AT ddi.com>
8387
8388         * src/ds390/peeph.def:
8389         Added some more peephole rules
8390
8391         * src/ds390/gen.c: Various fixes & enhancements
8392
8393         * src/SDCClrange.c, src/SDCClrange.h:
8394         functions "alldefsoutofrange" and "notusedinblock" moved to SDCClrange.c
8395
8396         * src/ds390/ralloc.c:
8397         various fixes & enhancements (ds390) specific
8398
8399         * src/avr/ralloc.c, src/mcs51/ralloc.c, src/pic/ralloc.c, src/xa51/ralloc.c, src/z80/ralloc.c:
8400         Functions "allDefsOutOfRange" & "notUsedinBlock" moved to SDCClrange.c
8401         from rallocs.
8402
8403         * sdcc/src/SDCCcse.c: Better fix for bug # 514308
8404
8405 2002-03-02    <johan AT FRIJA>
8406
8407         * src/SDCCast.c (decorateType): fixed bug #524708
8408
8409         * src/SDCCval.c (floatFromVal): fixed the literal void (whatever that may be)
8410
8411         * src/SDCCicode.c (geniCodePtrPtrSubtract): fixed bug #524691
8412
8413 2002-03-01  Michael Hope  <michaelh AT vroom>
8414
8415         * src/SDCCsymt.c (initCSupport): Removed managling of support function names.
8416
8417         * src/z80/ralloc.c (packRegsForIYUse): Fixed fp bug where four byte operands were packed into IY.
8418
8419 2002-03-01    <johan AT FRIJA>
8420
8421         * src/SDCCglue.c (printIvalPtr): fixed bug #524211
8422
8423         * src/SDCCast.c (decorateType): fixed bug #524209
8424
8425         * src/SDCCval.c (valNot): fixed bug #524195
8426
8427 2002-02-26    <johan AT balder>
8428
8429         * src/xa51/gen.c: fixed a warning
8430
8431         * src/SDCCglue.c (printIvalFuncPtr): fixed bug #522534
8432
8433         * src/SDCCast.c (decorateType): fixed bug #522534
8434
8435 2002-02-23    <johan AT balder>
8436
8437         * src/SDCCdflow.c (computeDataFlow): fixed bug #460088
8438
8439 2002-02-22    <johan AT balder>
8440
8441         * src/SDCCast.c: fixed bug #514865
8442
8443         * src/SDCCy.c ("SDCC.y"): fixed bug #516625
8444
8445 2002-02-21  Sandeep Dutta  <sandeep AT ddi.com>
8446
8447         * sdcc/src/SDCCloop.c:
8448         Previous fix was not good. basic blocks that have "break" or "return" are
8449         not really partof a loop , but live ranges used in these blocks should
8450         be live thru the entire loop, so set partOfLoop but don't add them to
8451         loop region
8452
8453 2002-02-21    <johan AT FRIJA>
8454
8455         * src/SDCCcse.c: fixed bug #514308
8456
8457 2002-02-20  Sandeep Dutta  <sandeep AT ddi.com>
8458
8459         * src/SDCCloop.c:
8460         Fixed BUG #519583. If a conditional block ended in a return/break
8461         statement inside a loop, it was not being considered part of the loop.
8462
8463         * src/SDCCcflow.c: Removed fix (Fixed in SDCCloop.c)
8464
8465 2002-02-10  Karl Bongers <karl AT turbobit.com>
8466
8467         * debugger/*:
8468         Fixed up SDCDB debugger somewhat.  Updated debugger/README
8469         with lots of comments and notes.
8470
8471         * device/examples/test2.c:
8472         Fix bug, "red" variable not being initialized(compiler complained).
8473
8474         * device/examples/Makefile, examples/test3.c:
8475         Add Makefile in device/examples folder, compiles test3.c
8476         for use as a multiple module SDCDB test case.
8477
8478         * sim/ucsim/cmd.src/cmdset.cc:
8479         Took out debug printfs in ucsim "next" command.
8480
8481         * sim/ucsim/xa.src:
8482         Karl and Johan start ucsim XA support.  Most dissassembly working,
8483         about 75% emulation done(plenty of work remaining).
8484
8485         * sim/ucsim/z80.src:
8486         Add Z80 support to ucsim, add test-ucz80 regression test,
8487         notice ucsim/z80 emulation fails on examples/test3.c/itoa code.
8488         Notice z80 compiler fails on examples/test3.c/crc code.
8489
8490 2002-01-30  Sandeep Dutta  <sandeep AT ddi.com>
8491
8492         * src/mcs51/gen.c, src/mcs51/main.c, src/mcs51/ralloc.c:
8493         Added support for --parms-in-bank1
8494
8495         * src/ds390/peeph.def:
8496         added a few more peephole optimzations
8497
8498         * src/ds390/main.c:
8499         1) added __builtin_inp & __builtin_outp used to read in data of given length
8500            from a memory mapped port
8501         2) added __builtin_memcmp
8502         3) added __builtin_swapw swap bytes of a short
8503
8504         * src/ds390/gen.c, src/ds390/gen.h, src/ds390/ralloc.c:
8505         1) handle multiple send & receives from register bank1
8506         2) ralloc can now allocate DPTR1 to some liveRanges
8507
8508         * src/SDCCsymt.c, src/SDCCsymt.h:
8509         changes to handle multiple sends & receives
8510
8511         * src/SDCCptropt.h:
8512         added some pointer arithmetic optimization
8513
8514         * src/SDCCptropt.c:
8515         added some pointer arithmetic optimizations but not stable yet so not
8516         called from anywhere (will get this working shortly)
8517
8518         * src/SDCCopt.c: fixed for multiple sends & receives
8519
8520         * src/SDCCmain.c:
8521         1) added options --parms-in-bank1 (ds390/mcs51) & --protect-sp-update
8522         2) preprocessing done AFTER port->finalizeoptions . This allows ports to
8523            set preprocessor defines (depending on options)
8524
8525         * src/SDCCicode.c, src/SDCCicode.h:
8526         changes made to handle multiple sends & receives
8527
8528         * src/SDCCglobl.h:
8529         Added options --protect-sp-update (ds390) and --parms-in-bank1 (ds390/mcs51)
8530
8531         * src/SDCCcse.c, src/SDCCcse.h:
8532         added function findbackward def (to be used in upcoming optimization)
8533
8534         * src/SDCCcflow.c, src/SDCCcflow.h:
8535         added function returnAtEnd - to determine if a basic block terminates with
8536         a RETURN iCode
8537
8538         * src/SDCCast.c, src/SDCCast.h:
8539         added option parms-in-bank1
8540
8541         * device/lib/_divsint.c, device/lib/_divslong.c, device/lib/_divuint.c
8542         * device/lib/_divulong.c, device/lib/_modsint.c, device/lib/_modslong.c
8543         * device/lib/_modulong.c, device/lib/_mulint.c, device/lib/_mullong.c:
8544         adjusted for --parms-in-bank1 option
8545
8546         * device/include/string.h:
8547         donot redefine "reentrant" keyword
8548
8549         * device/include/ds80c390.h: Added some more SFRs
8550
8551 2002-01-28  Bernhard Held  <bernhard AT bernhardheld.de>
8552
8553         * sim/ucsim: Merged branch ucsim-034-pre3 to main trunk; new version 0.4
8554
8555 2002-01-26  Bernhard Held  <bernhard AT bernhardheld.de>
8556
8557         * src/SDCCast.c (funcOfType): fix usage of double --float-reent
8558
8559 2002-01-22  Bernhard Held  <bernhard AT bernhardheld.de>
8560
8561         * support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
8562
8563 2002-01-18  Paul Stoffregen  <paul AT pjrc.com>
8564
8565         * Added --xram-movc option
8566
8567 2002-01-13  Bernhard Held  <bernhard AT bernhardheld.de>
8568
8569         * support/regression/Makefile: don't include test-mcs51-stack-auto in target all
8570
8571 2002-01-11  Johan Knol
8572
8573         * Added math lib of Jesus Calvino-Fraga
8574
8575 2002-01-08  Bernhard Held  <bernhard AT bernhardheld.de>
8576
8577         * src/SDCCmain.c (processFile): fix processing of ../../src.c
8578         * support/regression/Makefile: new target test-mcs51-stack-auto
8579         * support/regression/ports/mcs51-stack-auto/spec.mk: added
8580
8581 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8582
8583         * src/SDCCglue.h: printIvalCharPtr(), not printIvalChar()
8584
8585 2002-01-04  Bernhard Held  <bernhard AT bernhardheld.de>
8586
8587         * support/regression/ports/mcs51/support.c: correct setup of timer / UART
8588
8589 2002-01-03  Bernhard Held  <bernhard AT bernhardheld.de>
8590
8591         * src/SDCCsymt.c (processFuncArgs): fix #498307 by Johan
8592
8593         * src/SDCCglue.h: add definition for printIvalChar()
8594
8595 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8596
8597         * src/SDCCast.c: fix #498138 by Johan
8598
8599         * src/SDCCglue.c: fix #498138 by Johan
8600
8601 2002-01-02  Bernhard Held  <bernhard AT bernhardheld.de>
8602
8603         * support/regression/Makefile: fix clean
8604
8605         * support/regression/ports/ds390/support.c: fix transmission of last character
8606
8607 2001-12-29  Sandeep Dutta  <sandeep AT ddi.com>
8608
8609         * /sdcc/src/ds390/gen.c:
8610         a) improved computing address of stack variable
8611         b) took out some #if 0 code
8612         c) improved parmBytes adjustment
8613         d) improved genPlusIncr & genMinusIncr
8614         e) genCmp could generate bad code (when left assigned to DPTR)
8615         f) Fixed bug in hasInc
8616
8617         * /sdcc/src/ds390/ralloc.c:
8618         a) packRegsForSupport could mess up live information (Fixed)
8619         b) packRegsDPTRuse could be incorrect for left & right shift
8620
8621         * /sdcc/src/mcs51/ralloc.c:
8622         packRegsForSupport could mess up the live information (Fixed)
8623
8624         * /sdcc/src/mcs51/gen.c: Fixed a bug in hasInc
8625
8626         * /sdcc/src/SDCCast.c:
8627         can reverse a loop even if function call is present as long
8628         as the loop control variable is local & is not passed as parameter
8629
8630 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8631
8632         * /sdcc/ChangeLog: *** empty log message ***
8633
8634         * /sdcc/src/ds390/gen.c, /sdcc/src/ds390/main.c:
8635         More builtin function additions for TININative
8636
8637         * /sdcc/src/ds390/ralloc.c:
8638         Had broken the regression testsuite
8639
8640         * /sdcc/src/SDCCast.c: Fixed a bug in dumptree
8641
8642         * /sdcc/src/SDCCsymt.c, /sdcc/src/SDCCsymt.h:
8643         Added funcattr hasStackParms will be set for reentrant functions when there
8644         are paramteres on the stack, this helps in minimizing frame pointer generation
8645         typeFromStr can handle function pointers now
8646
8647         * /sdcc/doc/builtins.txt, /sdcc/doc/TININative.txt:
8648         *** empty log message ***
8649
8650 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8651
8652         * /src/ds390/gen.c, /src/ds390/main.c:
8653         More builtin function additions for TININative
8654
8655         * /src/ds390/ralloc.c:
8656         Had broken the regression testsuite
8657
8658         * /src/SDCCast.c: Fixed a bug in dumptree
8659
8660         * /src/SDCCsymt.c, /src/SDCCsymt.h:
8661         Added funcattr hasStackParms will be set for reentrant functions when there
8662         are paramteres on the stack, this helps in minimizing frame pointer generation
8663         typeFromStr can handle function pointers now
8664
8665         * /doc/builtins.txt, /doc/TININative.txt:
8666         *** empty log message ***
8667
8668
8669 2001-12-24  Sandeep Dutta  <sandeep AT ddi.com>
8670
8671         * /src/ds390/gen.c, /src/ds390/main.c, /src/ds390/peeph.def, /src/ds390/ralloc.c:
8672         ALPHA version for -mTININative
8673
8674         * /src/izt/i186.c, /src/izt/tlcs900h.c, /src/mcs51/main.c, /src/pic/main.c, /src/z80/main.c, /src/avr/main.c:
8675         updated to reflect changes in the port structure
8676
8677         * /src/port.h:
8678         added function do_assemble (similar to do_link) if non-null this function
8679         will be called to do assembly (-mTININative) requires a multi command
8680         assembly
8681         added function genAssemblerEnd will be called to generate assembler Epilogue
8682
8683         * /src/SDCCsymt.c:
8684         added _JavaNative to debug info printing
8685
8686         * /src/SDCCmain.c: added option --tini-libid
8687         added port->do_assemble function (-mTININative) has a multi command assemble
8688
8689         * /src/SDCCglue.c: Disabled "constExpr" check
8690         added port->genAssemblerEnd function
8691
8692         * /src/SDCCglobl.h: Added option --tini-libid value
8693
8694         * /src/SDCCast.h:
8695         tookout optimizeCompare from the header (has no external references)
8696
8697         * /src/SDCCast.c: made one more function "static"
8698
8699 2001-12-23  Michael Hope  <michaelh AT juju.net.nz>
8700
8701         * src/z80/mappings.i: Added z80asm support.
8702
8703         * src/z80/main.c: Added z80asm support on --asm=z80asm
8704
8705         * src/z80/gen.c: Fixed asm portability issues.
8706
8707         * src/asm.c (tvsprintf): Removed old code, added 'N' for function name.  For extern support.
8708
8709         * src/SDCCglue.c (printExterns): Added global/extern split.
8710
8711 2001-12-17  Bernhard Held  <bernhard AT bernhardheld.de>
8712
8713         * support/regression/Makefile: added test for mcs51 model large
8714
8715         * support/regression/ports/mcs51-large/spec.mk: added test for mcs51 model large
8716
8717         * support/regression/ports/gbz80/spec.mk: added -mgbz80
8718
8719 2001-12-05  Michael Hope  <michaelh AT juju.net.nz>
8720
8721         * src/diff.1 (Index): Many, many optmisiations.  Dhrystone up to 201.
8722
8723 1904-01-06  Michael Hope  <michaelh AT juju.net.nz>
8724
8725         * src/z80/ralloc.c (packRegsForIYUse): Fixed the case where an operand is in direct space.
8726
8727         * src/z80/gen.c (makeFreePairId): Optimised IY load by using a spare pair.
8728
8729 2001-12-02  Bernhard Held  <bernhard AT bernhardheld.de>
8730
8731         * src/mcs51/gen.c (genFunction): avoid excess "inc sp"
8732
8733         * support/regression/tests/simplefloat.c: Port to mcs51.
8734
8735 2001-11-25  Michael Hope  <michaelh AT juju.net.nz>
8736         * support/regression/tests/bug-485362.c: Added.
8737
8738         * support/regression/tests/simplefloat.c (testDivNearOne): Added.
8739
8740         * src/z80/gen.c (aopOp): Fixed case where left and result are in the same spill loc and they have different sizes.
8741
8742         * src/z80/peeph.def: Added rules for optimising two byte compares on the same thing, and to optimise two ptr assign.
8743
8744         * src/z80/gen.c (aopDump): Added a dump function.
8745
8746 2001-11-25  Bernhard Held  <bernhard AT bernhardheld.de>
8747         * sim/ucsim/s51.src/glob.cc: DS390 SFRs and bits added.
8748
8749         * sim/ucsim/s51.src/port.cc: Port 4 and 5 added.
8750
8751         * sim/ucsim/s51.src/regs51.h: DS390 SFRs added.
8752
8753         * sim/ucsim/s51.src/uc390.cc: Some details improved, CKRDY works for tinibios.
8754
8755         * sim/ucsim/s51.src/uc390cl.h: Work in progress.
8756
8757         * sim/ucsim/sim.src/uccl.h: 6 ports for DS390.
8758
8759         * support/regression/fwk/lib/testfwk.c: Run with tinibios.
8760
8761         * support/regression/ports/mcs51/spec.mk: Fine tuninig.
8762
8763         * support/regression/ports/ds390/support.c: Use tinibios.
8764
8765         * support/regression/ports/ds390/spec.mk: Fine tuning, use tinibios.
8766
8767 2001-11-23  Michael Hope  <michaelh AT juju.net.nz>support/regression/tests/bug-460010.c
8768
8769         * src/z80/ralloc.c (packRegsForHLUse3): Changed to not pack into HL if anything is in direct space.
8770         (packRegsForHLUse3): Added packing support for send, cast, and return value from a call.
8771
8772         * src/z80/peeph.def: Added rules for optimising pushes of part of a pair.
8773
8774         * src/z80/gen.c (emitCall): Changed the stack fixup to not use HL.
8775
8776 2001-11-18  Michael Hope  <michaelh AT juju.net.nz>
8777
8778         * src/z80/gen.c (genCmp): Fixed compare on unsigned.
8779
8780         * src/z80/ralloc.c (packRegsForHLUse3): Created and optimised.
8781         (packRegsForIYUse): Created and optimised.
8782
8783 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8784
8785         * support/regression/tests/float.c (testFloatAdd): Fixed up warning.
8786 2001-11-18  Bernhard Held  <bernhard AT bernhardheld.de>
8787
8788         * sdcc/support/regression/tests/bug-460010.c: fix seg violation on host
8789
8790         * sdcc/support/regression/tests/muldiv.c: fix output on mcs51
8791
8792         * sdcc/support/regression/tests/stacks.c: fix DSEG overflow on mcs51
8793
8794 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8795
8796         * sdcc/sim/device/lib/_gptrget.c: mem region 5 (idata) added
8797
8798         * sdcc/sim/device/lib/_gptrput.c: mem region 5 (idata) added
8799
8800 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8801
8802         * sdcc/sim/ucsim/globals.cc: New: IXRAM.
8803
8804         * sdcc/sim/ucsim/stypes.h: New: IXRAM.
8805
8806         * sdcc/sim/ucsim/s51.src/uc390.cc: New: IXRAM.
8807
8808 2001-11-07  Michael Hope  <michaelh AT juju.net.nz>
8809
8810         * src/z80/ralloc.c (packRegsForHLUse): Banned IFXs from being packed into HL.
8811         (packRegsForHLUse): Added rule to pack address of/pointer get for itemps into HL for the Z80.
8812         (packRegsForAccUse2): Added rule to pack hbit IFXs into A.
8813
8814         * src/z80/main.c (_setDefaultOptions): Made float code re-entrant by default.
8815
8816         * src/z80/gen.c (aopGetLitWordLong): Added word support for floats.
8817         (genNotFloat): Added.
8818         (genUminusFloat): Added.
8819
8820         * device/lib/z80/Makefile: Added floating pt stubs.
8821
8822         * device/lib/Makefile.in (Z80SOURCES): Added floating pt support.
8823
8824         * src/z80/gen.c (genIpush): Fixed up a push of one byte when left is in a pair.
8825
8826         * device/lib/_fsadd.c (__fsadd): Fixed up return where the numbers are hugely different.
8827
8828 2001-11-07  Bernhard Held  <bernhard AT bernhardheld.de>
8829
8830         * sdcc/sim/ucsim/s51.src/glob.cc: Minor fix.
8831
8832         * sdcc/sim/ucsim/s51.src/regs51.h: Minor fix.
8833
8834         * sdcc/support/regression/Makefile: Add port ds390.
8835
8836         * sdcc/support/regression/ports/mcs51/spec.mk: Minor change.
8837
8838         * sdcc/support/regression/ports/z80/spec.mk: Minor change.
8839
8840         * sdcc/support/regression/ports/ds390/spec.mk: Added.
8841
8842         * sdcc/support/regression/ports/ds390/support.c: Added.
8843
8844         * sdcc/support/regression/ports/ds390/uCsim.cmd: Added.
8845
8846         * sdcc/support/regression/ports/mcs51/timeout.c: Cut.
8847
8848         * sdcc/support/regression/fwk/lib/timeout.c: Paste.
8849
8850 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8851
8852         * device/include/malloc.h: Added z80 and gbz80 support.
8853
8854         * device/lib/gbz80/heap.s: Added.
8855
8856         * device/lib/z80/heap.s: Added.
8857
8858         * device/lib/malloc.c: Added z80 and gbz80 support.
8859
8860         * support/regression/tests/malloc.c (testMalloc): Added.
8861
8862         * src/SDCCmain.c (parseCmdLine): Added support for -Wp.
8863
8864         * support/regression/tests/bug-478094.c: Added.
8865
8866         * src/z80/gen.c (commitPair): Fixed silly gbz80/z80 commit to static bug.
8867
8868 2001-11-04  Bernhard Held  <bernhard AT bernhardheld.de>
8869
8870         * sdcc/sim/ucsim/s51.src/uc390cl.h: Improvement for ds390 to run regression tests
8871
8872         * sdcc/sim/ucsim/s51.src/uc390.h: Improvement for ds390 to run regression tests
8873
8874         * sdcc/sim/ucsim/s51.src/regs51.h: Improvement for ds390 to run regression tests
8875
8876         * sdcc/sim/ucsim/s51.src/glob.cc: Improvement for ds390 to run regression tests
8877
8878         * sdcc/support/regression/tests/bug-460010.c: Small change for ds390
8879
8880 2001-11-04  Michael Hope  <michaelh AT juju.net.nz>
8881
8882         * src/z80/peeph-gbz80.def: Removed a bad sub optimisation.
8883
8884 2001-11-03  Michael Hope  <michaelh AT juju.net.nz>
8885
8886         * support/regression/tests/bug-477927.c: Added.
8887
8888         * src/z80/peeph.def: Added minor rules.
8889
8890         * src/z80/gen.c (genPlusIncr): Added an extra plusinc rule.
8891
8892         * src/z80/peeph.def: Added jump optimisation modification.
8893
8894 2001-11-01  Michael Hope  <michaelh AT juju.net.nz>
8895
8896         * src/SDCCmain.c (linkEdit): Added runtime path detection to the mcs51 port.
8897
8898 2001-10-30  Michael Hope  <michaelh AT juju.net.nz>
8899
8900         * support/regression/tests/funptrs.c: Added.
8901
8902 2001-10-29  Michael Hope  <michaelh AT juju.net.nz>
8903
8904         * src/z80/ralloc.c (packRegsForHLUse): Fixed up bad spill due to pushing one byte via HL.
8905
8906 2001-10-28  Michael Hope  <michaelh AT juju.net.nz>
8907
8908         * src/z80/gen.c (genArrayInit): Made it work for on stack arrays.
8909
8910         * src/z80/main.c (gbz80_port =): Added rle support to the gbz80 port.
8911
8912         * src/z80/gen.c (genMinus): Fixed for where the result is one byte.
8913         (movLeft2ResultLong): Created.
8914
8915         * src/z80/ralloc.c (packRegsForHLUse): Added a couple of simple cases for the GB.
8916         (joinPushes): Added.  Joins two char pushes into a word push.
8917
8918 2001-10-27  Michael Hope  <michaelh AT juju.net.nz>
8919
8920         * support/cpp2/Makefile.in (install): Added creation of dest dir.
8921
8922         * support/makebin/Makefile (install): Added creation of dest dir.
8923
8924 2001-10-24 Karl Bongers <karl AT turbobit.com>
8925
8926         * configure.in, configure, Makefile, support/cpp: Removed cpp folder, since we have new cpp2 preprocessor code.
8927
8928 2001-10-21  Michael Hope  <michaelh AT juju.net.nz>
8929
8930         * src/z80/ralloc.c: Turned off faulty pack for one use.
8931
8932         * src/z80/peeph-gbz80.def: Removed redundent restart options.
8933
8934         * src/z80/gen.c (genMult): Added native mul for constants on the z80 and gbz80.
8935
8936 2001-10-21  Bernhard Held  <bernhard AT bernhardheld.de>
8937
8938         * support/regression/Makefile: Improved clean
8939
8940         * support/regression/ports/gbz80/spec.mk: Added clean
8941
8942         * support/regression/ports/host/spec.mk: Added clean
8943
8944         * support/regression/ports/z80/spec.mk: Added clean
8945
8946         * support/regression/ports/mcs51/spec.mk: Added clean, little improvements
8947
8948         * support/regression/ports/mcs51/timeout.c: little improvements
8949
8950 2001-10-17  Michael Hope  <michaelh AT juju.net.nz>
8951
8952         * device/lib/malloc.c (MEMHEADER): Fixed against new pedantic pointers.
8953
8954         * support/regression/fwk/include/testfwk.h: Fixed up to use function pts correctly.
8955
8956         * support/regression/generate-cases.py: Fixed up to use function pts correctly.
8957
8958 2001-10-16  Bernhard Held  <bernhard AT bernhardheld.de>
8959
8960         * support/regression/port/mcs51/spec.mk: add timeout for uCsim
8961
8962         * support/regression/port/mcs51/timeout.c: add timeout for uCsim
8963
8964 2001-10-13  Michael Hope  <michaelh AT juju.net.nz>
8965         * src/z80/gen.c (emitCall): Fixed up missing spill of HL when used to assign the result value.
8966
8967         * src/z80/ralloc.c: Turned off pack for one use as it's quite broken.
8968
8969         * src/SDCCmain.c (linkEdit): Added support for passing a legacy command line through the processor.
8970
8971         * src/mcs51/main.c (_linkCmd): Added bin path to command.
8972
8973         * src/SDCCmain.c (initValues): Added support for when it it called just to link.
8974
8975         * as/mcs51/lklibr.c (libfil;): Turned off 'library file' message.
8976
8977         * src/SDCCval.c (constVal): Fixed usage of 'L' modifier problems on ppc.
8978
8979         * support/regression/tests/longor.c: Added.
8980
8981 2001-10-11  Bernhard Held  <bernhard AT bernhardheld.de>
8982
8983         * as/mcs51/asdata.c: replaced FILENAME_MAX with PATH_MAX
8984
8985         * as/mcs51/aslink.h: define PATH_MAX
8986
8987         * as/mcs51/asm.h: define PATH_MAX
8988
8989         * as/mcs51/asmain.c: replaced FILENAME_MAX with PATH_MAX
8990
8991         * as/mcs51/asnoice.c: replaced FILENAME_MAX with PATH_MAX
8992
8993         * as/mcs51/lklex.c: replaced FILENAME_MAX with PATH_MAX
8994
8995         * as/mcs51/lkmain.c: replaced FILENAME_MAX with PATH_MAX
8996
8997         * src/SDCCglobl.h: define PATH_MAX
8998
8999         * src/SDCCmacro.c: replaced FILENAME_MAX with PATH_MAX
9000
9001         * src/SDCCmain.c: replaced FILENAME_MAX with PATH_MAX
9002
9003 2001-10-11  Michael Hope  <michaelh AT juju.net.nz>
9004
9005         * src/z80/gen.c (gencjneshort): Fixed
9006
9007         * src/z80/ralloc.c (packRegsForHLUse): Added pack into HL for cast then ipush.
9008
9009 2001-10-09  Michael Hope  <michaelh AT juju.net.nz>
9010
9011         * support/regression/tests/bug-469671.c: Added.
9012
9013         * src/z80/gen.c (shiftIntoPair): Fixed up warning.
9014
9015 2001-10-08  Michael Hope  <michaelh AT juju.net.nz>
9016
9017         * src/SDCCmain.c: Added --fommit-frame-pointer option and implemented in the z80 port.
9018
9019         * src/z80/gen.c (genPlus): Fixed to work with extended stack.  Also fixed genMinus, genCmp.  genUMinus is still left.
9020
9021 2001-10-08  Bernhar Held  <bernhard AT bernhardheld.de>
9022
9023         * src/SDCCmain.c (preProcess): added define SDCC_NOOVERLAY
9024
9025         * src/device/lib/_mulint.c  : removed hint: nooverlay bug
9026
9027         * src/device/lib/_mullong.c : removed hint: nooverlay bug
9028
9029         * src/device/lib/_divuint.c : removed hint: nooverlay bug
9030
9031         * src/device/lib/_divulong.c: removed hint: nooverlay bug
9032
9033         * src/device/lib/_moduint.c : removed hint: nooverlay bug
9034
9035         * src/device/lib/_modulong.c: removed hint: nooverlay bug
9036
9037 2001-10-07  Michael Hope  <michaelh AT juju.net.nz>
9038
9039         * 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.
9040
9041         * support/Util/NewAlloc.c (freeTrace): Changed free for the gc case to not free at all.  Fixes runtime segfault.
9042
9043         * support/regression/tests/scott-compare3.c (c_abcd): Fixed up casts.
9044
9045 2001-10-07    <johan AT FRIJA>
9046
9047         * device/lib/gets.c (gets): fixed the return value.
9048
9049 2001-10-06  Michael Hope  <michaelh AT juju.net.nz>
9050         * src/SDCCmain.c (WRITE_SEG_LOC): Fixed up to use Safe_strdup.
9051
9052         * 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.
9053
9054         * 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.
9055
9056         * src/z80/gen.c (genZ80Code): Added de-allocation via trace support.
9057
9058         * src/pic/gen.c: Removed Safe_strdup.
9059
9060         * configure.in: Added option to enable libgc support.
9061
9062         * src/SDCCbitv.c (bitVectnBitsOn): Optimised.
9063         (bitVectUnion): Optimised.
9064         (bitVectIntersect): Optimised.
9065         (bitVectBitsInCommon): Optimised.
9066         (bitVectCplAnd): Optimised.
9067
9068         * support/makebin/makebin.c (usage): Removed getopt as mingw32 doesn't have it.  Sigh.
9069
9070 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9071
9072         * src/SDCCmain.c: distinguish between assembler debug and plain options
9073
9074         * src/avr/main.c:   remove standard assembler options
9075
9076         * src/ds390/main.c: remove standard assembler options
9077
9078         * src/mcs51/main.c: remove standard assembler options
9079
9080         * src/port.h: removed "PENDING" comment
9081
9082 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9083
9084         * src/device/lib/_mulint.c  : new, with assember functions
9085
9086         * src/device/lib/_mullong.c : new, with assember functions
9087
9088         * src/device/lib/_divuint.c : with assember functions
9089
9090         * src/device/lib/_divsint.c : with assember functions
9091
9092         * src/device/lib/_divulong.c: with assember functions
9093
9094         * src/device/lib/_divslong.c: with assember functions
9095
9096         * src/device/lib/_moduint.c : with assember functions
9097
9098         * src/device/lib/_modsint.c : with assember functions
9099
9100         * src/device/lib/_modulong.c: with assember functions
9101
9102         * src/device/lib/_modslong.c: with assember functions
9103
9104         * src/device/lib/libint.lib:  replaced _muluint.c  and _mulsint.c  by _mulint.c
9105
9106         * src/device/lib/liblong.lib: replaced _mululong.c and _mulslong.c by _mullong.c
9107
9108         * src/device/lib/Makefile.in: replaced _muluint.c  and _mulsint.c  by _mulint.c
9109                                       replaced _mululong.c and _mulslong.c by _mullong.c
9110
9111 2001-10-03 Bernhard Held <bernhard AT bernhardheld.de>
9112
9113         * src/SDCCsymt.c: sequence of specifiers in pintTypeChain() corrected
9114
9115 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9116
9117         * src/SDCCglue.c: test, if win32api is available for MINGW
9118
9119 2001-10-01 Bernhard Held <bernhard AT bernhardheld.de>
9120
9121         * src/SDCCsymt.c: no more _modifier in printTypeChain()
9122         * support/regression/tests/driverstruct.c: REENTRANT for mcs51
9123         * support/regression/ports/gbz80/spec.mk: removed GENERIC
9124         * support/regression/ports/host/spec.mk: removed GENERIC
9125         * support/regression/ports/mcs51/spec.mk: removed GENERIC
9126         * support/regression/ports/z80/spec.mk: removed GENERIC
9127
9128 2001-10-01  Michael Hope  <michaelh AT juju.net.nz>
9129
9130         * support/regression/fwk/lib/testfwk.c (__printf): Removed GENERIC.
9131
9132         * support/regression/tests/bug-467035.c: Created.
9133
9134 2001-10-01    <johan AT FRIJA>
9135
9136         * src/SDCC.y: fixed bug #466586 part 1
9137
9138 2001-10-01  Johan Knol <johan.knol AT iduna.nl>
9139
9140         * SDCCicode.c: z80 has no generic pointers
9141         * removed -s from strip in all Makefile(.in)'s. It is not needed, but Solaris chocks on it.
9142
9143 2001-09-30  Michael Hope  <michaelh AT juju.net.nz>
9144
9145         * sim/ucsim/cmd.src/Makefile.in ($(PRJDIR)/libcmd.a): Changed all ar references to $(AR) for Solaris.
9146
9147 2001-09-29  Michael Hope  <michaelh AT juju.net.nz>
9148
9149         * Makefile (sdcc-libs): Added makebin to the list of standard targets.
9150
9151         * support/regression/ports/z80/spec.mk: Updated to use env for sdcc bin dir for automatic regression.
9152
9153 2001-09-25  Michael Hope  <michaelh AT juju.net.nz>
9154
9155         * configure.in: Fixed up so that ucsim is only configured once.
9156
9157         * support/cpp2/configure.in: Fixed to use the program transform to append the .exe for the win32 build.
9158
9159         * src/SDCCutil.c (getPrefixFromBinPath): Fixed up to work with win32 in all of its glory.
9160         (getPathDifference): As above.
9161
9162         * src/SDCCmain.c (preProcess): Changed to use a temporary file in a proper temp directory.  Fixed case where pre-processing only.
9163
9164         * src/SDCCglue.c (tempfilename): Added function for pre-processor.
9165
9166 2001-09-23  Michael Hope  <michaelh AT juju.net.nz>
9167         * .version: Updated to 2.3.1
9168
9169         * src/z80/main.c (z80_port =): Added macro based linker and assembler command line support.
9170         Added copyright header.
9171
9172         * src/SDCCmain.c: Shifted various functions into SDCCutil.c
9173         (assemble): Added support for macro based assembler commands.
9174         (linkEdit): Added support for macro based linker commands.
9175         (preProcess): Changed the pre-processor to use macros.
9176         (_setPaths): Added functionality to autodetect the include, lib and bin dir paths.
9177         (_discoverPaths): Added support for overriding the install directory using the SDCCDIR env variable.
9178
9179         * device/lib/z80/crt0.s: Added module name for debugging.
9180
9181 2001-09-20  Michael Hope  <michaelh AT juju.net.nz>
9182
9183         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9184
9185         * src/SDCChasht.c (hTabDeleteByKey): Fixed delete as it would delete the last item from a bucket even if it wasn't the real one.
9186
9187         * src/SDCCglue.c: Moved gc_strdup to SDCCutil.c
9188
9189         * src/Makefile.in: Added SDCCmacro and SDCCutil
9190
9191 2001-09-19  Michael Hope  <michaelh AT juju.net.nz>
9192
9193         * src/SDCCmain.c (printVersionInfo): Added the build date to the version info.
9194
9195 2001-09-16    <johan AT FRIJA>
9196
9197         * 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.
9198
9199 2001-09-15    <johan AT FRIJA>
9200
9201         * src/mcs51/ralloc.c: (findAssignToSym): fixed bug #460662 part 1
9202         * src/ds390/ralloc.c (findAssignToSym): fixed bug #460662 part 1
9203
9204 2001-09-11    <johan AT FRIJA>
9205
9206         * src/SDCCval.c (valDiv Mod Minus Plus Shift): keep litteral expressions as small as possible (bug #460010)
9207
9208 2001-09-10  Michael Hope  <michaelh AT juju.net.nz>
9209
9210         * support/regression/tests/bug-460444.c: Added test case.
9211
9212         * src/z80/gen.c (genOr): bug 460444: if (a ^ lit) was broken for &, |, and ^.
9213         (genCast): Added justification for all of the asserts.
9214
9215 2001-09-10  Bernhard Held <bernhard AT bernhardheld.de>
9216
9217         * support/regression/support.c: _xdata replaced by xdata
9218
9219         * support/regression/spec.mk: removed _generic
9220
9221 2001-09-09  Michael Hope  <michaelh AT juju.net.nz>
9222
9223         * src/pic/ralloc.c (debugLogRegType): Removed some old types to get it to compile.
9224
9225         * src/z80/gen.c (shiftR2Left2Result): Improved the case when v = v >> n for small values of n to use less code space and time.
9226         (genrshTwo): Fixed v = v >> n where v is a negative int and n is > 8: bug 460010.
9227
9228         * src/z80/peeph.def: Added a rule to optimise shift then compare.
9229
9230         * support/regression/tests/bug-460000.c (testShiftByParam): Added test case.
9231
9232         * support/regression/tests/bug-460010.c: Added test case.
9233
9234         * support/regression/Makefile (test-host): Removed a silly 'clean' target when testing against gcc.
9235
9236 2001-09-09  Bernhard Held <bernhard AT bernhardheld.de>
9237
9238         * support/regression/Makefile: inter-port-clean adjusted for mcs51
9239
9240         * support/regression/testfwk.c: removed workaround for bug #436344
9241
9242         * support/regression/tests/bp.c: use less memory with mcs51
9243
9244         * support/regression/tests/bug-441448.c: use less memory
9245
9246         * support/regression/tests/ports/mcs51/spec.mk: cleanup, use --stack-after-data
9247
9248         * support/regression/collate-results.py: typo
9249
9250 2001-09-08  Michael Hope  <michaelh AT juju.net.nz>
9251
9252         * support/regression/tests/fetchoverlap.c: Added new test case.
9253
9254         * support/regression/tests/bp.c: Added new test case.
9255
9256         * support/regression/tests/bug-448984.c: Added new test case.
9257
9258         * support/regression/tests/pow2shifts.c: Added new test case.
9259
9260         * src/z80/gen.c: Turned off the noise it normally generates for the release.
9261         (genlshTwo): Fixed right shift for count > 8.
9262
9263         * src/z80/ralloc.c: Disabled most of the ACC packing rules as they weren't getting hit and weren't at all safe.
9264
9265 2001-09-08    <johan AT FRIJA>
9266
9267         * src/SDCCicode.c (geniCodeCall): a CPOINTER can be used as a function
9268
9269 2001-09-07    <johan AT FRIJA>
9270
9271         * src/SDCCicode.c (newiCodeCondition): fixed bug #456235 (1.77)
9272
9273         * src/SDCCglue.c (emitRegularMap): only delete a symbol when it is a symbol
9274
9275 2001-09-06    <johan AT FRIJA>
9276
9277         * src/SDCC.y: this could be a fix for bug #458744 (1.37)
9278         * bernhard noted me at this: "() equals to (void)" (1.38)
9279
9280 2001-09-05    <johan AT FRIJA>
9281
9282         * src/SDCCglue.c (emitRegularMap): a fix for bug #458099/2
9283
9284 2001-09-04    <johan AT FRIJA>
9285
9286         * src/SDCCsymt.c (checkSClass): a fix for bug #458099/1
9287
9288
9289 2001-09-04  Paul Stoffregen  <paul AT pjrc.com>
9290
9291         * pragma noinduction broke memcpy on mcs51 large model.  Moved it inside z80 optimization
9292
9293 2001-09-03  Michael Hope  <michaelh AT juju.net.nz>
9294
9295         * link/z80/aslink.h: Fixed path for PATH_MAX
9296
9297 2001-09-02  Michael Hope  <michaelh AT juju.net.nz>
9298
9299         * src/z80/gen.c (fetchLitPair): Changed so that it properly caches direct space references.
9300
9301         * support/regression/tests/addsub.c: Added cases to cover all the +, - combinations.
9302
9303         * support/regression/tests/uminus.c: Added a test for the unary minus operator.
9304
9305         * 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.
9306
9307 2001-09-01  Michael Hope  <michaelh AT juju.net.nz>
9308
9309         * src/z80/gen.c: Fixed up generator to pass the regresion tests, specifically fixing loads for longs, genCmp, and turned on the map file.
9310         (genCmp): Fixed up genCmp for the GB with longs.
9311
9312         * device/lib/gbz80/Makefile: Fixed up all the libraries to pass the regression tests.
9313
9314         * support/regression/ports/host/spec.mk: Updated to compile with the new type specifiers.
9315
9316         * device/lib/Makefile.in (Z80SOURCES): Removed old _mululong, _mulslong, and unneeded _mulint.
9317
9318         * device/lib/_mullong.c (_mulslong): Changed to actually return a value :)
9319
9320 2001-08-30  Paul Stoffregen  <paul AT pjrc.com>
9321
9322         * added peepholes 223 to 231 to mcs51 port.  These improve code when using large model.
9323
9324 2001-08-30  Michael Hope  <michaelh AT juju.net.nz>
9325
9326         * 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.
9327
9328         * src/z80/gen.c (genPlus): Changed bad long add for gb to a fall through.
9329
9330 2001-08-29  Michael Hope  <michaelh AT juju.net.nz>
9331
9332         * link/z80/aslink.h: Fixed long file name support.  Is now based off PATH_MAX instead of a constant.
9333
9334         * src/z80/gen.c: Fixed add and sub for the case where left or right are in static space.
9335
9336 2001-08-30 Bernhard Held   <bernhard AT bernhardheld.de>
9337
9338   * sim/ucsim/configure:    little improvement of Cygwin-detection
9339   * sim/ucsim/configure.in: little improvement of Cygwin-detection
9340   * sim/ucsim/cmd.src/newcmdcl.h: include <sys/types.h> to define fd_set automated build
9341   * support/regression/tests/bug-221100.c: small changes for mcs51
9342   * support/regression/tests/bug-221168.c: small changes for mcs51
9343   * support/regression/tests/bug-227710.c: small changes for mcs51
9344   * support/regression/tests/staticinit.c: small changes for mcs51
9345   * as/mcs51/aslink.h: accept everything as symbol name in rel-files, bug fix ID 452601
9346   * as/mcs51/lklex.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9347   * as/mcs51/lksym.c:  accept everything as symbol name in rel-files, bug fix ID 452601
9348
9349 $Revision$