added printf benchmarks to manual
[fw/sdcc] / ChangeLog
index 1723c1e726dc5f4e3d2fbaa69cc9242d66cfe625..d27ad78f60489a729d5b689afc52b127cacea166 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,130 @@
+2007-01-26 Paul Stoffregen <paul AT pjrc.com>
+
+       * doc/sdccman.lyx: add printf benchmarks
+
+2007-01-25 Paul Stoffregen <paul AT pjrc.com>
+
+       * device/lib/printf_fast.c: fix %c, char promoted to int
+       * device/lib/printf_tiny.c: fix %c, char promoted to int
+
+2007-01-25 Paul Stoffregen <paul AT pjrc.com>
+
+       * device/lib/printf_fast.c: fix float overflow check, bug #1525093
+
+2007-01-25 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
+
+       * support/regression/tests/swap.c: 64 bit hosts failed
+       * doc/sdccman.lyx: added preliminary mcs51 printf feature matrix
+
+2007-01-25 Raphael Neider <rneider AT web.de>
+
+       * src/pic/pcode.c (sameBank,FixRegisterBanking): optimize banksels
+         based on absolute register address, patch by Alex Blond
+
+2007-01-22 Raphael Neider <rneider AT web.de>
+
+       * src/pic/glue.c (pic14emitRegularMap): mark initialized symbols as
+         emitted, do not emit them again...
+
+2007-01-22 Raphael Neider <rneider AT web.de>
+
+       * src/regression/bank1.c, src/regression/compare6.c,
+         src/regression/add.c: cosmetic changes
+       * src/pic/pcode.h: moved GPTRTAG_* here from gen.c
+       * src/pic/gen.c: fixed global zero and one,
+         (aopForSym): removed unued code,
+         (aopGet): assert aop is defined, check and use `index' of
+           pCodeImmd operands (fixes #1630908),
+       * src/pic/pcode.c (get_op): added output of generic pointer tag,
+         (register_reassign): prevent accidental register unification,
+         (ReuseReg): cosmetic changes (also above)
+       * src/pic/glue.c (pic14_constructAbsMap,pic14emitRegularMap,
+         pic14emitStaticSeg): do not emit initialized data,
+         (printIval*): replaced with working versions,
+         (pic14createInterruptVect,picglue): use idata for initialized data,
+           now init data should work in all modules (not only main()),
+       * device/lib/pic/libsdcc/idata.c: NEW, handle initialized data
+
+2007-01-21 Borut Razem <borut.razem AT siol.net>
+
+       * sim/ucsim/configure.in: introduced macro DD_COPT_NO_IGNORE,
+         use -fPIC or -fpic if they are supported and not ignored
+       * src/SDCCval.c: fixed bug introduced by me in rev. #4577
+       * support/cpp2/libcpp/lex.c: fixed gcc 4.1.1 warnings
+
+2007-01-20 Borut Razem <borut.razem AT siol.net>
+
+       * src/SDCC.lex, src/SDCCmain.c, sdc/SDCCglobl.h, doc/sdccman.lyx:
+         implemented RFE #1470316: allow "$" in variable names
+
+2007-01-20 Raphael Neider <rneider AT web.de>
+
+       * device/include/pic/pic14regs.h: reverted accidental wipe of the file
+
+2007-01-20 Raphael Neider <rneider AT web.de>
+
+       * device/lib/pic/libdev/devices.txt: device list for mkall.sh
+       * device/lib/pic/libdev/mkall.sh: script to rebuild all device libs
+       * device/lib/pic/libdev/pic14ports.txt: device PORT specifications
+       * support/scripts/inc2h.pl: fixed major .inc parsing bugs,
+         applied patch from Robert Tate (#1629249) to add PORTs and TRISs
+       * device/lib/pic/libdev/pic*.c,
+       * device/include/pic/pic*.h: regenerated with enhanced inc2h.pl
+       * device/lib/pic/libdev/Makefile.in: show progress
+
+2007-01-19 Bernhard Held <bernhard AT bernhardheld.de>
+
+       * doc/sdccman.lyx: updated "configure options" for autoconf 2.6
+       * support/scripts/sdcc_cygwin_mingw32,
+       * support/scripts/sdcc_mingw32,
+       * support/scripts/build.mak: replaced --datadir by --datarootdir for
+       conformance with autoconf 2.6
+
+2007-01-19 Raphael Neider <rneider AT web.de>
+
+       * src/pic/device.c (register_map): fixed list construction
+       * src/pic/gen.c (genDivOneByte,genModOneByte): accept result > 1 byte,
+         (genMod): removed case for genModbits,
+         (genModbits): removed as now unused/unimplemented
+       * src/pic/glue.c (picglue): prevent name clash with sources 'init.c'
+
+2007-01-18 Frieder Ferlemann <Frieder.Ferlemann AT web.de>
+
+       * support/regression/tests/swap.c: added in response to #1638622
+       * doc/sdccman.lyx: synced version, minor changes
+
+2007-01-18 Borut Razem <borut.razem AT siol.net>
+
+       * SDCClabel.c: fixed bug #1638651: wrong linenumber presented in warning,
+         thanks to Gunther Jehle
+       * src/asm.c: don't die if the file drfined in #line couldn't be opened
+       * src/SDCC.lex, src/SDCCglobal.h, src/SDCCicode.c, src/SDCCsymt.c,
+         src/SDCCval.c: removed redundant definitions of currFname and mylineno;
+         use filename in lineno instead.
+       * SDCCast.c: removed MSVC warning C4018: '==' : signed/unsigned mismatch,
+         print the file name in ast_print()
+
+2007-01-18 Borut Razem <borut.razem AT siol.net>
+
+       * support/Util/dbuf_string.c: removed (PTR) cast since it is not
+         defined in MSVC
+       * src/SDCC.lex: stringLiteral() returns const char pointer,
+         EOF detection in stringLiteral(), fixed asmbuf memory leak,
+         fixed column counting
+       * src/SDCCval.[ch]: constVal(), value *strVal() and charVal()
+         accept const char pointer as parameter
+       * src/SDCCdwarf2.c: corrected buffer size
+
+2007-01-17 Borut Razem <borut.razem AT siol.net>
+
+       * support/Util/dbuf_string.c: fixed for amd64
+
+2007-01-15 Borut Razem <borut.razem AT siol.net>
+
+       * src/pic16/ralloc.c, src/pic/ralloc.c, src/SDCC.y:
+         removed terminal symbol ELIPSIS, since it was never generated by the
+         lexer and it was wrongly used in parameter_identifier_list rule
+
 2007-01-15 Raphael Neider <rneider AT web.de>
 
        * doc/sdccman.lyx: updated PIC14/16 command line args, updated PIC14