summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2002-06-20 14:47:38 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2002-06-20 14:47:38 (GMT)
commitf9e7a6db58c7f9a9286aa5509df16afe5b6cf0bc (patch)
tree85ac1e2f071aa0765079736dc42771e1684b8734
parent3636e18ab1466ad8d8eb0e235c9a95579a10a6f0 (diff)
downloadtcl-f9e7a6db58c7f9a9286aa5509df16afe5b6cf0bc.zip
tcl-f9e7a6db58c7f9a9286aa5509df16afe5b6cf0bc.tar.gz
tcl-f9e7a6db58c7f9a9286aa5509df16afe5b6cf0bc.tar.bz2
* generic/tclExecute.c (TclCompEvalObj): clarified and simplified the
logic for compilation/recompilation.
-rw-r--r--ChangeLog5
-rw-r--r--generic/tclExecute.c88
2 files changed, 44 insertions, 49 deletions
diff --git a/ChangeLog b/ChangeLog
index dc28f52..cf62233 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-06-20 Miguel Sofer <msofer@users.sourceforge.net>
+
+ * generic/tclExecute.c (TclCompEvalObj): clarified and simplified
+ the logic for compilation/recompilation.
+
2002-06-19 Joe English <jenglish@users.sourceforge.net>
* doc/file.n: Fixed indentation. No substantive changes.
diff --git a/generic/tclExecute.c b/generic/tclExecute.c
index c1a7a2c..1f80829 100644
--- a/generic/tclExecute.c
+++ b/generic/tclExecute.c
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclExecute.c,v 1.74 2002/06/20 00:11:43 dgp Exp $
+ * RCS: @(#) $Id: tclExecute.c,v 1.75 2002/06/20 14:47:38 msofer Exp $
*/
#include "tclInt.h"
@@ -876,35 +876,47 @@ TclCompEvalObj(interp, objPtr)
return TCL_ERROR;
}
- /*
- * Get the ByteCode from the object. If it exists, make sure it hasn't
- * been invalidated by, e.g., someone redefining a command with a
- * compile procedure (this might make the compiled code wrong). If
- * necessary, convert the object to be a ByteCode object and compile it.
- * Also, if the code was compiled in/for a different interpreter,
- * or for a different namespace, or for the same namespace but
- * with different name resolution rules, we recompile it.
- *
- * Precompiled objects, however, are immutable and therefore
- * they are not recompiled, even if the epoch has changed.
- *
- * To be pedantically correct, we should also check that the
- * originating procPtr is the same as the current context procPtr
- * (assuming one exists at all - none for global level). This
- * code is #def'ed out because [info body] was changed to never
- * return a bytecode type object, which should obviate us from
- * the extra checks here.
- */
-
if (iPtr->varFramePtr != NULL) {
namespacePtr = iPtr->varFramePtr->nsPtr;
} else {
namespacePtr = iPtr->globalNsPtr;
}
- if (objPtr->typePtr == &tclByteCodeType) {
+ /*
+ * If the object is not already of tclByteCodeType, compile it (and
+ * reset the compilation flags in the interpreter; this should be
+ * done after any compilation).
+ * Otherwise, check that it is "fresh" enough.
+ */
+
+ if (objPtr->typePtr != &tclByteCodeType) {
+ recompileObj:
+ iPtr->errorLine = 1;
+ result = tclByteCodeType.setFromAnyProc(interp, objPtr);
+ if (result != TCL_OK) {
+ return result;
+ }
+ iPtr->evalFlags = 0;
+ codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
+ } else {
+ /*
+ * Make sure the Bytecode hasn't been invalidated by, e.g., someone
+ * redefining a command with a compile procedure (this might make the
+ * compiled code wrong).
+ * The object needs to be recompiled if it was compiled in/for a
+ * different interpreter, or for a different namespace, or for the
+ * same namespace but with different name resolution rules.
+ * Precompiled objects, however, are immutable and therefore
+ * they are not recompiled, even if the epoch has changed.
+ *
+ * To be pedantically correct, we should also check that the
+ * originating procPtr is the same as the current context procPtr
+ * (assuming one exists at all - none for global level). This
+ * code is #def'ed out because [info body] was changed to never
+ * return a bytecode type object, which should obviate us from
+ * the extra checks here.
+ */
codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
-
if (((Interp *) *codePtr->interpHandle != iPtr)
|| (codePtr->compileEpoch != iPtr->compileEpoch)
#ifdef CHECK_PROC_ORIGINATION /* [Bug: 3412 Pedantic] */
@@ -919,36 +931,14 @@ TclCompEvalObj(interp, objPtr)
}
codePtr->compileEpoch = iPtr->compileEpoch;
} else {
+ /*
+ * This byteCode is invalid: free it and recompile
+ */
tclByteCodeType.freeIntRepProc(objPtr);
- }
- }
- }
- if (objPtr->typePtr != &tclByteCodeType) {
- iPtr->errorLine = 1;
- result = tclByteCodeType.setFromAnyProc(interp, objPtr);
- if (result != TCL_OK) {
- return result;
- }
- } else {
- codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
- if (((Interp *) *codePtr->interpHandle != iPtr)
- || (codePtr->compileEpoch != iPtr->compileEpoch)) {
- (*tclByteCodeType.freeIntRepProc)(objPtr);
- iPtr->errorLine = 1;
- result = (*tclByteCodeType.setFromAnyProc)(interp, objPtr);
- if (result != TCL_OK) {
- return result;
+ goto recompileObj;
}
}
}
- codePtr = (ByteCode *) objPtr->internalRep.otherValuePtr;
-
- /*
- * Extract then reset the compilation flags in the interpreter.
- * Resetting the flags must be done after any compilation.
- */
-
- iPtr->evalFlags = 0;
/*
* Execute the commands. If the code was compiled from an empty string,