diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2007-04-03 01:34:35 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2007-04-03 01:34:35 (GMT) |
commit | 8cfd70638999b67e37edba6967467a2ece7a91fe (patch) | |
tree | 9800be2d600ba1c88b6e67f0e8a1b46a08f32b64 /generic/tclCompile.h | |
parent | fa49c9af9b48554cf441f2554c9cd58d3ca1f267 (diff) | |
download | tcl-8cfd70638999b67e37edba6967467a2ece7a91fe.zip tcl-8cfd70638999b67e37edba6967467a2ece7a91fe.tar.gz tcl-8cfd70638999b67e37edba6967467a2ece7a91fe.tar.bz2 |
* generic/tclBasic.c: Added bytecode compilers for the
* generic/tclCompCmds.c: variable linking commands: 'global',
* generic/tclCompile.h: 'variable', 'upvar', 'namespace upvar'
* generic/tclExecute.c: [Patch 1688593]
* generic/tclInt.h:
* generic/tclVar.c:
Diffstat (limited to 'generic/tclCompile.h')
-rw-r--r-- | generic/tclCompile.h | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/generic/tclCompile.h b/generic/tclCompile.h index b5ad0ba..f0a3117 100644 --- a/generic/tclCompile.h +++ b/generic/tclCompile.h @@ -8,7 +8,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.69 2007/03/02 10:32:12 dkf Exp $ + * RCS: @(#) $Id: tclCompile.h,v 1.70 2007/04/03 01:34:37 msofer Exp $ */ #ifndef _TCLCOMPILATION @@ -614,8 +614,17 @@ typedef struct ByteCode { #define INST_JUMP_TABLE 121 +/* + * Instructions to support compilation of global, variable, upvar and + * [namespace upvar]. + */ + +#define INST_UPVAR 122 +#define INST_NSUPVAR 123 +#define INST_VARIABLE 124 + /* The last opcode */ -#define LAST_INST_OPCODE 121 +#define LAST_INST_OPCODE 124 /* * Table describing the Tcl bytecode instructions: their name (for displaying @@ -904,8 +913,6 @@ MODULE_SCOPE int TclNoIdentOpCmd(ClientData clientData, MODULE_SCOPE void TclVerifyGlobalLiteralTable(Interp *iPtr); MODULE_SCOPE void TclVerifyLocalLiteralTable(CompileEnv *envPtr); #endif -MODULE_SCOPE int TclCompileVariableCmd(Tcl_Interp *interp, - Tcl_Parse *parsePtr, CompileEnv *envPtr); MODULE_SCOPE int TclWordKnownAtCompileTime(Tcl_Token *tokenPtr, Tcl_Obj *valuePtr); MODULE_SCOPE int TclWordSimpleExpansion(Tcl_Token *tokenPtr); |