diff options
author | andreas_kupries <akupries@shaw.ca> | 2008-07-22 21:41:48 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2008-07-22 21:41:48 (GMT) |
commit | 9f031215bb9752fcfc9c9065039b509c0962117e (patch) | |
tree | 60a7f49c73794657a02d93ddc3f272200e6f0c2d /generic/tclCompile.h | |
parent | 63d4144a37db8c69be1a8090936516467f684480 (diff) | |
download | tcl-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 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index a27bbd9..ec3cbbf 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclCompile.h,v 1.94 2008/07/21 22:50:34 andreas_kupries Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.95 2008/07/22 21:41:55 andreas_kupries Exp $ */ #ifndef _TCLCOMPILATION @@ -134,6 +134,8 @@ typedef struct ECL { * command. */ } ECL; +/* ExtIndex defined in tclInt.h */ + typedef struct ExtCmdLoc { int type; /* Context type. */ Tcl_Obj *path; /* Path of the sourced file the command is @@ -141,14 +143,11 @@ typedef struct ExtCmdLoc { ECL *loc; /* Command word locations (lines). */ int nloc; /* Number of allocated entries in 'loc'. */ int nuloc; /* Number of used entries in 'loc'. */ - Tcl_HashTable litIndex; /* HashValue is ExtIndex* */ + ExtIndex* eiloc; + int neiloc; + int nueiloc; } ExtCmdLoc; -typedef struct ExtIndex { - int pc; /* Instruction pointer of a command in ExtCmdLoc.loc[.] */ - int word; /* Index of word in ExtCmdLoc.loc[cmd]->line[.] */ -} ExtIndex; - EXTERN void TclEnterCmdWordIndex (ExtCmdLoc *eclPtr, Tcl_Obj* obj, int pc, int word); |