tclExecute.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:182k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /* 
  2.  * tclExecute.c --
  3.  *
  4.  * This file contains procedures that execute byte-compiled Tcl
  5.  * commands.
  6.  *
  7.  * Copyright (c) 1996-1997 Sun Microsystems, Inc.
  8.  * Copyright (c) 1998-2000 by Scriptics Corporation.
  9.  * Copyright (c) 2001 by Kevin B. Kenny.  All rights reserved.
  10.  *
  11.  * See the file "license.terms" for information on usage and redistribution
  12.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  13.  *
  14.  * RCS: @(#) $Id: tclExecute.c,v 1.94.2.22 2007/09/13 15:28:12 das Exp $
  15.  */
  16. #include "tclInt.h"
  17. #include "tclCompile.h"
  18. #ifndef TCL_NO_MATH
  19. #   include "tclMath.h"
  20. #endif
  21. /*
  22.  * The stuff below is a bit of a hack so that this file can be used
  23.  * in environments that include no UNIX, i.e. no errno.  Just define
  24.  * errno here.
  25.  */
  26. #ifndef TCL_GENERIC_ONLY
  27. #   include "tclPort.h"
  28. #else /* TCL_GENERIC_ONLY */
  29. #   ifndef NO_FLOAT_H
  30. # include <float.h>
  31. #   else /* NO_FLOAT_H */
  32. # ifndef NO_VALUES_H
  33. #     include <values.h>
  34. # endif /* !NO_VALUES_H */
  35. #   endif /* !NO_FLOAT_H */
  36. #   define NO_ERRNO_H
  37. #endif /* !TCL_GENERIC_ONLY */
  38. #ifdef NO_ERRNO_H
  39. int errno;
  40. #   define EDOM   33
  41. #   define ERANGE 34
  42. #endif
  43. /*
  44.  * Need DBL_MAX for IS_INF() macro...
  45.  */
  46. #ifndef DBL_MAX
  47. #   ifdef MAXDOUBLE
  48. # define DBL_MAX MAXDOUBLE
  49. #   else /* !MAXDOUBLE */
  50. /*
  51.  * This value is from the Solaris headers, but doubles seem to be the
  52.  * same size everywhere.  Long doubles aren't, but we don't use those.
  53.  */
  54. # define DBL_MAX 1.79769313486231570e+308
  55. #   endif /* MAXDOUBLE */
  56. #endif /* !DBL_MAX */
  57. /*
  58.  * Boolean flag indicating whether the Tcl bytecode interpreter has been
  59.  * initialized.
  60.  */
  61. static int execInitialized = 0;
  62. TCL_DECLARE_MUTEX(execMutex)
  63. #ifdef TCL_COMPILE_DEBUG
  64. /*
  65.  * Variable that controls whether execution tracing is enabled and, if so,
  66.  * what level of tracing is desired:
  67.  *    0: no execution tracing
  68.  *    1: trace invocations of Tcl procs only
  69.  *    2: trace invocations of all (not compiled away) commands
  70.  *    3: display each instruction executed
  71.  * This variable is linked to the Tcl variable "tcl_traceExec".
  72.  */
  73. int tclTraceExec = 0;
  74. #endif
  75. /*
  76.  * Mapping from expression instruction opcodes to strings; used for error
  77.  * messages. Note that these entries must match the order and number of the
  78.  * expression opcodes (e.g., INST_LOR) in tclCompile.h.
  79.  */
  80. static char *operatorStrings[] = {
  81.     "||", "&&", "|", "^", "&", "==", "!=", "<", ">", "<=", ">=", "<<", ">>",
  82.     "+", "-", "*", "/", "%", "+", "-", "~", "!",
  83.     "BUILTIN FUNCTION", "FUNCTION",
  84.     "", "", "", "", "", "", "", "", "eq", "ne",
  85. };
  86. /*
  87.  * Mapping from Tcl result codes to strings; used for error and debugging
  88.  * messages. 
  89.  */
  90. #ifdef TCL_COMPILE_DEBUG
  91. static char *resultStrings[] = {
  92.     "TCL_OK", "TCL_ERROR", "TCL_RETURN", "TCL_BREAK", "TCL_CONTINUE"
  93. };
  94. #endif
  95. /*
  96.  * These are used by evalstats to monitor object usage in Tcl.
  97.  */
  98. #ifdef TCL_COMPILE_STATS
  99. long tclObjsAlloced = 0;
  100. long tclObjsFreed   = 0;
  101. #define TCL_MAX_SHARED_OBJ_STATS 5
  102. long tclObjsShared[TCL_MAX_SHARED_OBJ_STATS] = { 0, 0, 0, 0, 0 };
  103. #endif /* TCL_COMPILE_STATS */
  104. /*
  105.  * Macros for testing floating-point values for certain special cases. Test
  106.  * for not-a-number by comparing a value against itself; test for infinity
  107.  * by comparing against the largest floating-point value.
  108.  */
  109. #define IS_NAN(v) ((v) != (v))
  110. #define IS_INF(v) (((v) > DBL_MAX) || ((v) < -DBL_MAX))
  111. /*
  112.  * The new macro for ending an instruction; note that a
  113.  * reasonable C-optimiser will resolve all branches
  114.  * at compile time. (result) is always a constant; the macro 
  115.  * NEXT_INST_F handles constant (nCleanup), NEXT_INST_V is
  116.  * resolved at runtime for variable (nCleanup).
  117.  *
  118.  * ARGUMENTS:
  119.  *    pcAdjustment: how much to increment pc
  120.  *    nCleanup: how many objects to remove from the stack
  121.  *    result: 0 indicates no object should be pushed on the
  122.  *       stack; otherwise, push objResultPtr. If (result < 0),
  123.  *       objResultPtr already has the correct reference count.
  124.  */
  125. #define NEXT_INST_F(pcAdjustment, nCleanup, result) 
  126.      if (nCleanup == 0) {
  127.  if (result != 0) {
  128.      if ((result) > 0) {
  129.  PUSH_OBJECT(objResultPtr);
  130.      } else {
  131.  stackPtr[++stackTop] = objResultPtr;
  132.      }
  133.  } 
  134.  pc += (pcAdjustment);
  135.  goto cleanup0;
  136.      } else if (result != 0) {
  137.  if ((result) > 0) {
  138.      Tcl_IncrRefCount(objResultPtr);
  139.  }
  140.  pc += (pcAdjustment);
  141.  switch (nCleanup) {
  142.      case 1: goto cleanup1_pushObjResultPtr;
  143.      case 2: goto cleanup2_pushObjResultPtr;
  144.      default: panic("ERROR: bad usage of macro NEXT_INST_F");
  145.  }
  146.      } else {
  147.  pc += (pcAdjustment);
  148.  switch (nCleanup) {
  149.      case 1: goto cleanup1;
  150.      case 2: goto cleanup2;
  151.      default: panic("ERROR: bad usage of macro NEXT_INST_F");
  152.  }
  153.      }
  154. #define NEXT_INST_V(pcAdjustment, nCleanup, result) 
  155.     pc += (pcAdjustment);
  156.     cleanup = (nCleanup);
  157.     if (result) {
  158. if ((result) > 0) {
  159.     Tcl_IncrRefCount(objResultPtr);
  160. }
  161. goto cleanupV_pushObjResultPtr;
  162.     } else {
  163. goto cleanupV;
  164.     }
  165. /*
  166.  * Macros used to cache often-referenced Tcl evaluation stack information
  167.  * in local variables. Note that a DECACHE_STACK_INFO()-CACHE_STACK_INFO()
  168.  * pair must surround any call inside TclExecuteByteCode (and a few other
  169.  * procedures that use this scheme) that could result in a recursive call
  170.  * to TclExecuteByteCode.
  171.  */
  172. #define CACHE_STACK_INFO() 
  173.     stackPtr = eePtr->stackPtr; 
  174.     stackTop = eePtr->stackTop
  175. #define DECACHE_STACK_INFO() 
  176.     eePtr->stackTop = stackTop
  177. /*
  178.  * Macros used to access items on the Tcl evaluation stack. PUSH_OBJECT
  179.  * increments the object's ref count since it makes the stack have another
  180.  * reference pointing to the object. However, POP_OBJECT does not decrement
  181.  * the ref count. This is because the stack may hold the only reference to
  182.  * the object, so the object would be destroyed if its ref count were
  183.  * decremented before the caller had a chance to, e.g., store it in a
  184.  * variable. It is the caller's responsibility to decrement the ref count
  185.  * when it is finished with an object.
  186.  *
  187.  * WARNING! It is essential that objPtr only appear once in the PUSH_OBJECT
  188.  * macro. The actual parameter might be an expression with side effects,
  189.  * and this ensures that it will be executed only once. 
  190.  */
  191.     
  192. #define PUSH_OBJECT(objPtr) 
  193.     Tcl_IncrRefCount(stackPtr[++stackTop] = (objPtr))
  194.     
  195. #define POP_OBJECT() 
  196.     (stackPtr[stackTop--])
  197. /*
  198.  * Macros used to trace instruction execution. The macros TRACE,
  199.  * TRACE_WITH_OBJ, and O2S are only used inside TclExecuteByteCode.
  200.  * O2S is only used in TRACE* calls to get a string from an object.
  201.  */
  202. #ifdef TCL_COMPILE_DEBUG
  203. #   define TRACE(a) 
  204.     if (traceInstructions) { 
  205.         fprintf(stdout, "%2d: %2d (%u) %s ", iPtr->numLevels, stackTop, 
  206.        (unsigned int)(pc - codePtr->codeStart), 
  207.        GetOpcodeName(pc)); 
  208. printf a; 
  209.     }
  210. #   define TRACE_APPEND(a) 
  211.     if (traceInstructions) { 
  212. printf a; 
  213.     }
  214. #   define TRACE_WITH_OBJ(a, objPtr) 
  215.     if (traceInstructions) { 
  216.         fprintf(stdout, "%2d: %2d (%u) %s ", iPtr->numLevels, stackTop, 
  217.        (unsigned int)(pc - codePtr->codeStart), 
  218.        GetOpcodeName(pc)); 
  219. printf a; 
  220.         TclPrintObject(stdout, objPtr, 30); 
  221.         fprintf(stdout, "n"); 
  222.     }
  223. #   define O2S(objPtr) 
  224.     (objPtr ? TclGetString(objPtr) : "")
  225. #else /* !TCL_COMPILE_DEBUG */
  226. #   define TRACE(a)
  227. #   define TRACE_APPEND(a) 
  228. #   define TRACE_WITH_OBJ(a, objPtr)
  229. #   define O2S(objPtr)
  230. #endif /* TCL_COMPILE_DEBUG */
  231. /*
  232.  * DTrace instruction probe macros.
  233.  */
  234. #define TCL_DTRACE_INST_NEXT() 
  235.     if (TCL_DTRACE_INST_DONE_ENABLED()) {
  236. if (curInstName) {
  237.     TCL_DTRACE_INST_DONE(curInstName, stackTop - initStackTop,
  238.     stackPtr + stackTop);
  239. }
  240. curInstName = tclInstructionTable[*pc].name;
  241. if (TCL_DTRACE_INST_START_ENABLED()) {
  242.     TCL_DTRACE_INST_START(curInstName, stackTop - initStackTop,
  243.     stackPtr + stackTop);
  244. }
  245.     } else if (TCL_DTRACE_INST_START_ENABLED()) {
  246. TCL_DTRACE_INST_START(tclInstructionTable[*pc].name,
  247. stackTop - initStackTop, stackPtr + stackTop);
  248.     }
  249. #define TCL_DTRACE_INST_LAST() 
  250.     if (TCL_DTRACE_INST_DONE_ENABLED() && curInstName) {
  251. TCL_DTRACE_INST_DONE(curInstName, stackTop - initStackTop,
  252. stackPtr + stackTop);
  253.     }
  254. /*
  255.  * Macro to read a string containing either a wide or an int and
  256.  * decide which it is while decoding it at the same time.  This
  257.  * enforces the policy that integer constants between LONG_MIN and
  258.  * LONG_MAX (inclusive) are represented by normal longs, and integer
  259.  * constants outside that range are represented by wide ints.
  260.  *
  261.  * GET_WIDE_OR_INT is the same as REQUIRE_WIDE_OR_INT except it never
  262.  * generates an error message.
  263.  */
  264. #define REQUIRE_WIDE_OR_INT(resultVar, objPtr, longVar, wideVar)
  265.     (resultVar) = Tcl_GetWideIntFromObj(interp, (objPtr), &(wideVar));
  266.     if ((resultVar) == TCL_OK && (wideVar) >= Tcl_LongAsWide(LONG_MIN)
  267.     && (wideVar) <= Tcl_LongAsWide(LONG_MAX)) {
  268. (objPtr)->typePtr = &tclIntType;
  269. (objPtr)->internalRep.longValue = (longVar)
  270. = Tcl_WideAsLong(wideVar);
  271.     }
  272. #define GET_WIDE_OR_INT(resultVar, objPtr, longVar, wideVar)
  273.     (resultVar) = Tcl_GetWideIntFromObj((Tcl_Interp *) NULL, (objPtr),
  274.     &(wideVar));
  275.     if ((resultVar) == TCL_OK && (wideVar) >= Tcl_LongAsWide(LONG_MIN)
  276.     && (wideVar) <= Tcl_LongAsWide(LONG_MAX)) {
  277. (objPtr)->typePtr = &tclIntType;
  278. (objPtr)->internalRep.longValue = (longVar)
  279. = Tcl_WideAsLong(wideVar);
  280.     }
  281. /*
  282.  * Combined with REQUIRE_WIDE_OR_INT, this gets a long value from
  283.  * an obj.
  284.  */
  285. #define FORCE_LONG(objPtr, longVar, wideVar)
  286.     if ((objPtr)->typePtr == &tclWideIntType) {
  287. (longVar) = Tcl_WideAsLong(wideVar);
  288.     }
  289. #define IS_INTEGER_TYPE(typePtr)
  290. ((typePtr) == &tclIntType || (typePtr) == &tclWideIntType)
  291. #define IS_NUMERIC_TYPE(typePtr)
  292. (IS_INTEGER_TYPE(typePtr) || (typePtr) == &tclDoubleType)
  293. #define W0 Tcl_LongAsWide(0)
  294. /*
  295.  * For tracing that uses wide values.
  296.  */
  297. #define LLD "%" TCL_LL_MODIFIER "d"
  298. #ifndef TCL_WIDE_INT_IS_LONG
  299. /*
  300.  * Extract a double value from a general numeric object.
  301.  */
  302. #define GET_DOUBLE_VALUE(doubleVar, objPtr, typePtr)
  303.     if ((typePtr) == &tclIntType) {
  304. (doubleVar) = (double) (objPtr)->internalRep.longValue;
  305.     } else if ((typePtr) == &tclWideIntType) {
  306. (doubleVar) = Tcl_WideAsDouble((objPtr)->internalRep.wideValue);
  307.     } else {
  308. (doubleVar) = (objPtr)->internalRep.doubleValue;
  309.     }
  310. #else /* TCL_WIDE_INT_IS_LONG */
  311. #define GET_DOUBLE_VALUE(doubleVar, objPtr, typePtr)
  312.     if (((typePtr) == &tclIntType) || ((typePtr) == &tclWideIntType)) { 
  313. (doubleVar) = (double) (objPtr)->internalRep.longValue;
  314.     } else {
  315. (doubleVar) = (objPtr)->internalRep.doubleValue;
  316.     }
  317. #endif /* TCL_WIDE_INT_IS_LONG */
  318. /*
  319.  * Declarations for local procedures to this file:
  320.  */
  321. static int TclExecuteByteCode _ANSI_ARGS_((Tcl_Interp *interp,
  322.     ByteCode *codePtr));
  323. static int ExprAbsFunc _ANSI_ARGS_((Tcl_Interp *interp,
  324.     ExecEnv *eePtr, ClientData clientData));
  325. static int ExprBinaryFunc _ANSI_ARGS_((Tcl_Interp *interp,
  326.     ExecEnv *eePtr, ClientData clientData));
  327. static int ExprCallMathFunc _ANSI_ARGS_((Tcl_Interp *interp,
  328.     ExecEnv *eePtr, int objc, Tcl_Obj **objv));
  329. static int ExprDoubleFunc _ANSI_ARGS_((Tcl_Interp *interp,
  330.     ExecEnv *eePtr, ClientData clientData));
  331. static int ExprIntFunc _ANSI_ARGS_((Tcl_Interp *interp,
  332.     ExecEnv *eePtr, ClientData clientData));
  333. static int ExprRandFunc _ANSI_ARGS_((Tcl_Interp *interp,
  334.     ExecEnv *eePtr, ClientData clientData));
  335. static int ExprRoundFunc _ANSI_ARGS_((Tcl_Interp *interp,
  336.     ExecEnv *eePtr, ClientData clientData));
  337. static int ExprSrandFunc _ANSI_ARGS_((Tcl_Interp *interp,
  338.     ExecEnv *eePtr, ClientData clientData));
  339. static int ExprUnaryFunc _ANSI_ARGS_((Tcl_Interp *interp,
  340.     ExecEnv *eePtr, ClientData clientData));
  341. static int ExprWideFunc _ANSI_ARGS_((Tcl_Interp *interp,
  342.     ExecEnv *eePtr, ClientData clientData));
  343. #ifdef TCL_COMPILE_STATS
  344. static int              EvalStatsCmd _ANSI_ARGS_((ClientData clientData,
  345.                             Tcl_Interp *interp, int objc,
  346.     Tcl_Obj *CONST objv[]));
  347. #endif /* TCL_COMPILE_STATS */
  348. #ifdef TCL_COMPILE_DEBUG
  349. static char * GetOpcodeName _ANSI_ARGS_((unsigned char *pc));
  350. #endif /* TCL_COMPILE_DEBUG */
  351. static ExceptionRange * GetExceptRangeForPc _ANSI_ARGS_((unsigned char *pc,
  352.     int catchOnly, ByteCode* codePtr));
  353. static char * GetSrcInfoForPc _ANSI_ARGS_((unsigned char *pc,
  354.              ByteCode* codePtr, int *lengthPtr));
  355. static void GrowEvaluationStack _ANSI_ARGS_((ExecEnv *eePtr));
  356. static void IllegalExprOperandType _ANSI_ARGS_((
  357.     Tcl_Interp *interp, unsigned char *pc,
  358.     Tcl_Obj *opndPtr));
  359. static void InitByteCodeExecution _ANSI_ARGS_((
  360.     Tcl_Interp *interp));
  361. #ifdef TCL_COMPILE_DEBUG
  362. static void PrintByteCodeInfo _ANSI_ARGS_((ByteCode *codePtr));
  363. static char * StringForResultCode _ANSI_ARGS_((int result));
  364. static void ValidatePcAndStackTop _ANSI_ARGS_((
  365.     ByteCode *codePtr, unsigned char *pc,
  366.     int stackTop, int stackLowerBound));
  367. #endif /* TCL_COMPILE_DEBUG */
  368. static int VerifyExprObjType _ANSI_ARGS_((Tcl_Interp *interp,
  369.     Tcl_Obj *objPtr));
  370. /*
  371.  * Table describing the built-in math functions. Entries in this table are
  372.  * indexed by the values of the INST_CALL_BUILTIN_FUNC instruction's
  373.  * operand byte.
  374.  */
  375. BuiltinFunc tclBuiltinFuncTable[] = {
  376. #ifndef TCL_NO_MATH
  377.     {"acos", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) acos},
  378.     {"asin", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) asin},
  379.     {"atan", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) atan},
  380.     {"atan2", 2, {TCL_DOUBLE, TCL_DOUBLE}, ExprBinaryFunc, (ClientData) atan2},
  381.     {"ceil", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) ceil},
  382.     {"cos", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) cos},
  383.     {"cosh", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) cosh},
  384.     {"exp", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) exp},
  385.     {"floor", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) floor},
  386.     {"fmod", 2, {TCL_DOUBLE, TCL_DOUBLE}, ExprBinaryFunc, (ClientData) fmod},
  387.     {"hypot", 2, {TCL_DOUBLE, TCL_DOUBLE}, ExprBinaryFunc, (ClientData) hypot},
  388.     {"log", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) log},
  389.     {"log10", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) log10},
  390.     {"pow", 2, {TCL_DOUBLE, TCL_DOUBLE}, ExprBinaryFunc, (ClientData) pow},
  391.     {"sin", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) sin},
  392.     {"sinh", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) sinh},
  393.     {"sqrt", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) sqrt},
  394.     {"tan", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) tan},
  395.     {"tanh", 1, {TCL_DOUBLE}, ExprUnaryFunc, (ClientData) tanh},
  396. #endif
  397.     {"abs", 1, {TCL_EITHER}, ExprAbsFunc, 0},
  398.     {"double", 1, {TCL_EITHER}, ExprDoubleFunc, 0},
  399.     {"int", 1, {TCL_EITHER}, ExprIntFunc, 0},
  400.     {"rand", 0, {TCL_EITHER}, ExprRandFunc, 0}, /* NOTE: rand takes no args. */
  401.     {"round", 1, {TCL_EITHER}, ExprRoundFunc, 0},
  402.     {"srand", 1, {TCL_INT}, ExprSrandFunc, 0},
  403.     {"wide", 1, {TCL_EITHER}, ExprWideFunc, 0},
  404.     {0},
  405. };
  406. /*
  407.  *----------------------------------------------------------------------
  408.  *
  409.  * InitByteCodeExecution --
  410.  *
  411.  * This procedure is called once to initialize the Tcl bytecode
  412.  * interpreter.
  413.  *
  414.  * Results:
  415.  * None.
  416.  *
  417.  * Side effects:
  418.  * This procedure initializes the array of instruction names. If
  419.  * compiling with the TCL_COMPILE_STATS flag, it initializes the
  420.  * array that counts the executions of each instruction and it
  421.  * creates the "evalstats" command. It also establishes the link 
  422.  *      between the Tcl "tcl_traceExec" and C "tclTraceExec" variables.
  423.  *
  424.  *----------------------------------------------------------------------
  425.  */
  426. static void
  427. InitByteCodeExecution(interp)
  428.     Tcl_Interp *interp; /* Interpreter for which the Tcl variable
  429.  * "tcl_traceExec" is linked to control
  430.  * instruction tracing. */
  431. {
  432. #ifdef TCL_COMPILE_DEBUG
  433.     if (Tcl_LinkVar(interp, "tcl_traceExec", (char *) &tclTraceExec,
  434.     TCL_LINK_INT) != TCL_OK) {
  435. panic("InitByteCodeExecution: can't create link for tcl_traceExec variable");
  436.     }
  437. #endif
  438. #ifdef TCL_COMPILE_STATS    
  439.     Tcl_CreateObjCommand(interp, "evalstats", EvalStatsCmd,
  440.     (ClientData) NULL, (Tcl_CmdDeleteProc *) NULL);
  441. #endif /* TCL_COMPILE_STATS */
  442. }
  443. /*
  444.  *----------------------------------------------------------------------
  445.  *
  446.  * TclCreateExecEnv --
  447.  *
  448.  * This procedure creates a new execution environment for Tcl bytecode
  449.  * execution. An ExecEnv points to a Tcl evaluation stack. An ExecEnv
  450.  * is typically created once for each Tcl interpreter (Interp
  451.  * structure) and recursively passed to TclExecuteByteCode to execute
  452.  * ByteCode sequences for nested commands.
  453.  *
  454.  * Results:
  455.  * A newly allocated ExecEnv is returned. This points to an empty
  456.  * evaluation stack of the standard initial size.
  457.  *
  458.  * Side effects:
  459.  * The bytecode interpreter is also initialized here, as this
  460.  * procedure will be called before any call to TclExecuteByteCode.
  461.  *
  462.  *----------------------------------------------------------------------
  463.  */
  464. #define TCL_STACK_INITIAL_SIZE 2000
  465. ExecEnv *
  466. TclCreateExecEnv(interp)
  467.     Tcl_Interp *interp; /* Interpreter for which the execution
  468.  * environment is being created. */
  469. {
  470.     ExecEnv *eePtr = (ExecEnv *) ckalloc(sizeof(ExecEnv));
  471.     Tcl_Obj **stackPtr;
  472.     stackPtr = (Tcl_Obj **)
  473. ckalloc((size_t) (TCL_STACK_INITIAL_SIZE * sizeof(Tcl_Obj *)));
  474.     /*
  475.      * Use the bottom pointer to keep a reference count; the 
  476.      * execution environment holds a reference.
  477.      */
  478.     stackPtr++;
  479.     eePtr->stackPtr = stackPtr;
  480.     stackPtr[-1] = (Tcl_Obj *) ((char *) 1);
  481.     eePtr->stackTop = -1;
  482.     eePtr->stackEnd = (TCL_STACK_INITIAL_SIZE - 2);
  483.     eePtr->errorInfo = Tcl_NewStringObj("::errorInfo", -1);
  484.     Tcl_IncrRefCount(eePtr->errorInfo);
  485.     eePtr->errorCode = Tcl_NewStringObj("::errorCode", -1);
  486.     Tcl_IncrRefCount(eePtr->errorCode);
  487.     Tcl_MutexLock(&execMutex);
  488.     if (!execInitialized) {
  489. TclInitAuxDataTypeTable();
  490. InitByteCodeExecution(interp);
  491. execInitialized = 1;
  492.     }
  493.     Tcl_MutexUnlock(&execMutex);
  494.     return eePtr;
  495. }
  496. #undef TCL_STACK_INITIAL_SIZE
  497. /*
  498.  *----------------------------------------------------------------------
  499.  *
  500.  * TclDeleteExecEnv --
  501.  *
  502.  * Frees the storage for an ExecEnv.
  503.  *
  504.  * Results:
  505.  * None.
  506.  *
  507.  * Side effects:
  508.  * Storage for an ExecEnv and its contained storage (e.g. the
  509.  * evaluation stack) is freed.
  510.  *
  511.  *----------------------------------------------------------------------
  512.  */
  513. void
  514. TclDeleteExecEnv(eePtr)
  515.     ExecEnv *eePtr; /* Execution environment to free. */
  516. {
  517.     if (eePtr->stackPtr[-1] == (Tcl_Obj *) ((char *) 1)) {
  518. ckfree((char *) (eePtr->stackPtr-1));
  519.     } else {
  520. panic("ERROR: freeing an execEnv whose stack is still in use.n");
  521.     }
  522.     TclDecrRefCount(eePtr->errorInfo);
  523.     TclDecrRefCount(eePtr->errorCode);
  524.     ckfree((char *) eePtr);
  525. }
  526. /*
  527.  *----------------------------------------------------------------------
  528.  *
  529.  * TclFinalizeExecution --
  530.  *
  531.  * Finalizes the execution environment setup so that it can be
  532.  * later reinitialized.
  533.  *
  534.  * Results:
  535.  * None.
  536.  *
  537.  * Side effects:
  538.  * After this call, the next time TclCreateExecEnv will be called
  539.  * it will call InitByteCodeExecution.
  540.  *
  541.  *----------------------------------------------------------------------
  542.  */
  543. void
  544. TclFinalizeExecution()
  545. {
  546.     Tcl_MutexLock(&execMutex);
  547.     execInitialized = 0;
  548.     Tcl_MutexUnlock(&execMutex);
  549.     TclFinalizeAuxDataTypeTable();
  550. }
  551. /*
  552.  *----------------------------------------------------------------------
  553.  *
  554.  * GrowEvaluationStack --
  555.  *
  556.  * This procedure grows a Tcl evaluation stack stored in an ExecEnv.
  557.  *
  558.  * Results:
  559.  * None.
  560.  *
  561.  * Side effects:
  562.  * The size of the evaluation stack is doubled.
  563.  *
  564.  *----------------------------------------------------------------------
  565.  */
  566. static void
  567. GrowEvaluationStack(eePtr)
  568.     register ExecEnv *eePtr; /* Points to the ExecEnv with an evaluation
  569.       * stack to enlarge. */
  570. {
  571.     /*
  572.      * The current Tcl stack elements are stored from eePtr->stackPtr[0]
  573.      * to eePtr->stackPtr[eePtr->stackEnd] (inclusive).
  574.      */
  575.     int currElems = (eePtr->stackEnd + 1);
  576.     int newElems  = 2*currElems;
  577.     int currBytes = currElems * sizeof(Tcl_Obj *);
  578.     int newBytes  = 2*currBytes;
  579.     Tcl_Obj **newStackPtr = (Tcl_Obj **) ckalloc((unsigned) newBytes);
  580.     Tcl_Obj **oldStackPtr = eePtr->stackPtr;
  581.     /*
  582.      * We keep the stack reference count as a (char *), as that
  583.      * works nicely as a portable pointer-sized counter.
  584.      */
  585.     char *refCount = (char *) oldStackPtr[-1];
  586.     /*
  587.      * Copy the existing stack items to the new stack space, free the old
  588.      * storage if appropriate, and record the refCount of the new stack
  589.      * held by the environment.
  590.      */
  591.  
  592.     newStackPtr++;
  593.     memcpy((VOID *) newStackPtr, (VOID *) oldStackPtr,
  594.    (size_t) currBytes);
  595.     if (refCount == (char *) 1) {
  596. ckfree((VOID *) (oldStackPtr-1));
  597.     } else {
  598. /*
  599.  * Remove the reference corresponding to the
  600.  * environment pointer.
  601.  */
  602. oldStackPtr[-1] = (Tcl_Obj *) (refCount-1);
  603.     }
  604.     eePtr->stackPtr = newStackPtr;
  605.     eePtr->stackEnd = (newElems - 2); /* index of last usable item */
  606.     newStackPtr[-1] = (Tcl_Obj *) ((char *) 1);
  607. }
  608. /*
  609.  *--------------------------------------------------------------
  610.  *
  611.  * Tcl_ExprObj --
  612.  *
  613.  * Evaluate an expression in a Tcl_Obj.
  614.  *
  615.  * Results:
  616.  * A standard Tcl object result. If the result is other than TCL_OK,
  617.  * then the interpreter's result contains an error message. If the
  618.  * result is TCL_OK, then a pointer to the expression's result value
  619.  * object is stored in resultPtrPtr. In that case, the object's ref
  620.  * count is incremented to reflect the reference returned to the
  621.  * caller; the caller is then responsible for the resulting object
  622.  * and must, for example, decrement the ref count when it is finished
  623.  * with the object.
  624.  *
  625.  * Side effects:
  626.  * Any side effects caused by subcommands in the expression, if any.
  627.  * The interpreter result is not modified unless there is an error.
  628.  *
  629.  *--------------------------------------------------------------
  630.  */
  631. int
  632. Tcl_ExprObj(interp, objPtr, resultPtrPtr)
  633.     Tcl_Interp *interp; /* Context in which to evaluate the
  634.  * expression. */
  635.     register Tcl_Obj *objPtr; /* Points to Tcl object containing
  636.  * expression to evaluate. */
  637.     Tcl_Obj **resultPtrPtr; /* Where the Tcl_Obj* that is the expression
  638.  * result is stored if no errors occur. */
  639. {
  640.     Interp *iPtr = (Interp *) interp;
  641.     CompileEnv compEnv; /* Compilation environment structure
  642.  * allocated in frame. */
  643.     LiteralTable *localTablePtr = &(compEnv.localLitTable);
  644.     register ByteCode *codePtr = NULL;
  645.      /* Tcl Internal type of bytecode.
  646.  * Initialized to avoid compiler warning. */
  647.     AuxData *auxDataPtr;
  648.     LiteralEntry *entryPtr;
  649.     Tcl_Obj *saveObjPtr;
  650.     char *string;
  651.     int length, i, result;
  652.     /*
  653.      * First handle some common expressions specially.
  654.      */
  655.     string = Tcl_GetStringFromObj(objPtr, &length);
  656.     if (length == 1) {
  657. if (*string == '0') {
  658.     *resultPtrPtr = Tcl_NewLongObj(0);
  659.     Tcl_IncrRefCount(*resultPtrPtr);
  660.     return TCL_OK;
  661. } else if (*string == '1') {
  662.     *resultPtrPtr = Tcl_NewLongObj(1);
  663.     Tcl_IncrRefCount(*resultPtrPtr);
  664.     return TCL_OK;
  665. }
  666.     } else if ((length == 2) && (*string == '!')) {
  667. if (*(string+1) == '0') {
  668.     *resultPtrPtr = Tcl_NewLongObj(1);
  669.     Tcl_IncrRefCount(*resultPtrPtr);
  670.     return TCL_OK;
  671. } else if (*(string+1) == '1') {
  672.     *resultPtrPtr = Tcl_NewLongObj(0);
  673.     Tcl_IncrRefCount(*resultPtrPtr);
  674.     return TCL_OK;
  675. }
  676.     }
  677.     /*
  678.      * Get the ByteCode from the object. If it exists, make sure it hasn't
  679.      * been invalidated by, e.g., someone redefining a command with a
  680.      * compile procedure (this might make the compiled code wrong). If
  681.      * necessary, convert the object to be a ByteCode object and compile it.
  682.      * Also, if the code was compiled in/for a different interpreter, we
  683.      * recompile it.
  684.      *
  685.      * Precompiled expressions, however, are immutable and therefore
  686.      * they are not recompiled, even if the epoch has changed.
  687.      *
  688.      */
  689.     if (objPtr->typePtr == &tclByteCodeType) {
  690. codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
  691. if (((Interp *) *codePtr->interpHandle != iPtr)
  692.         || (codePtr->compileEpoch != iPtr->compileEpoch)) {
  693.             if (codePtr->flags & TCL_BYTECODE_PRECOMPILED) {
  694.                 if ((Interp *) *codePtr->interpHandle != iPtr) {
  695.                     panic("Tcl_ExprObj: compiled expression jumped interps");
  696.                 }
  697.         codePtr->compileEpoch = iPtr->compileEpoch;
  698.             } else {
  699.                 (*tclByteCodeType.freeIntRepProc)(objPtr);
  700.                 objPtr->typePtr = (Tcl_ObjType *) NULL;
  701.             }
  702. }
  703.     }
  704.     if (objPtr->typePtr != &tclByteCodeType) {
  705. #ifndef TCL_TIP280
  706. TclInitCompileEnv(interp, &compEnv, string, length);
  707. #else
  708. /* TIP #280 : No invoker (yet) - Expression compilation */
  709. TclInitCompileEnv(interp, &compEnv, string, length, NULL, 0);
  710. #endif
  711. result = TclCompileExpr(interp, string, length, &compEnv);
  712. /*
  713.  * Free the compilation environment's literal table bucket array if
  714.  * it was dynamically allocated. 
  715.  */
  716. if (localTablePtr->buckets != localTablePtr->staticBuckets) {
  717.     ckfree((char *) localTablePtr->buckets);
  718. }
  719.     
  720. if (result != TCL_OK) {
  721.     /*
  722.      * Compilation errors. Free storage allocated for compilation.
  723.      */
  724. #ifdef TCL_COMPILE_DEBUG
  725.     TclVerifyLocalLiteralTable(&compEnv);
  726. #endif /*TCL_COMPILE_DEBUG*/
  727.     entryPtr = compEnv.literalArrayPtr;
  728.     for (i = 0;  i < compEnv.literalArrayNext;  i++) {
  729. TclReleaseLiteral(interp, entryPtr->objPtr);
  730. entryPtr++;
  731.     }
  732. #ifdef TCL_COMPILE_DEBUG
  733.     TclVerifyGlobalLiteralTable(iPtr);
  734. #endif /*TCL_COMPILE_DEBUG*/
  735.     
  736.     auxDataPtr = compEnv.auxDataArrayPtr;
  737.     for (i = 0;  i < compEnv.auxDataArrayNext;  i++) {
  738. if (auxDataPtr->type->freeProc != NULL) {
  739.     auxDataPtr->type->freeProc(auxDataPtr->clientData);
  740. }
  741. auxDataPtr++;
  742.     }
  743.     TclFreeCompileEnv(&compEnv);
  744.     return result;
  745. }
  746. /*
  747.  * Successful compilation. If the expression yielded no
  748.  * instructions, push an zero object as the expression's result.
  749.  */
  750.     
  751. if (compEnv.codeNext == compEnv.codeStart) {
  752.     TclEmitPush(TclRegisterLiteral(&compEnv, "0", 1, /*onHeap*/ 0),
  753.             &compEnv);
  754. }
  755.     
  756. /*
  757.  * Add a "done" instruction as the last instruction and change the
  758.  * object into a ByteCode object. Ownership of the literal objects
  759.  * and aux data items is given to the ByteCode object.
  760.  */
  761. compEnv.numSrcBytes = iPtr->termOffset;
  762. TclEmitOpcode(INST_DONE, &compEnv);
  763. TclInitByteCodeObj(objPtr, &compEnv);
  764. TclFreeCompileEnv(&compEnv);
  765. codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
  766. #ifdef TCL_COMPILE_DEBUG
  767. if (tclTraceCompile == 2) {
  768.     TclPrintByteCodeObj(interp, objPtr);
  769. }
  770. #endif /* TCL_COMPILE_DEBUG */
  771.     }
  772.     /*
  773.      * Execute the expression after first saving the interpreter's result.
  774.      */
  775.     
  776.     saveObjPtr = Tcl_GetObjResult(interp);
  777.     Tcl_IncrRefCount(saveObjPtr);
  778.     Tcl_ResetResult(interp);
  779.     /*
  780.      * Increment the code's ref count while it is being executed. If
  781.      * afterwards no references to it remain, free the code.
  782.      */
  783.     
  784.     codePtr->refCount++;
  785.     result = TclExecuteByteCode(interp, codePtr);
  786.     codePtr->refCount--;
  787.     if (codePtr->refCount <= 0) {
  788. TclCleanupByteCode(codePtr);
  789. objPtr->typePtr = NULL;
  790. objPtr->internalRep.otherValuePtr = NULL;
  791.     }
  792.     
  793.     /*
  794.      * If the expression evaluated successfully, store a pointer to its
  795.      * value object in resultPtrPtr then restore the old interpreter result.
  796.      * We increment the object's ref count to reflect the reference that we
  797.      * are returning to the caller. We also decrement the ref count of the
  798.      * interpreter's result object after calling Tcl_SetResult since we
  799.      * next store into that field directly.
  800.      */
  801.     
  802.     if (result == TCL_OK) {
  803. *resultPtrPtr = iPtr->objResultPtr;
  804. Tcl_IncrRefCount(iPtr->objResultPtr);
  805. Tcl_SetObjResult(interp, saveObjPtr);
  806.     }
  807.     TclDecrRefCount(saveObjPtr);
  808.     return result;
  809. }
  810. /*
  811.  *----------------------------------------------------------------------
  812.  *
  813.  * TclCompEvalObj --
  814.  *
  815.  * This procedure evaluates the script contained in a Tcl_Obj by 
  816.  *      first compiling it and then passing it to TclExecuteByteCode.
  817.  *
  818.  * Results:
  819.  * The return value is one of the return codes defined in tcl.h
  820.  * (such as TCL_OK), and interp->objResultPtr refers to a Tcl object
  821.  * that either contains the result of executing the code or an
  822.  * error message.
  823.  *
  824.  * Side effects:
  825.  * Almost certainly, depending on the ByteCode's instructions.
  826.  *
  827.  *----------------------------------------------------------------------
  828.  */
  829. int
  830. #ifndef TCL_TIP280
  831. TclCompEvalObj(interp, objPtr)
  832. #else
  833. TclCompEvalObj(interp, objPtr, invoker, word)
  834. #endif
  835.     Tcl_Interp *interp;
  836.     Tcl_Obj *objPtr;
  837. #ifdef TCL_TIP280
  838.     CONST CmdFrame* invoker; /* Frame of the command doing the eval  */
  839.     int             word;    /* Index of the word which is in objPtr */
  840. #endif
  841. {
  842.     register Interp *iPtr = (Interp *) interp;
  843.     register ByteCode* codePtr; /* Tcl Internal type of bytecode. */
  844.     int oldCount = iPtr->cmdCount; /* Used to tell whether any commands
  845.  * at all were executed. */
  846.     char *script;
  847.     int numSrcBytes;
  848.     int result;
  849.     Namespace *namespacePtr;
  850.     /*
  851.      * Check that the interpreter is ready to execute scripts
  852.      */
  853.     iPtr->numLevels++;
  854.     if (TclInterpReady(interp) == TCL_ERROR) {
  855. iPtr->numLevels--;
  856. return TCL_ERROR;
  857.     }
  858.     if (iPtr->varFramePtr != NULL) {
  859.         namespacePtr = iPtr->varFramePtr->nsPtr;
  860.     } else {
  861.         namespacePtr = iPtr->globalNsPtr;
  862.     }
  863.     /* 
  864.      * If the object is not already of tclByteCodeType, compile it (and
  865.      * reset the compilation flags in the interpreter; this should be 
  866.      * done after any compilation).
  867.      * Otherwise, check that it is "fresh" enough.
  868.      */
  869.     if (objPtr->typePtr != &tclByteCodeType) {
  870.         recompileObj:
  871. iPtr->errorLine = 1; 
  872. #ifdef TCL_TIP280
  873. /* TIP #280. Remember the invoker for a moment in the interpreter
  874.  * structures so that the byte code compiler can pick it up when
  875.  * initializing the compilation environment, i.e. the extended
  876.  * location information.
  877.  */
  878. iPtr->invokeCmdFramePtr = invoker;
  879. iPtr->invokeWord        = word;
  880. #endif
  881. result = tclByteCodeType.setFromAnyProc(interp, objPtr);
  882. #ifdef TCL_TIP280
  883. iPtr->invokeCmdFramePtr = NULL;
  884. #endif
  885. if (result != TCL_OK) {
  886.     iPtr->numLevels--;
  887.     return result;
  888. }
  889. codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
  890.     } else {
  891. /*
  892.  * Make sure the Bytecode hasn't been invalidated by, e.g., someone 
  893.  * redefining a command with a compile procedure (this might make the 
  894.  * compiled code wrong). 
  895.  * The object needs to be recompiled if it was compiled in/for a 
  896.  * different interpreter, or for a different namespace, or for the 
  897.  * same namespace but with different name resolution rules. 
  898.  * Precompiled objects, however, are immutable and therefore
  899.  * they are not recompiled, even if the epoch has changed.
  900.  *
  901.  * To be pedantically correct, we should also check that the
  902.  * originating procPtr is the same as the current context procPtr
  903.  * (assuming one exists at all - none for global level).  This
  904.  * code is #def'ed out because [info body] was changed to never
  905.  * return a bytecode type object, which should obviate us from
  906.  * the extra checks here.
  907.  */
  908. codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
  909. if (((Interp *) *codePtr->interpHandle != iPtr)
  910.         || (codePtr->compileEpoch != iPtr->compileEpoch)
  911. #ifdef CHECK_PROC_ORIGINATION /* [Bug: 3412 Pedantic] */
  912. || (codePtr->procPtr != NULL && !(iPtr->varFramePtr &&
  913. iPtr->varFramePtr->procPtr == codePtr->procPtr))
  914. #endif
  915.         || (codePtr->nsPtr != namespacePtr)
  916.         || (codePtr->nsEpoch != namespacePtr->resolverEpoch)) {
  917.             if (codePtr->flags & TCL_BYTECODE_PRECOMPILED) {
  918.                 if ((Interp *) *codePtr->interpHandle != iPtr) {
  919.                     panic("Tcl_EvalObj: compiled script jumped interps");
  920.                 }
  921.         codePtr->compileEpoch = iPtr->compileEpoch;
  922.             } else {
  923. /*
  924.  * This byteCode is invalid: free it and recompile
  925.  */
  926.                 tclByteCodeType.freeIntRepProc(objPtr);
  927. goto recompileObj;
  928.     }
  929. }
  930.     }
  931.     /*
  932.      * Execute the commands. If the code was compiled from an empty string,
  933.      * don't bother executing the code.
  934.      */
  935.     numSrcBytes = codePtr->numSrcBytes;
  936.     if ((numSrcBytes > 0) || (codePtr->flags & TCL_BYTECODE_PRECOMPILED)) {
  937. /*
  938.  * Increment the code's ref count while it is being executed. If
  939.  * afterwards no references to it remain, free the code.
  940.  */
  941. codePtr->refCount++;
  942. result = TclExecuteByteCode(interp, codePtr);
  943. codePtr->refCount--;
  944. if (codePtr->refCount <= 0) {
  945.     TclCleanupByteCode(codePtr);
  946. }
  947.     } else {
  948. result = TCL_OK;
  949.     }
  950.     iPtr->numLevels--;
  951.     /*
  952.      * If no commands at all were executed, check for asynchronous
  953.      * handlers so that they at least get one change to execute.
  954.      * This is needed to handle event loops written in Tcl with
  955.      * empty bodies.
  956.      */
  957.     if ((oldCount == iPtr->cmdCount) && Tcl_AsyncReady()) {
  958. result = Tcl_AsyncInvoke(interp, result);
  959.     
  960. /*
  961.  * If an error occurred, record information about what was being
  962.  * executed when the error occurred.
  963.  */
  964. if ((result == TCL_ERROR) && !(iPtr->flags & ERR_ALREADY_LOGGED)) {
  965.     script = Tcl_GetStringFromObj(objPtr, &numSrcBytes);
  966.     Tcl_LogCommandInfo(interp, script, script, numSrcBytes);
  967. }
  968.     }
  969.     /*
  970.      * Set the interpreter's termOffset member to the offset of the
  971.      * character just after the last one executed. We approximate the offset
  972.      * of the last character executed by using the number of characters
  973.      * compiled. 
  974.      */
  975.     iPtr->termOffset = numSrcBytes;
  976.     iPtr->flags &= ~ERR_ALREADY_LOGGED;
  977.     return result;
  978. }
  979. /*
  980.  *----------------------------------------------------------------------
  981.  *
  982.  * TclExecuteByteCode --
  983.  *
  984.  * This procedure executes the instructions of a ByteCode structure.
  985.  * It returns when a "done" instruction is executed or an error occurs.
  986.  *
  987.  * Results:
  988.  * The return value is one of the return codes defined in tcl.h
  989.  * (such as TCL_OK), and interp->objResultPtr refers to a Tcl object
  990.  * that either contains the result of executing the code or an
  991.  * error message.
  992.  *
  993.  * Side effects:
  994.  * Almost certainly, depending on the ByteCode's instructions.
  995.  *
  996.  *----------------------------------------------------------------------
  997.  */
  998.  
  999. static int
  1000. TclExecuteByteCode(interp, codePtr)
  1001.     Tcl_Interp *interp; /* Token for command interpreter. */
  1002.     ByteCode *codePtr; /* The bytecode sequence to interpret. */
  1003. {
  1004.     Interp *iPtr = (Interp *) interp;
  1005.     ExecEnv *eePtr = iPtr->execEnvPtr;
  1006.      /* Points to the execution environment. */
  1007.     register Tcl_Obj **stackPtr = eePtr->stackPtr;
  1008.      /* Cached evaluation stack base pointer. */
  1009.     register int stackTop = eePtr->stackTop;
  1010.      /* Cached top index of evaluation stack. */
  1011.     register unsigned char *pc = codePtr->codeStart;
  1012. /* The current program counter. */
  1013.     int opnd; /* Current instruction's operand byte(s). */
  1014.     int pcAdjustment; /* Hold pc adjustment after instruction. */
  1015.     int initStackTop = stackTop;/* Stack top at start of execution. */
  1016.     ExceptionRange *rangePtr; /* Points to closest loop or catch exception
  1017.  * range enclosing the pc. Used by various
  1018.  * instructions and processCatch to
  1019.  * process break, continue, and errors. */
  1020.     int result = TCL_OK; /* Return code returned after execution. */
  1021.     int storeFlags;
  1022.     Tcl_Obj *valuePtr, *value2Ptr, *objPtr;
  1023.     char *bytes;
  1024.     int length;
  1025.     long i = 0; /* Init. avoids compiler warning. */
  1026.     Tcl_WideInt w;
  1027.     register int cleanup;
  1028.     Tcl_Obj *objResultPtr;
  1029.     char *part1, *part2;
  1030.     Var *varPtr, *arrayPtr;
  1031.     CallFrame *varFramePtr = iPtr->varFramePtr;
  1032. #ifdef TCL_TIP280
  1033.     /* TIP #280 : Structures for tracking lines */
  1034.     CmdFrame bcFrame;
  1035. #endif
  1036. #ifdef TCL_COMPILE_DEBUG
  1037.     int traceInstructions = (tclTraceExec == 3);
  1038.     char cmdNameBuf[21];
  1039. #endif
  1040.     char *curInstName = NULL;
  1041.     /*
  1042.      * This procedure uses a stack to hold information about catch commands.
  1043.      * This information is the current operand stack top when starting to
  1044.      * execute the code for each catch command. It starts out with stack-
  1045.      * allocated space but uses dynamically-allocated storage if needed.
  1046.      */
  1047. #define STATIC_CATCH_STACK_SIZE 4
  1048.     int (catchStackStorage[STATIC_CATCH_STACK_SIZE]);
  1049.     int *catchStackPtr = catchStackStorage;
  1050.     int catchTop = -1;
  1051. #ifdef TCL_TIP280
  1052.     /* TIP #280 : Initialize the frame. Do not push it yet. */
  1053.     bcFrame.type      = ((codePtr->flags & TCL_BYTECODE_PRECOMPILED)
  1054.  ? TCL_LOCATION_PREBC
  1055.  : TCL_LOCATION_BC);
  1056.     bcFrame.level     = (iPtr->cmdFramePtr == NULL ?
  1057.  1 :
  1058.  iPtr->cmdFramePtr->level + 1);
  1059.     bcFrame.framePtr  = iPtr->framePtr;
  1060.     bcFrame.nextPtr   = iPtr->cmdFramePtr;
  1061.     bcFrame.nline     = 0;
  1062.     bcFrame.line      = NULL;
  1063.     bcFrame.data.tebc.codePtr  = codePtr;
  1064.     bcFrame.data.tebc.pc       = NULL;
  1065.     bcFrame.cmd.str.cmd        = NULL;
  1066.     bcFrame.cmd.str.len        = 0;
  1067. #endif
  1068. #ifdef TCL_COMPILE_DEBUG
  1069.     if (tclTraceExec >= 2) {
  1070. PrintByteCodeInfo(codePtr);
  1071. fprintf(stdout, "  Starting stack top=%dn", eePtr->stackTop);
  1072. fflush(stdout);
  1073.     }
  1074.     opnd = 0; /* Init. avoids compiler warning. */       
  1075. #endif
  1076.     
  1077. #ifdef TCL_COMPILE_STATS
  1078.     iPtr->stats.numExecutions++;
  1079. #endif
  1080.     /*
  1081.      * Make sure the catch stack is large enough to hold the maximum number
  1082.      * of catch commands that could ever be executing at the same time. This
  1083.      * will be no more than the exception range array's depth.
  1084.      */
  1085.     if (codePtr->maxExceptDepth > STATIC_CATCH_STACK_SIZE) {
  1086. catchStackPtr = (int *)
  1087.         ckalloc(codePtr->maxExceptDepth * sizeof(int));
  1088.     }
  1089.     /*
  1090.      * Make sure the stack has enough room to execute this ByteCode.
  1091.      */
  1092.     while ((stackTop + codePtr->maxStackDepth) > eePtr->stackEnd) {
  1093.         GrowEvaluationStack(eePtr); 
  1094.         stackPtr = eePtr->stackPtr;
  1095.     }
  1096.     /*
  1097.      * Loop executing instructions until a "done" instruction, a 
  1098.      * TCL_RETURN, or some error.
  1099.      */
  1100.     goto cleanup0;
  1101.     
  1102.     /*
  1103.      * Targets for standard instruction endings; unrolled
  1104.      * for speed in the most frequent cases (instructions that 
  1105.      * consume up to two stack elements).
  1106.      *
  1107.      * This used to be a "for(;;)" loop, with each instruction doing
  1108.      * its own cleanup.
  1109.      */
  1110.     
  1111.     cleanupV_pushObjResultPtr:
  1112.     switch (cleanup) {
  1113.         case 0:
  1114.     stackPtr[++stackTop] = (objResultPtr);
  1115.     goto cleanup0;
  1116.         default:
  1117.     cleanup -= 2;
  1118.     while (cleanup--) {
  1119. valuePtr = POP_OBJECT();
  1120. TclDecrRefCount(valuePtr);
  1121.     }
  1122.         case 2: 
  1123.         cleanup2_pushObjResultPtr:
  1124.     valuePtr = POP_OBJECT();
  1125.     TclDecrRefCount(valuePtr);
  1126.         case 1: 
  1127.         cleanup1_pushObjResultPtr:
  1128.     valuePtr = stackPtr[stackTop];
  1129.     TclDecrRefCount(valuePtr);
  1130.     }
  1131.     stackPtr[stackTop] = objResultPtr;
  1132.     goto cleanup0;
  1133.     
  1134.     cleanupV:
  1135.     switch (cleanup) {
  1136.         default:
  1137.     cleanup -= 2;
  1138.     while (cleanup--) {
  1139. valuePtr = POP_OBJECT();
  1140. TclDecrRefCount(valuePtr);
  1141.     }
  1142.         case 2: 
  1143.         cleanup2:
  1144.     valuePtr = POP_OBJECT();
  1145.     TclDecrRefCount(valuePtr);
  1146.         case 1: 
  1147.         cleanup1:
  1148.     valuePtr = POP_OBJECT();
  1149.     TclDecrRefCount(valuePtr);
  1150.         case 0:
  1151.     /*
  1152.      * We really want to do nothing now, but this is needed
  1153.      * for some compilers (SunPro CC)
  1154.      */
  1155.     break;
  1156.     }
  1157.     cleanup0:
  1158.     
  1159. #ifdef TCL_COMPILE_DEBUG
  1160.     ValidatePcAndStackTop(codePtr, pc, stackTop, initStackTop);
  1161.     if (traceInstructions) {
  1162. fprintf(stdout, "%2d: %2d ", iPtr->numLevels, stackTop);
  1163. TclPrintInstruction(codePtr, pc);
  1164. fflush(stdout);
  1165.     }
  1166. #endif /* TCL_COMPILE_DEBUG */
  1167.     
  1168. #ifdef TCL_COMPILE_STATS    
  1169.     iPtr->stats.instructionCount[*pc]++;
  1170. #endif
  1171.      TCL_DTRACE_INST_NEXT();
  1172.     switch (*pc) {
  1173.     case INST_DONE:
  1174. if (stackTop <= initStackTop) {
  1175.     stackTop--;
  1176.     goto abnormalReturn;
  1177. }
  1178. /*
  1179.  * Set the interpreter's object result to point to the 
  1180.  * topmost object from the stack, and check for a possible
  1181.  * [catch]. The stackTop's level and refCount will be handled 
  1182.  * by "processCatch" or "abnormalReturn".
  1183.  */
  1184. valuePtr = stackPtr[stackTop];
  1185. Tcl_SetObjResult(interp, valuePtr);
  1186. #ifdef TCL_COMPILE_DEBUG     
  1187. TRACE_WITH_OBJ(("=> return code=%d, result=", result),
  1188.         iPtr->objResultPtr);
  1189. if (traceInstructions) {
  1190.     fprintf(stdout, "n");
  1191. }
  1192. #endif
  1193. goto checkForCatch;
  1194.     case INST_PUSH1:
  1195. objResultPtr = codePtr->objArrayPtr[TclGetUInt1AtPtr(pc+1)];
  1196. TRACE_WITH_OBJ(("%u => ", TclGetInt1AtPtr(pc+1)), objResultPtr);
  1197. NEXT_INST_F(2, 0, 1);
  1198.     case INST_PUSH4:
  1199. objResultPtr = codePtr->objArrayPtr[TclGetUInt4AtPtr(pc+1)];
  1200. TRACE_WITH_OBJ(("%u => ", TclGetUInt4AtPtr(pc+1)), objResultPtr);
  1201. NEXT_INST_F(5, 0, 1);
  1202.     case INST_POP:
  1203. TRACE_WITH_OBJ(("=> discarding "), stackPtr[stackTop]);
  1204. valuePtr = POP_OBJECT();
  1205. TclDecrRefCount(valuePtr);
  1206. NEXT_INST_F(1, 0, 0);
  1207.     case INST_DUP:
  1208. objResultPtr = stackPtr[stackTop];
  1209. TRACE_WITH_OBJ(("=> "), objResultPtr);
  1210. NEXT_INST_F(1, 0, 1);
  1211.     case INST_OVER:
  1212. opnd = TclGetUInt4AtPtr( pc+1 );
  1213. objResultPtr = stackPtr[ stackTop - opnd ];
  1214. TRACE_WITH_OBJ(("=> "), objResultPtr);
  1215. NEXT_INST_F(5, 0, 1);
  1216.     case INST_CONCAT1:
  1217. opnd = TclGetUInt1AtPtr(pc+1);
  1218. {
  1219.     int totalLen = 0;
  1220.     
  1221.     /*
  1222.      * Peephole optimisation for appending an empty string.
  1223.      * This enables replacing 'K $x [set x{}]' by '$x[set x{}]'
  1224.      * for fastest execution. Avoid doing the optimisation for wide
  1225.      * ints - a case where equal strings may refer to different values
  1226.      * (see [Bug 1251791]).
  1227.      */
  1228.     if ((opnd == 2) && (stackPtr[stackTop-1]->typePtr != &tclWideIntType)) {
  1229. Tcl_GetStringFromObj(stackPtr[stackTop], &length);
  1230. if (length == 0) {
  1231.     /* Just drop the top item from the stack */
  1232.     NEXT_INST_F(2, 1, 0);
  1233. }
  1234.     }
  1235.     /*
  1236.      * Concatenate strings (with no separators) from the top
  1237.      * opnd items on the stack starting with the deepest item.
  1238.      * First, determine how many characters are needed.
  1239.      */
  1240.     for (i = (stackTop - (opnd-1));  i <= stackTop;  i++) {
  1241. bytes = Tcl_GetStringFromObj(stackPtr[i], &length);
  1242. if (bytes != NULL) {
  1243.     totalLen += length;
  1244. }
  1245.     }
  1246.     /*
  1247.      * Initialize the new append string object by appending the
  1248.      * strings of the opnd stack objects. Also pop the objects. 
  1249.      */
  1250.     TclNewObj(objResultPtr);
  1251.     if (totalLen > 0) {
  1252. char *p = (char *) ckalloc((unsigned) (totalLen + 1));
  1253. objResultPtr->bytes = p;
  1254. objResultPtr->length = totalLen;
  1255. for (i = (stackTop - (opnd-1));  i <= stackTop;  i++) {
  1256.     valuePtr = stackPtr[i];
  1257.     bytes = Tcl_GetStringFromObj(valuePtr, &length);
  1258.     if (bytes != NULL) {
  1259. memcpy((VOID *) p, (VOID *) bytes,
  1260.        (size_t) length);
  1261. p += length;
  1262.     }
  1263. }
  1264. *p = '';
  1265.     }
  1266.     TRACE_WITH_OBJ(("%u => ", opnd), objResultPtr);
  1267.     NEXT_INST_V(2, opnd, 1);
  1268. }
  1269.     
  1270.     case INST_INVOKE_STK4:
  1271. opnd = TclGetUInt4AtPtr(pc+1);
  1272. pcAdjustment = 5;
  1273. goto doInvocation;
  1274.     case INST_INVOKE_STK1:
  1275. opnd = TclGetUInt1AtPtr(pc+1);
  1276. pcAdjustment = 2;
  1277.     
  1278.     doInvocation:
  1279. {
  1280.     int objc = opnd; /* The number of arguments. */
  1281.     Tcl_Obj **objv;  /* The array of argument objects. */
  1282.     /*
  1283.      * We keep the stack reference count as a (char *), as that
  1284.      * works nicely as a portable pointer-sized counter.
  1285.      */
  1286.     char **preservedStackRefCountPtr;
  1287.     
  1288.     /* 
  1289.      * Reference to memory block containing
  1290.      * objv array (must be kept live throughout
  1291.      * trace and command invokations.) 
  1292.      */
  1293.     objv = &(stackPtr[stackTop - (objc-1)]);
  1294. #ifdef TCL_COMPILE_DEBUG
  1295.     if (tclTraceExec >= 2) {
  1296. if (traceInstructions) {
  1297.     strncpy(cmdNameBuf, TclGetString(objv[0]), 20);
  1298.     TRACE(("%u => call ", objc));
  1299. } else {
  1300.     fprintf(stdout, "%d: (%u) invoking ",
  1301.     iPtr->numLevels,
  1302.     (unsigned int)(pc - codePtr->codeStart));
  1303. }
  1304. for (i = 0;  i < objc;  i++) {
  1305.     TclPrintObject(stdout, objv[i], 15);
  1306.     fprintf(stdout, " ");
  1307. }
  1308. fprintf(stdout, "n");
  1309. fflush(stdout);
  1310.     }
  1311. #endif /*TCL_COMPILE_DEBUG*/
  1312.     /* 
  1313.      * If trace procedures will be called, we need a
  1314.      * command string to pass to TclEvalObjvInternal; note 
  1315.      * that a copy of the string will be made there to 
  1316.      * include the ending .
  1317.      */
  1318.     bytes = NULL;
  1319.     length = 0;
  1320.     if (iPtr->tracePtr != NULL) {
  1321. Trace *tracePtr, *nextTracePtr;
  1322.     
  1323. for (tracePtr = iPtr->tracePtr;  tracePtr != NULL;
  1324.      tracePtr = nextTracePtr) {
  1325.     nextTracePtr = tracePtr->nextPtr;
  1326.     if (tracePtr->level == 0 ||
  1327. iPtr->numLevels <= tracePtr->level) {
  1328. /*
  1329.  * Traces will be called: get command string
  1330.  */
  1331. bytes = GetSrcInfoForPc(pc, codePtr, &length);
  1332. break;
  1333.     }
  1334. }
  1335.     } else {
  1336. Command *cmdPtr;
  1337. cmdPtr = (Command *) Tcl_GetCommandFromObj(interp, objv[0]);
  1338. if ((cmdPtr != NULL) && (cmdPtr->flags & CMD_HAS_EXEC_TRACES)) {
  1339.     bytes = GetSrcInfoForPc(pc, codePtr, &length);
  1340. }
  1341.     }
  1342.     /*
  1343.      * A reference to part of the stack vector itself
  1344.      * escapes our control: increase its refCount
  1345.      * to stop it from being deallocated by a recursive
  1346.      * call to ourselves.  The extra variable is needed
  1347.      * because all others are liable to change due to the
  1348.      * trace procedures.
  1349.      */
  1350.     preservedStackRefCountPtr = (char **) (stackPtr-1);
  1351.     ++*preservedStackRefCountPtr;
  1352.     /*
  1353.      * Finally, let TclEvalObjvInternal handle the command.
  1354.      *
  1355.      * TIP #280 : Record the last piece of info needed by
  1356.      * 'TclGetSrcInfoForPc', and push the frame.
  1357.      */
  1358. #ifdef TCL_TIP280
  1359.     bcFrame.data.tebc.pc = pc;
  1360.     iPtr->cmdFramePtr = &bcFrame;
  1361. #endif
  1362.     DECACHE_STACK_INFO();
  1363.     Tcl_ResetResult(interp);
  1364.     result = TclEvalObjvInternal(interp, objc, objv, bytes, length, 0);
  1365.     CACHE_STACK_INFO();
  1366. #ifdef TCL_TIP280
  1367.     iPtr->cmdFramePtr = iPtr->cmdFramePtr->nextPtr;
  1368. #endif
  1369.     /*
  1370.      * If the old stack is going to be released, it is
  1371.      * safe to do so now, since no references to objv are
  1372.      * going to be used from now on.
  1373.      */
  1374.     --*preservedStackRefCountPtr;
  1375.     if (*preservedStackRefCountPtr == (char *) 0) {
  1376. ckfree((VOID *) preservedStackRefCountPtr);
  1377.     }     
  1378.     if (result == TCL_OK) {
  1379. /*
  1380.  * Push the call's object result and continue execution
  1381.  * with the next instruction.
  1382.  */
  1383. TRACE_WITH_OBJ(("%u => ... after "%.20s": TCL_OK, result=",
  1384.         objc, cmdNameBuf), Tcl_GetObjResult(interp));
  1385. objResultPtr = Tcl_GetObjResult(interp);
  1386. /*
  1387.  * Reset the interp's result to avoid possible duplications
  1388.  * of large objects [Bug 781585]. We do not call
  1389.  * Tcl_ResetResult() to avoid any side effects caused by
  1390.  * the resetting of errorInfo and errorCode [Bug 804681], 
  1391.  * which are not needed here. We chose instead to manipulate
  1392.  * the interp's object result directly.
  1393.  *
  1394.  * Note that the result object is now in objResultPtr, it
  1395.  * keeps the refCount it had in its role of iPtr->objResultPtr.
  1396.  */
  1397. {
  1398.     Tcl_Obj *newObjResultPtr;
  1399.     TclNewObj(newObjResultPtr);
  1400.     Tcl_IncrRefCount(newObjResultPtr);
  1401.     iPtr->objResultPtr = newObjResultPtr;
  1402. }
  1403. NEXT_INST_V(pcAdjustment, opnd, -1);
  1404.     } else {
  1405. cleanup = opnd;
  1406. goto processExceptionReturn;
  1407.     }
  1408. }
  1409.     case INST_EVAL_STK:
  1410. /*
  1411.  * Note to maintainers: it is important that INST_EVAL_STK
  1412.  * pop its argument from the stack before jumping to
  1413.  * checkForCatch! DO NOT OPTIMISE!
  1414.  */
  1415. objPtr = stackPtr[stackTop];
  1416. DECACHE_STACK_INFO();
  1417. #ifndef TCL_TIP280
  1418. result = TclCompEvalObj(interp, objPtr);
  1419. #else
  1420. /* TIP #280: The invoking context is left NULL for a dynamically
  1421.  * constructed command. We cannot match its lines to the outer
  1422.  * context.
  1423.  */
  1424. result = TclCompEvalObj(interp, objPtr, NULL,0);
  1425. #endif
  1426. CACHE_STACK_INFO();
  1427. if (result == TCL_OK) {
  1428.     /*
  1429.      * Normal return; push the eval's object result.
  1430.      */
  1431.     objResultPtr = Tcl_GetObjResult(interp);
  1432.     TRACE_WITH_OBJ((""%.30s" => ", O2S(objPtr)),
  1433.    Tcl_GetObjResult(interp));
  1434.     /*
  1435.      * Reset the interp's result to avoid possible duplications
  1436.      * of large objects [Bug 781585]. We do not call
  1437.      * Tcl_ResetResult() to avoid any side effects caused by
  1438.      * the resetting of errorInfo and errorCode [Bug 804681], 
  1439.      * which are not needed here. We chose instead to manipulate
  1440.      * the interp's object result directly.
  1441.      *
  1442.      * Note that the result object is now in objResultPtr, it
  1443.      * keeps the refCount it had in its role of iPtr->objResultPtr.
  1444.      */
  1445.     {
  1446.         Tcl_Obj *newObjResultPtr;
  1447. TclNewObj(newObjResultPtr);
  1448. Tcl_IncrRefCount(newObjResultPtr);
  1449. iPtr->objResultPtr = newObjResultPtr;
  1450.     }
  1451.     NEXT_INST_F(1, 1, -1);
  1452. } else {
  1453.     cleanup = 1;
  1454.     goto processExceptionReturn;
  1455. }
  1456.     case INST_EXPR_STK:
  1457. objPtr = stackPtr[stackTop];
  1458. DECACHE_STACK_INFO();
  1459. Tcl_ResetResult(interp);
  1460. result = Tcl_ExprObj(interp, objPtr, &valuePtr);
  1461. CACHE_STACK_INFO();
  1462. if (result != TCL_OK) {
  1463.     TRACE_WITH_OBJ((""%.30s" => ERROR: ", 
  1464.         O2S(objPtr)), Tcl_GetObjResult(interp));
  1465.     goto checkForCatch;
  1466. }
  1467. objResultPtr = valuePtr;
  1468. TRACE_WITH_OBJ((""%.30s" => ", O2S(objPtr)), valuePtr);
  1469. NEXT_INST_F(1, 1, -1); /* already has right refct */
  1470.     /*
  1471.      * ---------------------------------------------------------
  1472.      *     Start of INST_LOAD instructions.
  1473.      *
  1474.      * WARNING: more 'goto' here than your doctor recommended!
  1475.      * The different instructions set the value of some variables
  1476.      * and then jump to somme common execution code.
  1477.      */
  1478.     case INST_LOAD_SCALAR1:
  1479. opnd = TclGetUInt1AtPtr(pc+1);
  1480. varPtr = &(varFramePtr->compiledLocals[opnd]);
  1481. part1 = varPtr->name;
  1482. while (TclIsVarLink(varPtr)) {
  1483.     varPtr = varPtr->value.linkPtr;
  1484. }
  1485. TRACE(("%u => ", opnd));
  1486. if (TclIsVarScalar(varPtr) && !TclIsVarUndefined(varPtr) 
  1487.         && (varPtr->tracePtr == NULL)) {
  1488.     /*
  1489.      * No errors, no traces: just get the value.
  1490.      */
  1491.     objResultPtr = varPtr->value.objPtr;
  1492.     TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1493.     NEXT_INST_F(2, 0, 1);
  1494. }
  1495. pcAdjustment = 2;
  1496. cleanup = 0;
  1497. arrayPtr = NULL;
  1498. part2 = NULL;
  1499. goto doCallPtrGetVar;
  1500.     case INST_LOAD_SCALAR4:
  1501. opnd = TclGetUInt4AtPtr(pc+1);
  1502. varPtr = &(varFramePtr->compiledLocals[opnd]);
  1503. part1 = varPtr->name;
  1504. while (TclIsVarLink(varPtr)) {
  1505.     varPtr = varPtr->value.linkPtr;
  1506. }
  1507. TRACE(("%u => ", opnd));
  1508. if (TclIsVarScalar(varPtr) && !TclIsVarUndefined(varPtr) 
  1509.         && (varPtr->tracePtr == NULL)) {
  1510.     /*
  1511.      * No errors, no traces: just get the value.
  1512.      */
  1513.     objResultPtr = varPtr->value.objPtr;
  1514.     TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1515.     NEXT_INST_F(5, 0, 1);
  1516. }
  1517. pcAdjustment = 5;
  1518. cleanup = 0;
  1519. arrayPtr = NULL;
  1520. part2 = NULL;
  1521. goto doCallPtrGetVar;
  1522.     case INST_LOAD_ARRAY_STK:
  1523. cleanup = 2;
  1524. part2 = Tcl_GetString(stackPtr[stackTop]);  /* element name */
  1525. objPtr = stackPtr[stackTop-1]; /* array name */
  1526. TRACE((""%.30s(%.30s)" => ", O2S(objPtr), part2));
  1527. goto doLoadStk;
  1528.     case INST_LOAD_STK:
  1529.     case INST_LOAD_SCALAR_STK:
  1530. cleanup = 1;
  1531. part2 = NULL;
  1532. objPtr = stackPtr[stackTop]; /* variable name */
  1533. TRACE((""%.30s" => ", O2S(objPtr)));
  1534.     doLoadStk:
  1535. part1 = TclGetString(objPtr);
  1536. varPtr = TclObjLookupVar(interp, objPtr, part2, 
  1537.          TCL_LEAVE_ERR_MSG, "read",
  1538.                  /*createPart1*/ 0,
  1539.          /*createPart2*/ 1, &arrayPtr);
  1540. if (varPtr == NULL) {
  1541.     TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1542.     result = TCL_ERROR;
  1543.     goto checkForCatch;
  1544. }
  1545. if (TclIsVarScalar(varPtr) && !TclIsVarUndefined(varPtr) 
  1546.         && (varPtr->tracePtr == NULL)
  1547.         && ((arrayPtr == NULL) 
  1548.         || (arrayPtr->tracePtr == NULL))) {
  1549.     /*
  1550.      * No errors, no traces: just get the value.
  1551.      */
  1552.     objResultPtr = varPtr->value.objPtr;
  1553.     TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1554.     NEXT_INST_V(1, cleanup, 1);
  1555. }
  1556. pcAdjustment = 1;
  1557. goto doCallPtrGetVar;
  1558.     case INST_LOAD_ARRAY4:
  1559. opnd = TclGetUInt4AtPtr(pc+1);
  1560. pcAdjustment = 5;
  1561. goto doLoadArray;
  1562.     case INST_LOAD_ARRAY1:
  1563. opnd = TclGetUInt1AtPtr(pc+1);
  1564. pcAdjustment = 2;
  1565.     
  1566.     doLoadArray:
  1567. part2 = TclGetString(stackPtr[stackTop]);
  1568. arrayPtr = &(varFramePtr->compiledLocals[opnd]);
  1569. part1 = arrayPtr->name;
  1570. while (TclIsVarLink(arrayPtr)) {
  1571.     arrayPtr = arrayPtr->value.linkPtr;
  1572. }
  1573. TRACE(("%u "%.30s" => ", opnd, part2));
  1574. varPtr = TclLookupArrayElement(interp, part1, part2, 
  1575.         TCL_LEAVE_ERR_MSG, "read", 0, 1, arrayPtr);
  1576. if (varPtr == NULL) {
  1577.     TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1578.     result = TCL_ERROR;
  1579.     goto checkForCatch;
  1580. }
  1581. if (TclIsVarScalar(varPtr) && !TclIsVarUndefined(varPtr) 
  1582.         && (varPtr->tracePtr == NULL)
  1583.         && ((arrayPtr == NULL) 
  1584.         || (arrayPtr->tracePtr == NULL))) {
  1585.     /*
  1586.      * No errors, no traces: just get the value.
  1587.      */
  1588.     objResultPtr = varPtr->value.objPtr;
  1589.     TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1590.     NEXT_INST_F(pcAdjustment, 1, 1);
  1591. }
  1592. cleanup = 1;
  1593. goto doCallPtrGetVar;
  1594.     doCallPtrGetVar:
  1595. /*
  1596.  * There are either errors or the variable is traced:
  1597.  * call TclPtrGetVar to process fully.
  1598.  */
  1599. DECACHE_STACK_INFO();
  1600. objResultPtr = TclPtrGetVar(interp, varPtr, arrayPtr, part1, 
  1601.         part2, TCL_LEAVE_ERR_MSG);
  1602. CACHE_STACK_INFO();
  1603. if (objResultPtr == NULL) {
  1604.     TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1605.     result = TCL_ERROR;
  1606.     goto checkForCatch;
  1607. }
  1608. TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1609. NEXT_INST_V(pcAdjustment, cleanup, 1);
  1610.     /*
  1611.      *     End of INST_LOAD instructions.
  1612.      * ---------------------------------------------------------
  1613.      */
  1614.     /*
  1615.      * ---------------------------------------------------------
  1616.      *     Start of INST_STORE and related instructions.
  1617.      *
  1618.      * WARNING: more 'goto' here than your doctor recommended!
  1619.      * The different instructions set the value of some variables
  1620.      * and then jump to somme common execution code.
  1621.      */
  1622.     case INST_LAPPEND_STK:
  1623. valuePtr = stackPtr[stackTop]; /* value to append */
  1624. part2 = NULL;
  1625. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE 
  1626.       | TCL_LIST_ELEMENT | TCL_TRACE_READS);
  1627. goto doStoreStk;
  1628.     case INST_LAPPEND_ARRAY_STK:
  1629. valuePtr = stackPtr[stackTop]; /* value to append */
  1630. part2 = TclGetString(stackPtr[stackTop - 1]);
  1631. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE 
  1632.       | TCL_LIST_ELEMENT | TCL_TRACE_READS);
  1633. goto doStoreStk;
  1634.     case INST_APPEND_STK:
  1635. valuePtr = stackPtr[stackTop]; /* value to append */
  1636. part2 = NULL;
  1637. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE);
  1638. goto doStoreStk;
  1639.     case INST_APPEND_ARRAY_STK:
  1640. valuePtr = stackPtr[stackTop]; /* value to append */
  1641. part2 = TclGetString(stackPtr[stackTop - 1]);
  1642. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE);
  1643. goto doStoreStk;
  1644.     case INST_STORE_ARRAY_STK:
  1645. valuePtr = stackPtr[stackTop];
  1646. part2 = TclGetString(stackPtr[stackTop - 1]);
  1647. storeFlags = TCL_LEAVE_ERR_MSG;
  1648. goto doStoreStk;
  1649.     case INST_STORE_STK:
  1650.     case INST_STORE_SCALAR_STK:
  1651. valuePtr = stackPtr[stackTop];
  1652. part2 = NULL;
  1653. storeFlags = TCL_LEAVE_ERR_MSG;
  1654.     doStoreStk:
  1655. objPtr = stackPtr[stackTop - 1 - (part2 != NULL)]; /* variable name */
  1656. part1 = TclGetString(objPtr);
  1657. #ifdef TCL_COMPILE_DEBUG
  1658. if (part2 == NULL) {
  1659.     TRACE((""%.30s" <- "%.30s" =>", 
  1660.             part1, O2S(valuePtr)));
  1661. } else {
  1662.     TRACE((""%.30s(%.30s)" <- "%.30s" => ",
  1663.     part1, part2, O2S(valuePtr)));
  1664. }
  1665. #endif
  1666. varPtr = TclObjLookupVar(interp, objPtr, part2, 
  1667.          TCL_LEAVE_ERR_MSG, "set",
  1668.                  /*createPart1*/ 1,
  1669.          /*createPart2*/ 1, &arrayPtr);
  1670. if (varPtr == NULL) {
  1671.     TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1672.     result = TCL_ERROR;
  1673.     goto checkForCatch;
  1674. }
  1675. cleanup = ((part2 == NULL)? 2 : 3);
  1676. pcAdjustment = 1;
  1677. goto doCallPtrSetVar;
  1678.     case INST_LAPPEND_ARRAY4:
  1679. opnd = TclGetUInt4AtPtr(pc+1);
  1680. pcAdjustment = 5;
  1681. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE 
  1682.       | TCL_LIST_ELEMENT | TCL_TRACE_READS);
  1683. goto doStoreArray;
  1684.     case INST_LAPPEND_ARRAY1:
  1685. opnd = TclGetUInt1AtPtr(pc+1);
  1686. pcAdjustment = 2;
  1687. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE 
  1688.       | TCL_LIST_ELEMENT | TCL_TRACE_READS);
  1689. goto doStoreArray;
  1690.     case INST_APPEND_ARRAY4:
  1691. opnd = TclGetUInt4AtPtr(pc+1);
  1692. pcAdjustment = 5;
  1693. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE);
  1694. goto doStoreArray;
  1695.     case INST_APPEND_ARRAY1:
  1696. opnd = TclGetUInt1AtPtr(pc+1);
  1697. pcAdjustment = 2;
  1698. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE);
  1699. goto doStoreArray;
  1700.     case INST_STORE_ARRAY4:
  1701. opnd = TclGetUInt4AtPtr(pc+1);
  1702. pcAdjustment = 5;
  1703. storeFlags = TCL_LEAVE_ERR_MSG;
  1704. goto doStoreArray;
  1705.     case INST_STORE_ARRAY1:
  1706. opnd = TclGetUInt1AtPtr(pc+1);
  1707. pcAdjustment = 2;
  1708. storeFlags = TCL_LEAVE_ERR_MSG;
  1709.     
  1710.     doStoreArray:
  1711. valuePtr = stackPtr[stackTop];
  1712. part2 = TclGetString(stackPtr[stackTop - 1]);
  1713. arrayPtr = &(varFramePtr->compiledLocals[opnd]);
  1714. part1 = arrayPtr->name;
  1715. TRACE(("%u "%.30s" <- "%.30s" => ",
  1716.     opnd, part2, O2S(valuePtr)));
  1717. while (TclIsVarLink(arrayPtr)) {
  1718.     arrayPtr = arrayPtr->value.linkPtr;
  1719. }
  1720. varPtr = TclLookupArrayElement(interp, part1, part2, 
  1721.         TCL_LEAVE_ERR_MSG, "set", 1, 1, arrayPtr);
  1722. if (varPtr == NULL) {
  1723.     TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1724.     result = TCL_ERROR;
  1725.     goto checkForCatch;
  1726. }
  1727. cleanup = 2;
  1728. goto doCallPtrSetVar;
  1729.     case INST_LAPPEND_SCALAR4:
  1730. opnd = TclGetUInt4AtPtr(pc+1);
  1731. pcAdjustment = 5;
  1732. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE 
  1733.       | TCL_LIST_ELEMENT | TCL_TRACE_READS);
  1734. goto doStoreScalar;
  1735.     case INST_LAPPEND_SCALAR1:
  1736. opnd = TclGetUInt1AtPtr(pc+1);
  1737. pcAdjustment = 2;     
  1738. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE 
  1739.       | TCL_LIST_ELEMENT | TCL_TRACE_READS);
  1740. goto doStoreScalar;
  1741.     case INST_APPEND_SCALAR4:
  1742. opnd = TclGetUInt4AtPtr(pc+1);
  1743. pcAdjustment = 5;
  1744. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE);
  1745. goto doStoreScalar;
  1746.     case INST_APPEND_SCALAR1:
  1747. opnd = TclGetUInt1AtPtr(pc+1);
  1748. pcAdjustment = 2;     
  1749. storeFlags = (TCL_LEAVE_ERR_MSG | TCL_APPEND_VALUE);
  1750. goto doStoreScalar;
  1751.     case INST_STORE_SCALAR4:
  1752. opnd = TclGetUInt4AtPtr(pc+1);
  1753. pcAdjustment = 5;
  1754. storeFlags = TCL_LEAVE_ERR_MSG;
  1755. goto doStoreScalar;
  1756.     case INST_STORE_SCALAR1:
  1757. opnd = TclGetUInt1AtPtr(pc+1);
  1758. pcAdjustment = 2;
  1759. storeFlags = TCL_LEAVE_ERR_MSG;
  1760.     doStoreScalar:
  1761. valuePtr = stackPtr[stackTop];
  1762. varPtr = &(varFramePtr->compiledLocals[opnd]);
  1763. part1 = varPtr->name;
  1764. TRACE(("%u <- "%.30s" => ", opnd, O2S(valuePtr)));
  1765. while (TclIsVarLink(varPtr)) {
  1766.     varPtr = varPtr->value.linkPtr;
  1767. }
  1768. cleanup = 1;
  1769. arrayPtr = NULL;
  1770. part2 = NULL;
  1771.     doCallPtrSetVar:
  1772. if ((storeFlags == TCL_LEAVE_ERR_MSG)
  1773.         && !((varPtr->flags & VAR_IN_HASHTABLE) 
  1774.         && (varPtr->hPtr == NULL))
  1775.         && (varPtr->tracePtr == NULL)
  1776.         && (TclIsVarScalar(varPtr) 
  1777.         || TclIsVarUndefined(varPtr))
  1778.         && ((arrayPtr == NULL) 
  1779.         || (arrayPtr->tracePtr == NULL))) {
  1780.     /*
  1781.      * No traces, no errors, plain 'set': we can safely inline.
  1782.      * The value *will* be set to what's requested, so that 
  1783.      * the stack top remains pointing to the same Tcl_Obj.
  1784.      */
  1785.     valuePtr = varPtr->value.objPtr;
  1786.     objResultPtr = stackPtr[stackTop];
  1787.     if (valuePtr != objResultPtr) {
  1788. if (valuePtr != NULL) {
  1789.     TclDecrRefCount(valuePtr);
  1790. } else {
  1791.     TclSetVarScalar(varPtr);
  1792.     TclClearVarUndefined(varPtr);
  1793. }
  1794. varPtr->value.objPtr = objResultPtr;
  1795. Tcl_IncrRefCount(objResultPtr);
  1796.     }
  1797. #ifndef TCL_COMPILE_DEBUG
  1798.     if (*(pc+pcAdjustment) == INST_POP) {
  1799. NEXT_INST_V((pcAdjustment+1), cleanup, 0);
  1800.     }
  1801. #else
  1802. TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1803. #endif
  1804.     NEXT_INST_V(pcAdjustment, cleanup, 1);
  1805. } else {
  1806.     DECACHE_STACK_INFO();
  1807.     objResultPtr = TclPtrSetVar(interp, varPtr, arrayPtr, 
  1808.             part1, part2, valuePtr, storeFlags);
  1809.     CACHE_STACK_INFO();
  1810.     if (objResultPtr == NULL) {
  1811. TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1812. result = TCL_ERROR;
  1813. goto checkForCatch;
  1814.     }
  1815. }
  1816. #ifndef TCL_COMPILE_DEBUG
  1817. if (*(pc+pcAdjustment) == INST_POP) {
  1818.     NEXT_INST_V((pcAdjustment+1), cleanup, 0);
  1819. }
  1820. #endif
  1821. TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1822. NEXT_INST_V(pcAdjustment, cleanup, 1);
  1823.     /*
  1824.      *     End of INST_STORE and related instructions.
  1825.      * ---------------------------------------------------------
  1826.      */
  1827.     /*
  1828.      * ---------------------------------------------------------
  1829.      *     Start of INST_INCR instructions.
  1830.      *
  1831.      * WARNING: more 'goto' here than your doctor recommended!
  1832.      * The different instructions set the value of some variables
  1833.      * and then jump to somme common execution code.
  1834.      */
  1835.     case INST_INCR_SCALAR1:
  1836.     case INST_INCR_ARRAY1:
  1837.     case INST_INCR_ARRAY_STK:
  1838.     case INST_INCR_SCALAR_STK:
  1839.     case INST_INCR_STK:
  1840. opnd = TclGetUInt1AtPtr(pc+1);
  1841. valuePtr = stackPtr[stackTop];
  1842. if (valuePtr->typePtr == &tclIntType) {
  1843.     i = valuePtr->internalRep.longValue;
  1844. } else if (valuePtr->typePtr == &tclWideIntType) {
  1845.     TclGetLongFromWide(i,valuePtr);
  1846. } else {
  1847.     REQUIRE_WIDE_OR_INT(result, valuePtr, i, w);
  1848.     if (result != TCL_OK) {
  1849. TRACE_WITH_OBJ(("%u (by %s) => ERROR converting increment amount to int: ",
  1850.         opnd, O2S(valuePtr)), Tcl_GetObjResult(interp));
  1851. DECACHE_STACK_INFO();
  1852. Tcl_AddErrorInfo(interp, "n    (reading increment)");
  1853. CACHE_STACK_INFO();
  1854. goto checkForCatch;
  1855.     }
  1856.     FORCE_LONG(valuePtr, i, w);
  1857. }
  1858. stackTop--;
  1859. TclDecrRefCount(valuePtr);
  1860. switch (*pc) {
  1861.     case INST_INCR_SCALAR1:
  1862. pcAdjustment = 2;
  1863. goto doIncrScalar;
  1864.     case INST_INCR_ARRAY1:
  1865. pcAdjustment = 2;
  1866. goto doIncrArray;
  1867.     default:
  1868. pcAdjustment = 1;
  1869. goto doIncrStk;
  1870. }
  1871.     case INST_INCR_ARRAY_STK_IMM:
  1872.     case INST_INCR_SCALAR_STK_IMM:
  1873.     case INST_INCR_STK_IMM:
  1874. i = TclGetInt1AtPtr(pc+1);
  1875. pcAdjustment = 2;
  1876.     
  1877.     doIncrStk:
  1878. if ((*pc == INST_INCR_ARRAY_STK_IMM) 
  1879.         || (*pc == INST_INCR_ARRAY_STK)) {
  1880.     part2 = TclGetString(stackPtr[stackTop]);
  1881.     objPtr = stackPtr[stackTop - 1];
  1882.     TRACE((""%.30s(%.30s)" (by %ld) => ",
  1883.     O2S(objPtr), part2, i));
  1884. } else {
  1885.     part2 = NULL;
  1886.     objPtr = stackPtr[stackTop];
  1887.     TRACE((""%.30s" (by %ld) => ", O2S(objPtr), i));
  1888. }
  1889. part1 = TclGetString(objPtr);
  1890. varPtr = TclObjLookupVar(interp, objPtr, part2, 
  1891.         TCL_LEAVE_ERR_MSG, "read", 0, 1, &arrayPtr);
  1892. if (varPtr == NULL) {
  1893.     DECACHE_STACK_INFO();
  1894.     Tcl_AddObjErrorInfo(interp,
  1895.             "n    (reading value of variable to increment)", -1);
  1896.     CACHE_STACK_INFO();
  1897.     TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1898.     result = TCL_ERROR;
  1899.     goto checkForCatch;
  1900. }
  1901. cleanup = ((part2 == NULL)? 1 : 2);
  1902. goto doIncrVar;
  1903.     case INST_INCR_ARRAY1_IMM:
  1904. opnd = TclGetUInt1AtPtr(pc+1);
  1905. i = TclGetInt1AtPtr(pc+2);
  1906. pcAdjustment = 3;
  1907.     doIncrArray:
  1908. part2 = TclGetString(stackPtr[stackTop]);
  1909. arrayPtr = &(varFramePtr->compiledLocals[opnd]);
  1910. part1 = arrayPtr->name;
  1911. while (TclIsVarLink(arrayPtr)) {
  1912.     arrayPtr = arrayPtr->value.linkPtr;
  1913. }
  1914. TRACE(("%u "%.30s" (by %ld) => ",
  1915.     opnd, part2, i));
  1916. varPtr = TclLookupArrayElement(interp, part1, part2, 
  1917.         TCL_LEAVE_ERR_MSG, "read", 0, 1, arrayPtr);
  1918. if (varPtr == NULL) {
  1919.     TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1920.     result = TCL_ERROR;
  1921.     goto checkForCatch;
  1922. }
  1923. cleanup = 1;
  1924. goto doIncrVar;
  1925.     case INST_INCR_SCALAR1_IMM:
  1926. opnd = TclGetUInt1AtPtr(pc+1);
  1927. i = TclGetInt1AtPtr(pc+2);
  1928. pcAdjustment = 3;
  1929.     doIncrScalar:
  1930. varPtr = &(varFramePtr->compiledLocals[opnd]);
  1931. part1 = varPtr->name;
  1932. while (TclIsVarLink(varPtr)) {
  1933.     varPtr = varPtr->value.linkPtr;
  1934. }
  1935. arrayPtr = NULL;
  1936. part2 = NULL;
  1937. cleanup = 0;
  1938. TRACE(("%u %ld => ", opnd, i));
  1939.     doIncrVar:
  1940. objPtr = varPtr->value.objPtr;
  1941. if (TclIsVarScalar(varPtr)
  1942.         && !TclIsVarUndefined(varPtr) 
  1943.         && (varPtr->tracePtr == NULL)
  1944.         && ((arrayPtr == NULL) 
  1945.         || (arrayPtr->tracePtr == NULL))
  1946.         && (objPtr->typePtr == &tclIntType)) {
  1947.     /*
  1948.      * No errors, no traces, the variable already has an
  1949.      * integer value: inline processing.
  1950.      */
  1951.     i += objPtr->internalRep.longValue;
  1952.     if (Tcl_IsShared(objPtr)) {
  1953. objResultPtr = Tcl_NewLongObj(i);
  1954. TclDecrRefCount(objPtr);
  1955. Tcl_IncrRefCount(objResultPtr);
  1956. varPtr->value.objPtr = objResultPtr;
  1957.     } else {
  1958. Tcl_SetLongObj(objPtr, i);
  1959. objResultPtr = objPtr;
  1960.     }
  1961.     TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1962. } else {
  1963.     DECACHE_STACK_INFO();
  1964.     objResultPtr = TclPtrIncrVar(interp, varPtr, arrayPtr, part1, 
  1965.                     part2, i, TCL_LEAVE_ERR_MSG);
  1966.     CACHE_STACK_INFO();
  1967.     if (objResultPtr == NULL) {
  1968. TRACE_APPEND(("ERROR: %.30sn", O2S(Tcl_GetObjResult(interp))));
  1969. result = TCL_ERROR;
  1970. goto checkForCatch;
  1971.     }
  1972. }
  1973. TRACE_APPEND(("%.30sn", O2S(objResultPtr)));
  1974. #ifndef TCL_COMPILE_DEBUG
  1975. if (*(pc+pcAdjustment) == INST_POP) {
  1976.     NEXT_INST_V((pcAdjustment+1), cleanup, 0);
  1977. }
  1978. #endif
  1979. NEXT_INST_V(pcAdjustment, cleanup, 1);
  1980.          
  1981.     /*
  1982.      *     End of INST_INCR instructions.
  1983.      * ---------------------------------------------------------
  1984.      */
  1985.     case INST_JUMP1:
  1986. opnd = TclGetInt1AtPtr(pc+1);
  1987. TRACE(("%d => new pc %un", opnd,
  1988.         (unsigned int)(pc + opnd - codePtr->codeStart)));
  1989. NEXT_INST_F(opnd, 0, 0);
  1990.     case INST_JUMP4:
  1991. opnd = TclGetInt4AtPtr(pc+1);
  1992. TRACE(("%d => new pc %un", opnd,
  1993.         (unsigned int)(pc + opnd - codePtr->codeStart)));
  1994. NEXT_INST_F(opnd, 0, 0);
  1995.     case INST_JUMP_FALSE4:
  1996. opnd = 5;                             /* TRUE */
  1997. pcAdjustment = TclGetInt4AtPtr(pc+1); /* FALSE */
  1998. goto doJumpTrue;
  1999.     case INST_JUMP_TRUE4:
  2000. opnd = TclGetInt4AtPtr(pc+1);         /* TRUE */
  2001. pcAdjustment = 5;                     /* FALSE */
  2002. goto doJumpTrue;
  2003.     case INST_JUMP_FALSE1:
  2004. opnd = 2;                             /* TRUE */
  2005. pcAdjustment = TclGetInt1AtPtr(pc+1); /* FALSE */
  2006. goto doJumpTrue;
  2007.     case INST_JUMP_TRUE1:
  2008. opnd = TclGetInt1AtPtr(pc+1);          /* TRUE */
  2009. pcAdjustment = 2;                      /* FALSE */
  2010.     
  2011.     doJumpTrue:
  2012. {
  2013.     int b;
  2014.     valuePtr = stackPtr[stackTop];
  2015.     if (valuePtr->typePtr == &tclIntType) {
  2016. b = (valuePtr->internalRep.longValue != 0);
  2017.     } else if (valuePtr->typePtr == &tclDoubleType) {
  2018. b = (valuePtr->internalRep.doubleValue != 0.0);
  2019.     } else if (valuePtr->typePtr == &tclWideIntType) {
  2020. TclGetWide(w,valuePtr);
  2021. b = (w != W0);
  2022.     } else {
  2023. result = Tcl_GetBooleanFromObj(interp, valuePtr, &b);
  2024. if (result != TCL_OK) {
  2025.     TRACE_WITH_OBJ(("%d => ERROR: ", opnd), Tcl_GetObjResult(interp));
  2026.     goto checkForCatch;
  2027. }
  2028.     }
  2029. #ifndef TCL_COMPILE_DEBUG
  2030.     NEXT_INST_F((b? opnd : pcAdjustment), 1, 0);
  2031. #else
  2032.     if (b) {
  2033. if ((*pc == INST_JUMP_TRUE1) || (*pc == INST_JUMP_TRUE1)) {
  2034.     TRACE(("%d => %.20s true, new pc %un", opnd, O2S(valuePtr),
  2035.             (unsigned int)(pc+opnd - codePtr->codeStart)));
  2036. } else {
  2037.     TRACE(("%d => %.20s truen", pcAdjustment, O2S(valuePtr)));
  2038. }
  2039. NEXT_INST_F(opnd, 1, 0);
  2040.     } else {
  2041. if ((*pc == INST_JUMP_TRUE1) || (*pc == INST_JUMP_TRUE1)) {
  2042.     TRACE(("%d => %.20s falsen", opnd, O2S(valuePtr)));
  2043. } else {
  2044.     opnd = pcAdjustment;
  2045.     TRACE(("%d => %.20s false, new pc %un", opnd, O2S(valuePtr),
  2046.             (unsigned int)(pc + opnd - codePtr->codeStart)));
  2047. }
  2048. NEXT_INST_F(pcAdjustment, 1, 0);
  2049.     }
  2050. #endif
  2051. }
  2052.          
  2053.     case INST_LOR:
  2054.     case INST_LAND:
  2055.     {
  2056. /*
  2057.  * Operands must be boolean or numeric. No int->double
  2058.  * conversions are performed.
  2059.  */
  2060. int i1, i2;
  2061. int iResult;
  2062. char *s;
  2063. Tcl_ObjType *t1Ptr, *t2Ptr;
  2064. value2Ptr = stackPtr[stackTop];
  2065. valuePtr  = stackPtr[stackTop - 1];;
  2066. t1Ptr = valuePtr->typePtr;
  2067. t2Ptr = value2Ptr->typePtr;
  2068. if ((t1Ptr == &tclIntType) || (t1Ptr == &tclBooleanType)) {
  2069.     i1 = (valuePtr->internalRep.longValue != 0);
  2070. } else if (t1Ptr == &tclWideIntType) {
  2071.     TclGetWide(w,valuePtr);
  2072.     i1 = (w != W0);
  2073. } else if (t1Ptr == &tclDoubleType) {
  2074.     i1 = (valuePtr->internalRep.doubleValue != 0.0);
  2075. } else {
  2076.     s = Tcl_GetStringFromObj(valuePtr, &length);
  2077.     if (TclLooksLikeInt(s, length)) {
  2078. GET_WIDE_OR_INT(result, valuePtr, i, w);
  2079. if (valuePtr->typePtr == &tclIntType) {
  2080.     i1 = (i != 0);
  2081. } else {
  2082.     i1 = (w != W0);
  2083. }
  2084.     } else {
  2085. result = Tcl_GetBooleanFromObj((Tcl_Interp *) NULL,
  2086.        valuePtr, &i1);
  2087. i1 = (i1 != 0);
  2088.     }
  2089.     if (result != TCL_OK) {
  2090. TRACE((""%.20s" => ILLEGAL TYPE %s n", O2S(valuePtr),
  2091.         (t1Ptr? t1Ptr->name : "null")));
  2092. DECACHE_STACK_INFO();
  2093. IllegalExprOperandType(interp, pc, valuePtr);
  2094. CACHE_STACK_INFO();
  2095. goto checkForCatch;
  2096.     }
  2097. }
  2098. if ((t2Ptr == &tclIntType) || (t2Ptr == &tclBooleanType)) {
  2099.     i2 = (value2Ptr->internalRep.longValue != 0);
  2100. } else if (t2Ptr == &tclWideIntType) {
  2101.     TclGetWide(w,value2Ptr);
  2102.     i2 = (w != W0);
  2103. } else if (t2Ptr == &tclDoubleType) {
  2104.     i2 = (value2Ptr->internalRep.doubleValue != 0.0);
  2105. } else {
  2106.     s = Tcl_GetStringFromObj(value2Ptr, &length);
  2107.     if (TclLooksLikeInt(s, length)) {
  2108. GET_WIDE_OR_INT(result, value2Ptr, i, w);
  2109. if (value2Ptr->typePtr == &tclIntType) {
  2110.     i2 = (i != 0);
  2111. } else {
  2112.     i2 = (w != W0);
  2113. }
  2114.     } else {
  2115. result = Tcl_GetBooleanFromObj((Tcl_Interp *) NULL, value2Ptr, &i2);
  2116.     }
  2117.     if (result != TCL_OK) {
  2118. TRACE((""%.20s" => ILLEGAL TYPE %s n", O2S(value2Ptr),
  2119.         (t2Ptr? t2Ptr->name : "null")));
  2120. DECACHE_STACK_INFO();
  2121. IllegalExprOperandType(interp, pc, value2Ptr);
  2122. CACHE_STACK_INFO();
  2123. goto checkForCatch;
  2124.     }
  2125. }
  2126. /*
  2127.  * Reuse the valuePtr object already on stack if possible.
  2128.  */
  2129. if (*pc == INST_LOR) {
  2130.     iResult = (i1 || i2);
  2131. } else {
  2132.     iResult = (i1 && i2);
  2133. }
  2134. if (Tcl_IsShared(valuePtr)) {
  2135.     objResultPtr = Tcl_NewLongObj(iResult);
  2136.     TRACE(("%.20s %.20s => %dn", O2S(valuePtr), O2S(value2Ptr), iResult));
  2137.     NEXT_INST_F(1, 2, 1);
  2138. } else { /* reuse the valuePtr object */
  2139.     TRACE(("%.20s %.20s => %dn", O2S(valuePtr), O2S(value2Ptr), iResult));
  2140.     Tcl_SetLongObj(valuePtr, iResult);
  2141.     NEXT_INST_F(1, 1, 0);
  2142. }
  2143.     }
  2144.     /*
  2145.      * ---------------------------------------------------------
  2146.      *     Start of INST_LIST and related instructions.
  2147.      */
  2148.     case INST_LIST:
  2149. /*
  2150.  * Pop the opnd (objc) top stack elements into a new list obj
  2151.  * and then decrement their ref counts. 
  2152.  */
  2153. opnd = TclGetUInt4AtPtr(pc+1);
  2154. objResultPtr = Tcl_NewListObj(opnd, &(stackPtr[stackTop - (opnd-1)]));
  2155. TRACE_WITH_OBJ(("%u => ", opnd), objResultPtr);
  2156. NEXT_INST_V(5, opnd, 1);
  2157.     case INST_LIST_LENGTH:
  2158. valuePtr = stackPtr[stackTop];
  2159. result = Tcl_ListObjLength(interp, valuePtr, &length);
  2160. if (result != TCL_OK) {
  2161.     TRACE_WITH_OBJ(("%.30s => ERROR: ", O2S(valuePtr)),
  2162.             Tcl_GetObjResult(interp));
  2163.     goto checkForCatch;
  2164. }
  2165. objResultPtr = Tcl_NewIntObj(length);
  2166. TRACE(("%.20s => %dn", O2S(valuePtr), length));
  2167. NEXT_INST_F(1, 1, 1);
  2168.     
  2169.     case INST_LIST_INDEX:
  2170. /*** lindex with objc == 3 ***/
  2171. /*
  2172.  * Pop the two operands
  2173.  */
  2174. value2Ptr = stackPtr[stackTop];
  2175. valuePtr  = stackPtr[stackTop- 1];
  2176. /*
  2177.  * Extract the desired list element
  2178.  */
  2179. objResultPtr = TclLindexList(interp, valuePtr, value2Ptr);
  2180. if (objResultPtr == NULL) {
  2181.     TRACE_WITH_OBJ(("%.30s %.30s => ERROR: ", O2S(valuePtr), O2S(value2Ptr)),
  2182.             Tcl_GetObjResult(interp));
  2183.     result = TCL_ERROR;
  2184.     goto checkForCatch;
  2185. }
  2186. /*
  2187.  * Stash the list element on the stack
  2188.  */
  2189. TRACE(("%.20s %.20s => %sn",
  2190.         O2S(valuePtr), O2S(value2Ptr), O2S(objResultPtr)));
  2191. NEXT_INST_F(1, 2, -1); /* already has the correct refCount */
  2192.     case INST_LIST_INDEX_MULTI:
  2193.     {
  2194. /*
  2195.  * 'lindex' with multiple index args:
  2196.  *
  2197.  * Determine the count of index args.
  2198.  */
  2199. int numIdx;
  2200. opnd = TclGetUInt4AtPtr(pc+1);
  2201. numIdx = opnd-1;
  2202. /*
  2203.  * Do the 'lindex' operation.
  2204.  */
  2205. objResultPtr = TclLindexFlat(interp, stackPtr[stackTop - numIdx],
  2206.         numIdx, stackPtr + stackTop - numIdx + 1);
  2207. /*
  2208.  * Check for errors
  2209.  */
  2210. if (objResultPtr == NULL) {
  2211.     TRACE_WITH_OBJ(("%d => ERROR: ", opnd), Tcl_GetObjResult(interp));
  2212.     result = TCL_ERROR;
  2213.     goto checkForCatch;
  2214. }
  2215. /*
  2216.  * Set result
  2217.  */
  2218. TRACE(("%d => %sn", opnd, O2S(objResultPtr)));
  2219. NEXT_INST_V(5, opnd, -1);
  2220.     }
  2221.     case INST_LSET_FLAT:
  2222.     {
  2223. /*
  2224.  * Lset with 3, 5, or more args.  Get the number
  2225.  * of index args.
  2226.  */
  2227. int numIdx;
  2228. opnd = TclGetUInt4AtPtr( pc + 1 );
  2229. numIdx = opnd - 2;
  2230. /*
  2231.  * Get the old value of variable, and remove the stack ref.
  2232.  * This is safe because the variable still references the
  2233.  * object; the ref count will never go zero here.
  2234.  */
  2235. value2Ptr = POP_OBJECT();
  2236. TclDecrRefCount(value2Ptr); /* This one should be done here */
  2237. /*
  2238.  * Get the new element value.
  2239.  */
  2240. valuePtr = stackPtr[stackTop];
  2241. /*
  2242.  * Compute the new variable value
  2243.  */
  2244. objResultPtr = TclLsetFlat(interp, value2Ptr, numIdx,
  2245.         stackPtr + stackTop - numIdx, valuePtr);
  2246. /*
  2247.  * Check for errors
  2248.  */
  2249. if (objResultPtr == NULL) {
  2250.     TRACE_WITH_OBJ(("%d => ERROR: ", opnd), Tcl_GetObjResult(interp));
  2251.     result = TCL_ERROR;
  2252.     goto checkForCatch;
  2253. }
  2254. /*
  2255.  * Set result
  2256.  */
  2257. TRACE(("%d => %sn", opnd, O2S(objResultPtr)));
  2258. NEXT_INST_V(5, (numIdx+1), -1);
  2259.     }
  2260.     case INST_LSET_LIST:
  2261. /*
  2262.  * 'lset' with 4 args.
  2263.  *
  2264.  * Get the old value of variable, and remove the stack ref.
  2265.  * This is safe because the variable still references the
  2266.  * object; the ref count will never go zero here.
  2267.  */
  2268. objPtr = POP_OBJECT(); 
  2269. TclDecrRefCount(objPtr); /* This one should be done here */
  2270. /*
  2271.  * Get the new element value, and the index list
  2272.  */
  2273. valuePtr = stackPtr[stackTop];
  2274. value2Ptr = stackPtr[stackTop - 1];
  2275. /*
  2276.  * Compute the new variable value
  2277.  */
  2278. objResultPtr = TclLsetList(interp, objPtr, value2Ptr, valuePtr);
  2279. /*
  2280.  * Check for errors
  2281.  */
  2282. if (objResultPtr == NULL) {
  2283.     TRACE_WITH_OBJ((""%.30s" => ERROR: ", O2S(value2Ptr)),
  2284.             Tcl_GetObjResult(interp));
  2285.     result = TCL_ERROR;
  2286.     goto checkForCatch;
  2287. }
  2288. /*
  2289.  * Set result
  2290.  */
  2291. TRACE(("=> %sn", O2S(objResultPtr)));
  2292. NEXT_INST_F(1, 2, -1);
  2293.     /*
  2294.      *     End of INST_LIST and related instructions.
  2295.      * ---------------------------------------------------------
  2296.      */
  2297.     case INST_STR_EQ:
  2298.     case INST_STR_NEQ:
  2299.     {
  2300. /*
  2301.  * String (in)equality check
  2302.  */
  2303. int iResult;
  2304. value2Ptr = stackPtr[stackTop];
  2305. valuePtr = stackPtr[stackTop - 1];
  2306. if (valuePtr == value2Ptr) {
  2307.     /*
  2308.      * On the off-chance that the objects are the same,
  2309.      * we don't really have to think hard about equality.
  2310.      */
  2311.     iResult = (*pc == INST_STR_EQ);
  2312. } else {
  2313.     char *s1, *s2;
  2314.     int s1len, s2len;
  2315.     s1 = Tcl_GetStringFromObj(valuePtr, &s1len);
  2316.     s2 = Tcl_GetStringFromObj(value2Ptr, &s2len);
  2317.     if (s1len == s2len) {
  2318. /*
  2319.  * We only need to check (in)equality when
  2320.  * we have equal length strings.
  2321.  */
  2322. if (*pc == INST_STR_NEQ) {
  2323.     iResult = (strcmp(s1, s2) != 0);
  2324. } else {
  2325.     /* INST_STR_EQ */
  2326.     iResult = (strcmp(s1, s2) == 0);
  2327. }
  2328.     } else {
  2329. iResult = (*pc == INST_STR_NEQ);
  2330.     }
  2331. }
  2332. TRACE(("%.20s %.20s => %dn", O2S(valuePtr), O2S(value2Ptr), iResult));
  2333. /*
  2334.  * Peep-hole optimisation: if you're about to jump, do jump
  2335.  * from here.
  2336.  */
  2337. pc++;
  2338. #ifndef TCL_COMPILE_DEBUG
  2339. switch (*pc) {
  2340.     case INST_JUMP_FALSE1:
  2341. NEXT_INST_F((iResult? 2 : TclGetInt1AtPtr(pc+1)), 2, 0);
  2342.     case INST_JUMP_TRUE1:
  2343. NEXT_INST_F((iResult? TclGetInt1AtPtr(pc+1) : 2), 2, 0);
  2344.     case INST_JUMP_FALSE4:
  2345. NEXT_INST_F((iResult? 5 : TclGetInt4AtPtr(pc+1)), 2, 0);
  2346.     case INST_JUMP_TRUE4:
  2347. NEXT_INST_F((iResult? TclGetInt4AtPtr(pc+1) : 5), 2, 0);
  2348. }
  2349. #endif
  2350. objResultPtr = Tcl_NewIntObj(iResult);
  2351. NEXT_INST_F(0, 2, 1);
  2352.     }
  2353.     case INST_STR_CMP:
  2354.     {
  2355. /*
  2356.  * String compare
  2357.  */
  2358. CONST char *s1, *s2;
  2359. int s1len, s2len, iResult;
  2360. value2Ptr = stackPtr[stackTop];
  2361. valuePtr = stackPtr[stackTop - 1];
  2362. /*
  2363.  * The comparison function should compare up to the
  2364.  * minimum byte length only.
  2365.  */
  2366. if (valuePtr == value2Ptr) {
  2367.     /*
  2368.      * In the pure equality case, set lengths too for
  2369.      * the checks below (or we could goto beyond it).
  2370.      */
  2371.     iResult = s1len = s2len = 0;
  2372. } else if ((valuePtr->typePtr == &tclByteArrayType)
  2373.         && (value2Ptr->typePtr == &tclByteArrayType)) {
  2374.     s1 = (char *) Tcl_GetByteArrayFromObj(valuePtr, &s1len);
  2375.     s2 = (char *) Tcl_GetByteArrayFromObj(value2Ptr, &s2len);
  2376.     iResult = memcmp(s1, s2, 
  2377.             (size_t) ((s1len < s2len) ? s1len : s2len));
  2378. } else if (((valuePtr->typePtr == &tclStringType)
  2379.         && (value2Ptr->typePtr == &tclStringType))) {
  2380.     /*
  2381.      * Do a unicode-specific comparison if both of the args are of
  2382.      * String type.  If the char length == byte length, we can do a
  2383.      * memcmp.  In benchmark testing this proved the most efficient
  2384.      * check between the unicode and string comparison operations.
  2385.      */
  2386.     s1len = Tcl_GetCharLength(valuePtr);
  2387.     s2len = Tcl_GetCharLength(value2Ptr);
  2388.     if ((s1len == valuePtr->length) && (s2len == value2Ptr->length)) {
  2389. iResult = memcmp(valuePtr->bytes, value2Ptr->bytes,
  2390. (unsigned) ((s1len < s2len) ? s1len : s2len));
  2391.     } else {
  2392. iResult = TclUniCharNcmp(Tcl_GetUnicode(valuePtr),
  2393. Tcl_GetUnicode(value2Ptr),
  2394. (unsigned) ((s1len < s2len) ? s1len : s2len));
  2395.     }
  2396. } else {
  2397.     /*
  2398.      * We can't do a simple memcmp in order to handle the
  2399.      * special Tcl xC0x80 null encoding for utf-8.
  2400.      */
  2401.     s1 = Tcl_GetStringFromObj(valuePtr, &s1len);
  2402.     s2 = Tcl_GetStringFromObj(value2Ptr, &s2len);
  2403.     iResult = TclpUtfNcmp2(s1, s2,
  2404.             (size_t) ((s1len < s2len) ? s1len : s2len));
  2405. }
  2406. /*
  2407.  * Make sure only -1,0,1 is returned
  2408.  */
  2409. if (iResult == 0) {
  2410.     iResult = s1len - s2len;
  2411. }
  2412. if (iResult < 0) {
  2413.     iResult = -1;
  2414. } else if (iResult > 0) {
  2415.     iResult = 1;
  2416. }
  2417. objResultPtr = Tcl_NewIntObj(iResult);
  2418. TRACE(("%.20s %.20s => %dn", O2S(valuePtr), O2S(value2Ptr), iResult));
  2419. NEXT_INST_F(1, 2, 1);
  2420.     }
  2421.     case INST_STR_LEN:
  2422.     {
  2423. int length1;
  2424.  
  2425. valuePtr = stackPtr[stackTop];
  2426. if (valuePtr->typePtr == &tclByteArrayType) {
  2427.     (void) Tcl_GetByteArrayFromObj(valuePtr, &length1);
  2428. } else {
  2429.     length1 = Tcl_GetCharLength(valuePtr);
  2430. }
  2431. objResultPtr = Tcl_NewIntObj(length1);
  2432. TRACE(("%.20s => %dn", O2S(valuePtr), length1));
  2433. NEXT_INST_F(1, 1, 1);
  2434.     }
  2435.     
  2436.     case INST_STR_INDEX:
  2437.     {
  2438. /*
  2439.  * String compare
  2440.  */
  2441. int index;
  2442. bytes = NULL; /* lint */
  2443. value2Ptr = stackPtr[stackTop];
  2444. valuePtr = stackPtr[stackTop - 1];
  2445. /*
  2446.  * If we have a ByteArray object, avoid indexing in the
  2447.  * Utf string since the byte array contains one byte per
  2448.  * character.  Otherwise, use the Unicode string rep to
  2449.  * get the index'th char.
  2450.  */
  2451. if (valuePtr->typePtr == &tclByteArrayType) {
  2452.     bytes = (char *)Tcl_GetByteArrayFromObj(valuePtr, &length);
  2453. } else {
  2454.     /*
  2455.      * Get Unicode char length to calulate what 'end' means.
  2456.      */
  2457.     length = Tcl_GetCharLength(valuePtr);
  2458. }
  2459. result = TclGetIntForIndex(interp, value2Ptr, length - 1, &index);
  2460. if (result != TCL_OK) {
  2461.     goto checkForCatch;
  2462. }
  2463. if ((index >= 0) && (index < length)) {
  2464.     if (valuePtr->typePtr == &tclByteArrayType) {
  2465. objResultPtr = Tcl_NewByteArrayObj((unsigned char *)
  2466.         (&bytes[index]), 1);
  2467.     } else if (valuePtr->bytes && length == valuePtr->length) {
  2468. objResultPtr = Tcl_NewStringObj((CONST char *)
  2469.         (&valuePtr->bytes[index]), 1);
  2470.     } else {
  2471. char buf[TCL_UTF_MAX];
  2472. Tcl_UniChar ch;
  2473. ch = Tcl_GetUniChar(valuePtr, index);
  2474. /*
  2475.  * This could be:
  2476.  * Tcl_NewUnicodeObj((CONST Tcl_UniChar *)&ch, 1)
  2477.  * but creating the object as a string seems to be
  2478.  * faster in practical use.
  2479.  */
  2480. length = Tcl_UniCharToUtf(ch, buf);
  2481. objResultPtr = Tcl_NewStringObj(buf, length);
  2482.     }
  2483. } else {
  2484.     TclNewObj(objResultPtr);
  2485. }
  2486. TRACE(("%.20s %.20s => %sn", O2S(valuePtr), O2S(value2Ptr), 
  2487.         O2S(objResultPtr)));
  2488. NEXT_INST_F(1, 2, 1);
  2489.     }
  2490.     case INST_STR_MATCH:
  2491.     {
  2492. int nocase, match;
  2493. nocase    = TclGetInt1AtPtr(pc+1);
  2494. valuePtr  = stackPtr[stackTop];         /* String */
  2495. value2Ptr = stackPtr[stackTop - 1]; /* Pattern */
  2496. /*
  2497.  * Check that at least one of the objects is Unicode before
  2498.  * promoting both.
  2499.  */
  2500. if ((valuePtr->typePtr == &tclStringType)
  2501.         || (value2Ptr->typePtr == &tclStringType)) {
  2502.     Tcl_UniChar *ustring1, *ustring2;
  2503.     int length1, length2;
  2504.     ustring1 = Tcl_GetUnicodeFromObj(valuePtr, &length1);
  2505.     ustring2 = Tcl_GetUnicodeFromObj(value2Ptr, &length2);
  2506.     match = TclUniCharMatch(ustring1, length1, ustring2, length2,
  2507.     nocase);
  2508. } else {
  2509.     match = Tcl_StringCaseMatch(TclGetString(valuePtr),
  2510.     TclGetString(value2Ptr), nocase);
  2511. }
  2512. /*
  2513.  * Reuse value2Ptr object already on stack if possible.
  2514.  * Adjustment is 2 due to the nocase byte
  2515.  */
  2516. TRACE(("%.20s %.20s => %dn", O2S(valuePtr), O2S(value2Ptr), match));
  2517. if (Tcl_IsShared(value2Ptr)) {
  2518.     objResultPtr = Tcl_NewIntObj(match);
  2519.     NEXT_INST_F(2, 2, 1);
  2520. } else { /* reuse the valuePtr object */
  2521.     Tcl_SetIntObj(value2Ptr, match);
  2522.     NEXT_INST_F(2, 1, 0);
  2523. }
  2524.     }
  2525.     case INST_EQ:
  2526.     case INST_NEQ:
  2527.     case INST_LT:
  2528.     case INST_GT:
  2529.     case INST_LE:
  2530.     case INST_GE:
  2531.     {
  2532. /*
  2533.  * Any type is allowed but the two operands must have the
  2534.  * same type. We will compute value op value2.
  2535.  */
  2536. Tcl_ObjType *t1Ptr, *t2Ptr;
  2537. char *s1 = NULL; /* Init. avoids compiler warning. */
  2538. char *s2 = NULL; /* Init. avoids compiler warning. */
  2539. long i2 = 0; /* Init. avoids compiler warning. */
  2540. double d1 = 0.0; /* Init. avoids compiler warning. */
  2541. double d2 = 0.0; /* Init. avoids compiler warning. */
  2542. long iResult = 0; /* Init. avoids compiler warning. */
  2543. value2Ptr = stackPtr[stackTop];
  2544. valuePtr  = stackPtr[stackTop - 1];
  2545. /*
  2546.  * Be careful in the equal-object case; 'NaN' isn't supposed
  2547.  * to be equal to even itself. [Bug 761471]
  2548.  */
  2549. t1Ptr = valuePtr->typePtr;
  2550. if (valuePtr == value2Ptr) {
  2551.     /*
  2552.      * If we are numeric already, we can proceed to the main
  2553.      * equality check right now.  Otherwise, we need to try to
  2554.      * coerce to a numeric type so we can see if we've got a
  2555.      * NaN but haven't parsed it as numeric.
  2556.      */
  2557.     if (!IS_NUMERIC_TYPE(t1Ptr)) {
  2558. if (t1Ptr == &tclListType) {
  2559.     int length;
  2560.     /*
  2561.      * Only a list of length 1 can be NaN or such
  2562.      * things.
  2563.      */
  2564.     (void) Tcl_ListObjLength(NULL, valuePtr, &length);
  2565.     if (length == 1) {
  2566. goto mustConvertForNaNCheck;
  2567.     }
  2568. } else {
  2569.     /*
  2570.      * Too bad, we'll have to compute the string and
  2571.      * try the conversion
  2572.      */
  2573.   mustConvertForNaNCheck:
  2574.     s1 = Tcl_GetStringFromObj(valuePtr, &length);
  2575.     if (TclLooksLikeInt(s1, length)) {
  2576. GET_WIDE_OR_INT(iResult, valuePtr, i, w);
  2577.     } else {
  2578. (void) Tcl_GetDoubleFromObj((Tcl_Interp *) NULL,
  2579. valuePtr, &d1);
  2580.     }
  2581.     t1Ptr = valuePtr->typePtr;
  2582. }
  2583.     }
  2584.     switch (*pc) {
  2585.     case INST_EQ:
  2586.     case INST_LE:
  2587.     case INST_GE:
  2588. iResult = !((t1Ptr == &tclDoubleType)
  2589. && IS_NAN(valuePtr->internalRep.doubleValue));
  2590. break;
  2591.     case INST_LT:
  2592.     case INST_GT:
  2593. iResult = 0;
  2594. break;
  2595.     case INST_NEQ:
  2596. iResult = ((t1Ptr == &tclDoubleType)
  2597. && IS_NAN(valuePtr->internalRep.doubleValue));
  2598. break;
  2599.     }
  2600.     goto foundResult;
  2601. }
  2602. t2Ptr = value2Ptr->typePtr;
  2603. /*
  2604.  * We only want to coerce numeric validation if neither type
  2605.  * is NULL.  A NULL type means the arg is essentially an empty
  2606.  * object ("", {} or [list]).
  2607.  */
  2608. if (!(     (!t1Ptr && !valuePtr->bytes)
  2609.         || (valuePtr->bytes && !valuePtr->length)
  2610.    || (!t2Ptr && !value2Ptr->bytes)
  2611.    || (value2Ptr->bytes && !value2Ptr->length))) {
  2612.     if (!IS_NUMERIC_TYPE(t1Ptr)) {
  2613. s1 = Tcl_GetStringFromObj(valuePtr, &length);
  2614. if (TclLooksLikeInt(s1, length)) {
  2615.     GET_WIDE_OR_INT(iResult, valuePtr, i, w);
  2616. } else {
  2617.     (void) Tcl_GetDoubleFromObj((Tcl_Interp *) NULL, 
  2618.             valuePtr, &d1);
  2619. }
  2620. t1Ptr = valuePtr->typePtr;
  2621.     }
  2622.     if (!IS_NUMERIC_TYPE(t2Ptr)) {
  2623. s2 = Tcl_GetStringFromObj(value2Ptr, &length);
  2624. if (TclLooksLikeInt(s2, length)) {
  2625.     GET_WIDE_OR_INT(iResult, value2Ptr, i2, w);
  2626. } else {
  2627.     (void) Tcl_GetDoubleFromObj((Tcl_Interp *) NULL,
  2628.             value2Ptr, &d2);
  2629. }
  2630. t2Ptr = value2Ptr->typePtr;
  2631.     }
  2632. }
  2633. if (!IS_NUMERIC_TYPE(t1Ptr) || !IS_NUMERIC_TYPE(t2Ptr)) {
  2634.     /*
  2635.      * One operand is not numeric. Compare as strings.  NOTE:
  2636.      * strcmp is not correct for x00 < x01, but that is
  2637.      * unlikely to occur here.  We could use the TclUtfNCmp2
  2638.      * to handle this.
  2639.      */
  2640.     int s1len, s2len;
  2641.     s1 = Tcl_GetStringFromObj(valuePtr, &s1len);
  2642.     s2 = Tcl_GetStringFromObj(value2Ptr, &s2len);
  2643.     switch (*pc) {
  2644.         case INST_EQ:
  2645.     if (s1len == s2len) {
  2646. iResult = (strcmp(s1, s2) == 0);
  2647.     } else {
  2648. iResult = 0;
  2649.     }
  2650.     break;
  2651.         case INST_NEQ:
  2652.     if (s1len == s2len) {
  2653. iResult = (strcmp(s1, s2) != 0);
  2654.     } else {
  2655. iResult = 1;
  2656.     }
  2657.     break;
  2658.         case INST_LT:
  2659.     iResult = (strcmp(s1, s2) < 0);
  2660.     break;
  2661.         case INST_GT:
  2662.     iResult = (strcmp(s1, s2) > 0);
  2663.     break;
  2664.         case INST_LE:
  2665.     iResult = (strcmp(s1, s2) <= 0);
  2666.     break;
  2667.         case INST_GE:
  2668.     iResult = (strcmp(s1, s2) >= 0);
  2669.     break;
  2670.     }
  2671. } else if ((t1Ptr == &tclDoubleType)
  2672.    || (t2Ptr == &tclDoubleType)) {
  2673.     /*
  2674.      * Compare as doubles.
  2675.      */
  2676.     if (t1Ptr == &tclDoubleType) {
  2677. d1 = valuePtr->internalRep.doubleValue;
  2678. GET_DOUBLE_VALUE(d2, value2Ptr, t2Ptr);
  2679.     } else { /* t1Ptr is integer, t2Ptr is double */
  2680. GET_DOUBLE_VALUE(d1, valuePtr, t1Ptr);
  2681. d2 = value2Ptr->internalRep.doubleValue;
  2682.     }
  2683.     switch (*pc) {
  2684.         case INST_EQ:
  2685.     iResult = d1 == d2;
  2686.     break;
  2687.         case INST_NEQ:
  2688.     iResult = d1 != d2;
  2689.     break;
  2690.         case INST_LT:
  2691.     iResult = d1 < d2;
  2692.     break;
  2693.         case INST_GT:
  2694.     iResult = d1 > d2;
  2695.     break;
  2696.         case INST_LE:
  2697.     iResult = d1 <= d2;
  2698.     break;
  2699.         case INST_GE:
  2700.     iResult = d1 >= d2;
  2701.     break;
  2702.     }
  2703. } else if ((t1Ptr == &tclWideIntType)
  2704.         || (t2Ptr == &tclWideIntType)) {
  2705.     Tcl_WideInt w2;
  2706.     /*
  2707.      * Compare as wide ints (neither are doubles)
  2708.      */
  2709.     if (t1Ptr == &tclIntType) {
  2710. w  = Tcl_LongAsWide(valuePtr->internalRep.longValue);
  2711. TclGetWide(w2,value2Ptr);
  2712.     } else if (t2Ptr == &tclIntType) {
  2713. TclGetWide(w,valuePtr);
  2714. w2 = Tcl_LongAsWide(value2Ptr->internalRep.longValue);
  2715.     } else {
  2716. TclGetWide(w,valuePtr);
  2717. TclGetWide(w2,value2Ptr);
  2718.     }
  2719.     switch (*pc) {
  2720.         case INST_EQ:
  2721.     iResult = w == w2;
  2722.     break;
  2723.         case INST_NEQ:
  2724.     iResult = w != w2;
  2725.     break;
  2726.         case INST_LT:
  2727.     iResult = w < w2;
  2728.     break;
  2729.         case INST_GT:
  2730.     iResult = w > w2;
  2731.     break;
  2732.         case INST_LE:
  2733.     iResult = w <= w2;
  2734.     break;
  2735.         case INST_GE:
  2736.     iResult = w >= w2;
  2737.     break;
  2738.     }
  2739. } else {
  2740.     /*
  2741.      * Compare as ints.
  2742.      */
  2743.     i  = valuePtr->internalRep.longValue;
  2744.     i2 = value2Ptr->internalRep.longValue;
  2745.     switch (*pc) {
  2746.         case INST_EQ:
  2747.     iResult = i == i2;
  2748.     break;
  2749.         case INST_NEQ:
  2750.     iResult = i != i2;
  2751.     break;
  2752.         case INST_LT:
  2753.     iResult = i < i2;
  2754.     break;
  2755.         case INST_GT:
  2756.     iResult = i > i2;
  2757.     break;
  2758.         case INST_LE:
  2759.     iResult = i <= i2;
  2760.     break;
  2761.         case INST_GE:
  2762.     iResult = i >= i2;
  2763.     break;
  2764.     }
  2765. }
  2766.     foundResult:
  2767. TRACE(("%.20s %.20s => %ldn", O2S(valuePtr), O2S(value2Ptr), iResult));
  2768. /*
  2769.  * Peep-hole optimisation: if you're about to jump, do jump
  2770.  * from here.
  2771.  */
  2772. pc++;
  2773. #ifndef TCL_COMPILE_DEBUG
  2774. switch (*pc) {
  2775.     case INST_JUMP_FALSE1:
  2776. NEXT_INST_F((iResult? 2 : TclGetInt1AtPtr(pc+1)), 2, 0);
  2777.     case INST_JUMP_TRUE1:
  2778. NEXT_INST_F((iResult? TclGetInt1AtPtr(pc+1) : 2), 2, 0);
  2779.     case INST_JUMP_FALSE4:
  2780. NEXT_INST_F((iResult? 5 : TclGetInt4AtPtr(pc+1)), 2, 0);
  2781.     case INST_JUMP_TRUE4:
  2782. NEXT_INST_F((iResult? TclGetInt4AtPtr(pc+1) : 5), 2, 0);
  2783. }
  2784. #endif
  2785. objResultPtr = Tcl_NewIntObj(iResult);
  2786. NEXT_INST_F(0, 2, 1);
  2787.     }
  2788.     case INST_MOD:
  2789.     case INST_LSHIFT:
  2790.     case INST_RSHIFT:
  2791.     case INST_BITOR:
  2792.     case INST_BITXOR:
  2793.     case INST_BITAND:
  2794.     {
  2795. /*
  2796.  * Only integers are allowed. We compute value op value2.
  2797.  */
  2798. long i2 = 0, rem, negative;
  2799. long iResult = 0; /* Init. avoids compiler warning. */
  2800. Tcl_WideInt w2, wResult = W0;
  2801. int doWide = 0;
  2802. value2Ptr = stackPtr[stackTop];
  2803. valuePtr  = stackPtr[stackTop - 1]; 
  2804. if (valuePtr->typePtr == &tclIntType) {
  2805.     i = valuePtr->internalRep.longValue;
  2806. } else if (valuePtr->typePtr == &tclWideIntType) {
  2807.     TclGetWide(w,valuePtr);
  2808. } else { /* try to convert to int */
  2809.     REQUIRE_WIDE_OR_INT(result, valuePtr, i, w);
  2810.     if (result != TCL_OK) {
  2811. TRACE(("%.20s %.20s => ILLEGAL 1st TYPE %sn",
  2812.         O2S(valuePtr), O2S(value2Ptr), 
  2813.         (valuePtr->typePtr? 
  2814.      valuePtr->typePtr->name : "null")));
  2815. DECACHE_STACK_INFO();
  2816. IllegalExprOperandType(interp, pc, valuePtr);
  2817. CACHE_STACK_INFO();
  2818. goto checkForCatch;
  2819.     }
  2820. }
  2821. if (value2Ptr->typePtr == &tclIntType) {
  2822.     i2 = value2Ptr->internalRep.longValue;
  2823. } else if (value2Ptr->typePtr == &tclWideIntType) {
  2824.     TclGetWide(w2,value2Ptr);
  2825. } else {
  2826.     REQUIRE_WIDE_OR_INT(result, value2Ptr, i2, w2);
  2827.     if (result != TCL_OK) {
  2828. TRACE(("%.20s %.20s => ILLEGAL 2nd TYPE %sn",
  2829.         O2S(valuePtr), O2S(value2Ptr),
  2830.         (value2Ptr->typePtr?
  2831.     value2Ptr->typePtr->name : "null")));
  2832. DECACHE_STACK_INFO();
  2833. IllegalExprOperandType(interp, pc, value2Ptr);
  2834. CACHE_STACK_INFO();
  2835. goto checkForCatch;
  2836.     }
  2837. }
  2838. switch (*pc) {
  2839. case INST_MOD:
  2840.     /*
  2841.      * This code is tricky: C doesn't guarantee much about
  2842.      * the quotient or remainder, but Tcl does. The
  2843.      * remainder always has the same sign as the divisor and
  2844.      * a smaller absolute value.
  2845.      */
  2846.     if (value2Ptr->typePtr == &tclWideIntType && w2 == W0) {
  2847. if (valuePtr->typePtr == &tclIntType) {
  2848.     TRACE(("%ld "LLD" => DIVIDE BY ZEROn", i, w2));
  2849. } else {
  2850.     TRACE((LLD" "LLD" => DIVIDE BY ZEROn", w, w2));
  2851. }
  2852. goto divideByZero;
  2853.     }
  2854.     if (value2Ptr->typePtr == &tclIntType && i2 == 0) {
  2855. if (valuePtr->typePtr == &tclIntType) {
  2856.     TRACE(("%ld %ld => DIVIDE BY ZEROn", i, i2));
  2857. } else {
  2858.     TRACE((LLD" %ld => DIVIDE BY ZEROn", w, i2));
  2859. }
  2860. goto divideByZero;
  2861.     }
  2862.     negative = 0;
  2863.     if (valuePtr->typePtr == &tclWideIntType
  2864. || value2Ptr->typePtr == &tclWideIntType) {
  2865. Tcl_WideInt wRemainder;
  2866. /*
  2867.  * Promote to wide
  2868.  */
  2869. if (valuePtr->typePtr == &tclIntType) {
  2870.     w = Tcl_LongAsWide(i);
  2871. } else if (value2Ptr->typePtr == &tclIntType) {
  2872.     w2 = Tcl_LongAsWide(i2);
  2873. }
  2874. if (w2 < 0) {
  2875.     w2 = -w2;
  2876.     w = -w;
  2877.     negative = 1;
  2878. }
  2879. wRemainder  = w % w2;
  2880. if (wRemainder < 0) {
  2881.     wRemainder += w2;
  2882. }
  2883. if (negative) {
  2884.     wRemainder = -wRemainder;
  2885. }
  2886. wResult = wRemainder;
  2887. doWide = 1;
  2888. break;
  2889.     }
  2890.     if (i2 < 0) {
  2891. i2 = -i2;
  2892. i = -i;
  2893. negative = 1;
  2894.     }
  2895.     rem  = i % i2;
  2896.     if (rem < 0) {
  2897. rem += i2;
  2898.     }
  2899.     if (negative) {
  2900. rem = -rem;
  2901.     }
  2902.     iResult = rem;
  2903.     break;
  2904. case INST_LSHIFT:
  2905.     /*
  2906.      * Shifts are never usefully 64-bits wide!
  2907.      */
  2908.     FORCE_LONG(value2Ptr, i2, w2);
  2909.     if (valuePtr->typePtr == &tclWideIntType) {
  2910. #ifdef TCL_COMPILE_DEBUG
  2911. w2 = Tcl_LongAsWide(i2);
  2912. #endif /* TCL_COMPILE_DEBUG */
  2913. wResult = w;
  2914. /*
  2915.  * Shift in steps when the shift gets large to prevent
  2916.  * annoying compiler/processor bugs. [Bug 868467]
  2917.  */
  2918. if (i2 >= 64) {
  2919.     wResult = Tcl_LongAsWide(0);
  2920. } else if (i2 > 60) {
  2921.     wResult = w << 30;
  2922.     wResult <<= 30;
  2923.     wResult <<= i2-60;
  2924. } else if (i2 > 30) {
  2925.     wResult = w << 30;
  2926.     wResult <<= i2-30;
  2927. } else {
  2928.     wResult = w << i2;
  2929. }
  2930. doWide = 1;
  2931. break;
  2932.     }
  2933.     /*
  2934.      * Shift in steps when the shift gets large to prevent
  2935.      * annoying compiler/processor bugs. [Bug 868467]
  2936.      */
  2937.     if (i2 >= 64) {
  2938. iResult = 0;
  2939.     } else if (i2 > 60) {
  2940. iResult = i << 30;
  2941. iResult <<= 30;
  2942. iResult <<= i2-60;
  2943.     } else if (i2 > 30) {
  2944. iResult = i << 30;
  2945. iResult <<= i2-30;
  2946.     } else {
  2947. iResult = i << i2;
  2948.     }
  2949.     break;
  2950. case INST_RSHIFT:
  2951.     /*
  2952.      * The following code is a bit tricky: it ensures that
  2953.      * right shifts propagate the sign bit even on machines
  2954.      * where ">>" won't do it by default.
  2955.      */