diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2014-07-18 12:18:44 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2014-07-18 12:18:44 (GMT) |
commit | 6cd3ffa2465b9f50cbb6baeab7cc2b8b072e680d (patch) | |
tree | 7890c00992d3108408334969e5732ec921ecca15 /generic/tclCompile.h | |
parent | d2d54ff3de674eadeb05d439b443e1c2658caf8f (diff) | |
download | tcl-6cd3ffa2465b9f50cbb6baeab7cc2b8b072e680d.zip tcl-6cd3ffa2465b9f50cbb6baeab7cc2b8b072e680d.tar.gz tcl-6cd3ffa2465b9f50cbb6baeab7cc2b8b072e680d.tar.bz2 |
[b43f2b49f7] New compilation strategy for lappend that allows multi-value
lappend to not have quadratic performance (through better reference management).
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index 5665ca9..fa4a360 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -799,8 +799,13 @@ typedef struct ByteCode { #define INST_TRY_CVT_TO_BOOLEAN 183 #define INST_STR_CLASS 184 +#define INST_LAPPEND_LIST 185 +#define INST_LAPPEND_LIST_ARRAY 186 +#define INST_LAPPEND_LIST_ARRAY_STK 187 +#define INST_LAPPEND_LIST_STK 188 + /* The last opcode */ -#define LAST_INST_OPCODE 184 +#define LAST_INST_OPCODE 188 /* * Table describing the Tcl bytecode instructions: their name (for displaying |