summaryrefslogtreecommitdiffstats
path: root/generic/tclCompCmds.c
Commit message (Collapse)AuthorAgeFilesLines
* Added compilation of [array exists], [array set] and [array unset]. Fixed a ↵merge_to_trunkdkf2012-11-051-22/+257
| | | | 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 ↵dkf2012-11-031-0/+73
| | | | 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).dkf2012-11-031-0/+36
|
* Added more TclOO introspection bytecodes ([info object class], [info object ↵dkf2012-11-021-0/+40
| | | | namespace]). Also moved TclOO-in-8.6 to using the main Tcl internal ensemble builder.
* Added compilation of [dict create] and [dict merge].dkf2012-11-011-2/+205
|
* Added [dict exists] compilation; implementation is 95% shared with [dict get].dkf2012-10-301-0/+36
|
* Added compilation of [regsub] (in the simplest, most restricted case).dkf2012-10-301-0/+174
|
* Minor: correct a commentdkf2012-10-291-2/+3
|
* Compiler for some of the simpler cases of [format].dkf2012-10-291-0/+219
|
* Compilation of [info commands] in the case of a fully-qualified literal name.dkf2012-10-291-0/+58
|
* Added [self namespace] to bytecoded command set.dkf2012-10-281-5/+34
|
* Compile [namespace which -command]; big performance saving in some contexts.dkf2012-10-261-0/+46
|
* Added compilation of [namespace code] (except for gnarly edge cases).dkf2012-10-251-0/+50
|
* merge trunkdkf2012-10-241-0/+61
|\
| * Added compilation of [dict unset]; the bytecode needed already existed anyway.dkf2012-10-241-0/+61
| |
* | yet another small introspector: [self]dkf2012-10-191-0/+34
| |
* | merge trunkdkf2012-10-171-8/+183
|\ \ | |/
| * ...and all the compilation and tests now work/passtip_votedkf2012-10-051-23/+32
| |
| * compilation code adjusteddkf2012-10-051-69/+73
| |
| * Rename 'mapeach' to 'lmap' per preferred alternative in TIP #405.twylite2012-08-081-5/+5
| |
| * Back-out 'foreacha' implementation but leave code cleanup of 'mapeach' and ↵twylite2012-08-081-21/+2
| | | | | | | | 'dict map'.
| * [Patch-3163961] Implementation of TIP #405 merged from private branch. ↵twylite2012-08-031-8/+189
| | | | | | | | Includes 'mapeach', 'dict map' and 'foreacha' commands, test suite (partial for 'foreacha') and man pages (except for 'foreacha').
* | merge trunkdkf2012-08-041-2/+2
|\ \ | |/
| * Factor out a number of common patterns of use of Tcl_DStringAppend.dkf2012-07-031-2/+2
| |
* | Compilation of misc info sometimes used in high-performance code.dkf2012-03-041-8/+94
|/
* * generic/tclCompCmds.c (TclCompileLreplaceCmd): Added a compilationdkf2012-02-151-0/+124
| | | | strategy for [lreplace] that tackles the cases which are equivalent to a static [lrange].
* * generic/tclCompCmds.c (TclCompileLrangeCmd): Add compiler fordkf2012-02-151-3/+110
| | | | | | [lrange] with constant indices so we can take advantage of existing TCL_LIST_RANGE_IMM opcode. (TclCompileLindexCmd): Improve coverage of constant-index-style compliation using technique developed for [lrange] above.
* * generic/tclCompCmds.c (TclCompileDictForCmd): [Bug 3487626]: Fixdkf2012-02-151-1/+2
|\ | | | | | | crash in compilation of [dict for] when its implementation command is used directly rather than through the ensemble.
| * * generic/tclCompCmds.c (TclCompileDictForCmd): [Bug 3487626]: Fixdkf2012-02-151-1/+2
| | | | | | | | crash in compilation of [dict for] when its implementation command is used directly rather than through the ensemble.
| * 3485022 Disable ensemble subcommand compile inside a Tcl_Create*Trace().dgp2012-02-061-1/+2
| |
| * 3485022 TclCompileEnsemble() avoid compile when exec traces set.dgp2012-02-061-1/+2
| |\
| * | Drop old code.dgp_switch_compiledgp2011-05-021-155/+2
| | |
| * | Revised TclFindElement() interface.dgp2011-05-021-14/+5
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The final argument had been bracePtr, the address of a boolean var, where the caller can be told whether or not the parsed list element was enclosed in braces. In practice, no callers really care about that. What the callers really want to know is whether the list element value exists as a literal substring of the string being parsed, or whether a call to TclCopyAndCollpase() is needed to produce the list element value. Now the final argument is changed to do what callers actually need. This is a better fit for the calls in tclParse.c, where now a good deal of post-processing checking for "naked backslashes" is no longer necessary. ***POTENTIAL INCOMPATIBILITY*** For any callers calling in via the internal stubs table who really do use the final argument explicitly to check for the enclosing brace scenario. Simply looking for the braces where they must be is the revision available to those callers, and it will backport cleanly. New TclFindElement() is also a better fit for the [switch] compiler.
| * \ \ Replace TclCountSpaceRuns() with TclMaxListLength() which is the function wedgp2011-05-021-13/+2
| |\ \ \ | | |/ / | | | | actually want.
| * | | Tighten up the patch.dgp2011-05-021-13/+16
| | | |
| * | | Rewrite of parts of the [switch] compiler to better use the powers ofdgp2011-04-281-3/+104
| |/ / | | | | | | TclFindElement() and do less parsing on its own. Needs review and testing.
* | | Minor: make comments accurate in [catch] compiler.dkf2012-01-301-22/+22
| | |
* | | * generic/tclCompCmds.c (TclCompileCatchCmd): Added a more efficientdkf2012-01-301-1/+29
| | | | | | | | | | | | bytecode generator for the case where 'catch' is used without any variable arguments; don't capture the result just to discard it.
* | | * generic/tclCompCmds.c (TclCompileDictWithCmd): Corrected handling ofdkf2011-10-091-303/+312
| | | | | | | | | | | | qualified names, and added spacial cases for empty bodies (used when [dict with] is just used for extracting variables).
* | | Added support for having the dict var itself referenced by LVT index.dkf2011-10-031-14/+55
| | |
* | | Experimental compilation of the [dict with] subcommand. No tests yet, and notdkf2011-10-021-0/+179
| | | | | | | | | | | | yet certain that the added bytecode opcodes are correct; evaluation is still needed (but the test suite does pass...)
* | | [Bug 3386417] avoid a reference loop between the bytecode and its companion ↵ferrieux2011-08-091-1/+1
| | | | | | | | | | | | errostack when compiling a syntax error.
* | | Adjust ckalloc/ckfree macros to greatly reduce number of explicit casts indkf2011-03-121-19/+18
| | | | | | | | | rest of Tcl source code. No ABI change. API change *should* be harmless.
* | | Turn namespace into an ensemble. Not yet on trunk because of some mysterious ↵dkf2011-03-091-16/+7
| | | | | | | | | | | | failures that need resolving...
* | | Now that we're no longer using SCM based on RCS, the RCS Keyword linesdgp2011-03-021-2/+0
|\ \ \ | |/ / | | | cause more harm than good. Purged them (except in zlib files).
| * | Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-021-2/+0
| |\ \ | | |/ | | | more harm than good. Purged them.
| | * Now that we're no longer using SCM based on RCS, the RCS Keyword lines causedgp2011-03-011-2/+0
| | | | | | | | | more harm than good. Purged them.
| | * * generic/tclCompCmds.c: [Bug 2881263] (TclCompileForeachCmd,andreas_kupries2009-10-231-3/+4
| | | | | | | | | | | | | | | | | | TclCompileLindexCmd): Fixed. Moved the use of DefineLineInformation after all regular variable declarations, so that an empty statement (-UTIP_280) doesn't confuse c89 compilers.
| | * * generic/tclBasic.c (Tcl_CreateInterp, Tcl_EvalTokensStandard,andreas_kupries2009-08-251-265/+89
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EvalTokensStandard, Tcl_EvalEx, EvalEx, TclAdvanceContinuations, TclEvalObjEx): * generic/tclCmdMZ.c (Tcl_SwitchObjCmd, ListLines): * generic/tclCompCmds.c (*): * generic/tclCompile.c (TclSetByteCodeFromAny, TclInitCompileEnv, TclFreeCompileEnv, TclCompileScript): * generic/tclCompile.h (CompileEnv): * generic/tclInt.h (ContLineLoc, Interp): * generic/tclObj.c (ThreadSpecificData, ContLineLocFree, TclThreadFinalizeObjects, TclInitObjSubsystem, TclContinuationsEnter, TclContinuationsEnterDerived, TclContinuationsCopy, TclContinuationsGet, TclFreeObj): * generic/tclProc.c (TclCreateProc): * generic/tclVar.c (TclPtrSetVar): * tests/info.test (info-30.0-22): Extended parser, compiler, and execution with code and attendant data structures tracking the positions of continuation lines which are not visible in script's, to properly account for them while counting lines for #280, during direct and compiled execution.
| | * * generic/tclBasic.c: Extended the existing TIP #280 system (infoandreas_kupries2008-07-211-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * generic/tclCmdAH.c: frame), added the ability to track the * generic/tclCompCmds.c: absolute location of literal procedure * generic/tclCompile.c: arguments, and making this information * generic/tclCompile.h: available to uplevel, eval, and * generic/tclInterp.c: siblings. This allows proper tracking of * generic/tclInt.h: absolute location through custom (Tcl-coded) * generic/tclNamesp.c: control structures based on uplevel, etc. * generic/tclProc.c: