summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorandreas_kupries <akupries@shaw.ca>2008-07-22 21:41:48 (GMT)
committerandreas_kupries <akupries@shaw.ca>2008-07-22 21:41:48 (GMT)
commit9f031215bb9752fcfc9c9065039b509c0962117e (patch)
tree60a7f49c73794657a02d93ddc3f272200e6f0c2d /ChangeLog
parent63d4144a37db8c69be1a8090936516467f684480 (diff)
downloadtcl-9f031215bb9752fcfc9c9065039b509c0962117e.zip
tcl-9f031215bb9752fcfc9c9065039b509c0962117e.tar.gz
tcl-9f031215bb9752fcfc9c9065039b509c0962117e.tar.bz2
* generic/tclBasic.c: Reworked the handling of bytecode literals
* generic/tclCompile.c: for #280 to fix the abysmal performance * generic/tclCompile.h: for deep recursion, replaced the linear * generic/tclExecute.c: search through the whole stack with * generic/tclInt.h: another hashtable and simplified the data structure used by the compiler (array instead of hashtable). Incidentially this also fixes the memory leak reported via [Bug 2024937].
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d06add..57158b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,14 @@
+2008-07-22 Andreas Kupries <andreask@activestate.com>
+
+ * generic/tclBasic.c: Reworked the handling of bytecode literals
+ * generic/tclCompile.c: for #280 to fix the abysmal performance
+ * generic/tclCompile.h: for deep recursion, replaced the linear
+ * generic/tclExecute.c: search through the whole stack with
+ * generic/tclInt.h: another hashtable and simplified the data
+ structure used by the compiler (array instead of hashtable).
+ Incidentially this also fixes the memory leak reported via [Bug
+ 2024937].
+
2008-07-22 Miguel Sofer <msofer@users.sf.net>
* generic/tclBasic.c: Added numLevels field to CommandFrame,