Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Eliminate unnessessary end-of-line spacing. No functional change. | jan.nijtmans | 2015-10-04 | 1 | -2/+2 |
| | |||||
* | One more (interp==NULL) shortcut. | dgp | 2014-12-22 | 1 | -1/+1 |
| | |||||
* | Revise name and interface of new utility routines to match work already | dgp | 2014-12-19 | 1 | -38/+67 |
| | | | in place on the trunk. | ||||
* | New utility routine GetLocalScalarIndex() reduces common caller boilerplatebug_e711ffb458 | dgp | 2014-12-19 | 1 | -54/+58 |
| | | | (and fixes a bug!) | ||||
* | Use interp==NULL argument to PushVarName to signal that only an index into | dgp | 2014-12-19 | 1 | -17/+17 |
| | | | | the CLT is sought, and no time should be wasted compiling other cases which the caller is just going to discard. | ||||
* | Replace TclIsLocalScalar() with PushVarNameWord() in [dict for] compiler. | dgp | 2014-12-19 | 1 | -26/+27 |
| | |||||
* | Narrow scope of numVars. | dgp | 2014-12-19 | 1 | -1/+2 |
| | |||||
* | A bit more tidying... | dgp | 2014-12-18 | 1 | -6/+4 |
| | |||||
* | No need for a loopIndex. | dgp | 2014-12-18 | 1 | -7/+4 |
| | |||||
* | No need for varvList any more. | dgp | 2014-12-18 | 1 | -25/+2 |
| | |||||
* | Fix up the token array passed to PushVarNameWord. Remove string list parse. | dgp | 2014-12-18 | 1 | -33/+6 |
| | |||||
* | Replace use of TclIsLocalScalar() and late setting of varIndexes with an | dgp | 2014-12-18 | 1 | -15/+29 |
| | | | earlier setting of varIndexes using PushVarNameWord(). | ||||
* | Simplify creation and storage of temporaries | dgp | 2014-12-18 | 1 | -17/+7 |
| | |||||
* | With that shift, varcList is no longer needed. | dgp | 2014-12-18 | 1 | -7/+1 |
| | |||||
* | Shift the allocation of AuxData earlier in the [foreach] compiler. | dgp | 2014-12-18 | 1 | -16/+25 |
| | |||||
* | Similar conversion of the [dict append] compiler. | dgp | 2014-12-11 | 1 | -16/+9 |
| | |||||
* | Similar conversion for [dict update] compiler. | dgp | 2014-12-11 | 1 | -30/+15 |
| | |||||
* | Similar revisions to [dict incr] compiler. | dgp | 2014-12-11 | 1 | -38/+22 |
| | |||||
* | Get the word number right, even though it has no effect. | dgp | 2014-12-11 | 1 | -1/+1 |
| | |||||
* | [e711ffb458] Same conversion for [catch] compiler. | dgp | 2014-12-11 | 1 | -36/+7 |
| | |||||
* | [e711ffb458] Replace TclIsLocalScalar() with PushVarNameWord() in the | dgp | 2014-12-09 | 1 | -13/+7 |
| | | | compiler for [dict set]. | ||||
* | [e711ffb458] Replace TclIsLocalScalar() (which does the wrong thing).... with | dgp | 2014-12-09 | 1 | -12/+6 |
| | | | PushVarNameWord() (which doesn't) in the compiler for [dict lappend]. | ||||
* | Ever since (Tcl)PushVarName() stopped making a recursive call to | dgp | 2014-12-05 | 1 | -10/+1 |
| | | | | | Tcl_ParseCommand() (in the pre-8.4.0 timeframe), there's been no need for special protections for brace-quoted varname words. A simple word is a simple word is a simple word. | ||||
* | [0c043a175] backport fix from trunk. | dgp | 2014-12-03 | 1 | -1/+1 |
|\ | |||||
| * | test and fix (thx dgp)bug_0c043a175 | Miguel Sofer | 2014-12-03 | 1 | -1/+1 |
| | | |||||
| * | Possible fix for testing. | dgp | 2014-10-02 | 1 | -3/+5 |
| | | |||||
| * | Backing out commit [cddbfc3081], fix for bug [82521bfb6734f891dd] | Miguel Sofer | 2014-09-27 | 1 | -1/+0 |
| | | | | | | | | | | The "optimisation" in that commit assumes that the last byte in the generated bytecodes is an INST_TRY_CONVERT if it equals 64. This is an invalid assumption, it could be 64 and not be an instruction. | ||||
| * | merge trunk | dkf | 2014-01-09 | 1 | -273/+314 |
| |\ | |||||
| | * | merge trunk | dkf | 2014-01-05 | 1 | -2/+2 |
| | |\ | |||||
| | | * | fix arraySet compiler to set -errorcode instead of -errorCode in return options | mig | 2014-01-05 | 1 | -2/+2 |
| | | | | |||||
| | * | | put the other definition of a trim set in the header file too | dkf | 2013-12-30 | 1 | -7/+0 |
| | | | | |||||
| | * | | merge trunk | dkf | 2013-12-23 | 1 | -13/+19 |
| | |\ \ | | | |/ | |||||
| | | * | Added new tools for managing and verifying the stack depth during ↵ | mig | 2013-12-23 | 1 | -2/+8 |
| | | | | | | | | | | | | | | | | compilation. Used it in some spots in the compiler and in TclCompileCatchCommand. | ||||
| | | * | remove unnecessary messing around INST_CONTINUE and INST_BREAK: local ↵ | mig | 2013-12-22 | 1 | -10/+4 |
| | | | | | | | | | | | | | | | | continue/break are already converted to jumps, so that these are either caught or returned - in either case, the stacks are cleaned up properly by TEBC itself. | ||||
| | | * | remove duplicate statement in previous commit | mig | 2013-12-22 | 1 | -1/+0 |
| | | | | |||||
| | | * | fix stack counting bug in new catch compiler, commit 62a51cdb45. | mig | 2013-12-22 | 1 | -2/+8 |
| | | | | |||||
| | | * | remove INST_TRY_CVT_TO_NUMERIC when it is known not be necessary (cherrypick ↵ | mig | 2013-12-20 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | from mig-optimize) | ||||
| | * | | merge trunk; document added instructions | dkf | 2013-12-12 | 1 | -73/+18 |
| | |\ \ | | | |/ | |||||
| | | * | comments | mig | 2013-12-11 | 1 | -7/+4 |
| | | | | |||||
| | | * | comments | mig | 2013-12-11 | 1 | -5/+2 |
| | | | | |||||
| | | * | comments | mig | 2013-12-11 | 1 | -1/+7 |
| | | | | |||||
| | | * | new test, and fix for bug | mig | 2013-12-11 | 1 | -6/+9 |
| | | | | |||||
| | | * | simplify: remove the special case | mig | 2013-12-11 | 1 | -21/+4 |
| | | | | |||||
| | | * | store options early: simplify compiler, reduce stack manipulations | mig | 2013-12-11 | 1 | -26/+6 |
| | | | | |||||
| | | * | simplifying: drop early the evaled script | mig | 2013-12-11 | 1 | -29/+8 |
| | | | | |||||
| | * | | merge trunk | dkf | 2013-12-12 | 1 | -28/+14 |
| | |\ \ | | | |/ | |||||
| | | * | new INST_LMAP_COLLECT, speeds up lmap and eliminates the need for a temp var | mig | 2013-12-10 | 1 | -28/+14 |
| | | | | |||||
| | * | | merge trunk | dkf | 2013-12-06 | 1 | -157/+105 |
| | |\ \ | | | |/ | |||||
| | | * | Stop printing undefined values in disassembled code. | dkf | 2013-12-06 | 1 | -1/+41 |
| | | | | |||||
| | | * | adapted the array-set compiler to use the new foreach opcodes | mig | 2013-12-06 | 1 | -52/+31 |
| | | | |