Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug fix: Assembler dereferences a rogue pointer when unstacking an empty ↵bug_3154ea2759 | Kevin B Kenny | 2016-05-13 | 1 | -4/+6 |
|\ | | | | | | | exception range. | ||||
| * | Bug fix. Have to arrange to only close a catch once. After the spacebug_3154ea2759 | dgp | 2016-05-06 | 1 | -0/+3 |
|/ | | | | | | | | has been returned to placeholder values, closing with them as data leads to memory corruption. There's probably a better fix available because the error here feels like it's rooted somewhere else, having us continue to check values we ought to know have already been closed. | ||||
* | [b43f2b49f7] New compilation strategy for lappend that allows multi-value | dkf | 2014-07-18 | 1 | -0/+4 |
| | | | lappend to not have quadratic performance (through better reference management). | ||||
* | add compilation of [string is] | dkf | 2014-02-02 | 1 | -1/+4 |
|\ | |||||
| * | merge principal development branch | dkf | 2014-01-25 | 1 | -0/+1 |
| |\ | |||||
| * | | extend [string is] to booleans | dkf | 2014-01-13 | 1 | -0/+1 |
| | | | |||||
| * | | a different approach | dkf | 2014-01-10 | 1 | -1/+3 |
| | | | |||||
* | | | Squashed C99 syntax breaking the native AIX cc. | andreask | 2014-01-29 | 1 | -3/+3 |
| |/ |/| | |||||
* | | added compilation for [nextto] | dkf | 2014-01-19 | 1 | -0/+1 |
|/ | |||||
* | implement [namespace origin] in bytecode | dkf | 2013-12-30 | 1 | -0/+1 |
| | |||||
* | allow generation by assembler | dkf | 2013-12-30 | 1 | -3/+4 |
| | |||||
* | Now do [string toupper], [string tolower] and [string totitle]. Only handles ↵ | dkf | 2013-10-29 | 1 | -5/+9 |
| | | | | the no-indices case; that's the only case anyone actually commonly uses. | ||||
* | General [concat] compilation. | dkf | 2013-10-26 | 1 | -1/+4 |
| | |||||
* | Change name of instruction to make way for future changes. | dkf | 2013-10-26 | 1 | -1/+2 |
| | |||||
* | merge fixes from trunk | dkf | 2013-10-22 | 1 | -31/+3 |
|\ | |||||
| * | Fix for assemble.test; problem was a total assumption failure caused by way ↵ | dkf | 2013-10-22 | 1 | -31/+3 |
| | | | | | | | | that the assembler works. | ||||
* | | merge trunk | dkf | 2013-10-20 | 1 | -3/+31 |
|\ \ | |/ | |||||
| * | And the last bits that need fixing; the code is still less efficient than ↵dkf_loop_exception_range_work | dkf | 2013-10-20 | 1 | -4/+31 |
| | | | | | | | | desired but should now not crash. | ||||
| * | Working towards better handling of stack balance with break and continue ↵ | dkf | 2013-10-08 | 1 | -0/+1 |
| | | | | | | | | exceptions. | ||||
* | | cleaner and faster 'string trim' | dkf | 2013-10-03 | 1 | -1/+2 |
| | | |||||
* | | First attempt at [string trim] compilation. | dkf | 2013-09-30 | 1 | -1/+4 |
|/ | |||||
* | [7b32d8d13b] Insert missing field initialization. | dgp | 2013-09-16 | 1 | -0/+1 |
| | |||||
* | Simplify AuxData access with a macro. | dgp | 2013-07-27 | 1 | -1/+1 |
| | |||||
* | more disabled code removal | dgp | 2013-07-24 | 1 | -7/+0 |
| | |||||
* | [assemble] compile syntax error into bytecode reporting syntax error message.dgp_tcs_rewrite | dgp | 2013-07-18 | 1 | -7/+3 |
| | |||||
* | merge trunk | dgp | 2013-07-18 | 1 | -7/+8 |
|\ | |||||
| * | [Bug 1c17fbba5d] Fix -errorinfo from syntax errors so that the error is | dgp | 2013-07-18 | 1 | -7/+8 |
| | | | | | | not obscured. Instead highlight it by making it the last character quoted. | ||||
* | | Stop the compileProc routines leaving behind error messages in interp. | dgp | 2013-06-27 | 1 | -2/+30 |
|/ | | | | | (Nicer way to solve [Bug 20a81392ec].) Make simplifications in TclCompileScript() make possible by the new structure. Still a work in progress. | ||||
* | Stack cleanup works now even in the most evil expansion cases. | dkf | 2013-06-05 | 1 | -1/+1 |
| | |||||
* | Remove useless macro, use existing macro where it makes sense. | dkf | 2013-06-02 | 1 | -2/+2 |
| | |||||
* | Stop emitting the instructions INST_*_SCALAR_STK*. They are identical to | dgp | 2013-05-29 | 1 | -5/+4 |
| | | | | | | | their INST_*_STK* counterparts. Having done that, it is clear the "simpleVarName" return from TclPushVarName provides nothing of use to any of its callers. Eliminate that. Also make TPVN return void, instead of int. Bring the TPVN header comments up to date; they were quite rotten. | ||||
* | Missed bits of dup code elimination. | dgp | 2013-05-28 | 1 | -23/+0 |
| | |||||
* | Removing a few changes that were not actually needed, and correcting comments. | dkf | 2013-05-15 | 1 | -1/+1 |
| | |||||
* | Optimizations and general bytecode generation improvements. | dkf | 2013-05-10 | 1 | -1/+2 |
| | |||||
* | unused variables | dgp | 2013-02-22 | 1 | -5/+0 |
| | |||||
* | Shift more burden of smart cleanup onto the TclFreeCompileEnv() routine. | dgp | 2013-02-22 | 1 | -38/+0 |
| | | | Stop crashes when the hookProc raises an error. | ||||
* | merge core-8-5-branch | jan.nijtmans | 2013-01-31 | 1 | -4/+3 |
| | |||||
* | fix minor memory leak | jan.nijtmans | 2013-01-25 | 1 | -1/+0 |
| | |||||
* | Eliminate some unneeded usages of Tcl_SetResult, Tcl_AddObjErrorInfo | jan.nijtmans | 2013-01-25 | 1 | -5/+4 |
| | | | Fix "make test-packages" on cygwin | ||||
* | Added compilation of [array exists], [array set] and [array unset]. Fixed a ↵merge_to_trunk | dkf | 2012-11-05 | 1 | -0/+4 |
| | | | | whole bunch of issues with opcode issuing that were causing problems with stack depth calculations. | ||||
* | Added compilation of [string last] and improved the compilation of [string ↵ | dkf | 2012-11-03 | 1 | -4/+6 |
| | | | | range]. This in turn enables compilation of [namespace qualifiers] and [namespace tail] (also done). | ||||
* | Added compilation of [info object isa object] (i.e., object verification). | dkf | 2012-11-03 | 1 | -0/+1 |
| | |||||
* | Added more TclOO introspection bytecodes ([info object class], [info object ↵ | dkf | 2012-11-02 | 1 | -0/+2 |
| | | | | namespace]). Also moved TclOO-in-8.6 to using the main Tcl internal ensemble builder. | ||||
* | Added compilation of [tailcall]. Not a particularly efficient compilation ↵ | dkf | 2012-11-01 | 1 | -3/+3 |
| | | | | though; it does not detect tailcall-of-self as a special case. | ||||
* | Added compilation of [dict create] and [dict merge]. | dkf | 2012-11-01 | 1 | -6/+7 |
| | |||||
* | Added [dict exists] compilation; implementation is 95% shared with [dict get]. | dkf | 2012-10-30 | 1 | -0/+1 |
| | |||||
* | Compilation of [string first] and [string range] (with constant indices). | dkf | 2012-10-30 | 1 | -4/+6 |
| | |||||
* | Added compilation of simplest practical case of [string map]. | dkf | 2012-10-29 | 1 | -4/+6 |
| | |||||
* | Working towards a BCCed [yield]; this doesn't work right now. | dkf | 2012-10-26 | 1 | -4/+5 |
| | |||||
* | Compile [namespace which -command]; big performance saving in some contexts. | dkf | 2012-10-26 | 1 | -1/+3 |
| |