summaryrefslogtreecommitdiffstats
path: root/generic/tclCompile.h
diff options
context:
space:
mode:
authorandreas_kupries <andreas_kupries@noemail.net>2008-07-22 21:40:03 (GMT)
committerandreas_kupries <andreas_kupries@noemail.net>2008-07-22 21:40:03 (GMT)
commiteceb74403fd6dd050eb27e21cd522dabec64c9be (patch)
treecef9d19da7d093c66b64a11ba40714de761a2840 /generic/tclCompile.h
parentf76d914a0e1b9ed36c306b9311e03c1d517040e4 (diff)
downloadtcl-eceb74403fd6dd050eb27e21cd522dabec64c9be.zip
tcl-eceb74403fd6dd050eb27e21cd522dabec64c9be.tar.gz
tcl-eceb74403fd6dd050eb27e21cd522dabec64c9be.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]. FossilOrigin-Name: bb509fe952436dae5b069f624b2029dcc0777f80
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r--generic/tclCompile.h10
1 files changed, 4 insertions, 6 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h
index 8192aa4..adde52c 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.33.2.3 2008/07/21 19:37:43 andreas_kupries Exp $
+ * RCS: @(#) $Id: tclCompile.h,v 1.33.2.4 2008/07/22 21:40:31 andreas_kupries Exp $
*/
#ifndef _TCLCOMPILATION
@@ -146,12 +146,10 @@ 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 the command in ExtCmdLoc.loc[.] */
- int word; /* Index of word in ExtCmdLoc.loc[cmd]->line[.] */
-} ExtIndex;
EXTERN void TclEnterCmdWordIndex _ANSI_ARGS_((
ExtCmdLoc *eclPtr, Tcl_Obj* obj, int pc, int word));