summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | A different technique to more precisely identify the optimization case.dgp2011-05-091-14/+35
| | | | | | |
| | * | | | | Disable all the special case code in place to prevent allocation of a Listdgp2011-05-051-10/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | struct for empty lists as much as possible. The value of this avoidance is not clear to me. Hoping it can be demonstrated (or refuted) with both variants side by side in the code history tree.
* | | | | | | Convert TclGetLoadedPackages to use Tcl_Obj API for result generation.dkf2011-05-072-40/+47
| | | | | | |
* | | | | | | fix USE_TCLALLOC so that it can be enabled without editing the Makefilemig2011-05-073-4/+13
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | fix USE_TCLALLOC so that it can be enabled without editing the Makefilemig2011-05-073-4/+13
| |\ \ \ \ \ \ | | | |_|_|/ / | | |/| | | |
| | * | | | | fix USE_TCLALLOC so that it can be enabled without editing the Makefilemig2011-05-073-4/+13
| | | | | | |
* | | | | | | comment fixjan.nijtmans2011-05-061-3/+3
|\ \ \ \ \ \ \ | |/ / / / / /
| * | | | | | comment fixjan.nijtmans2011-05-061-3/+3
| |\ \ \ \ \ \ | | |/ / / / / | | | / / / / | | |/ / / / | |/| | | |
| | * | | | comment fixjan.nijtmans2011-05-061-3/+3
| | | | | |
* | | | | | Stop generating string rep of dict when converting to list.dgp2011-05-052-9/+47
|\ \ \ \ \ \ | |/ / / / / | | | | | | Tolerate NULL interps more completely.
| * | | | | Tolerate NULL interps more completely.dgp2011-05-052-5/+9
| | | | | |
| * | | | | Stop generating string rep of dict when converting to list.dgp2011-05-052-5/+39
| | | | | |
* | | | | | Fix typo spotted by Emiliano Gavilan.dkf2011-05-051-1/+4
| | | | | |
* | | | | | no longer depend on MODULE_SCOPE being definedjan.nijtmans2011-05-051-0/+3
| | | | | |
* | | | | | merge 8.5dgp2011-05-036-208/+116
|\ \ \ \ \ \ | |/ / / / /
| * | | | | Tighten Tcl_SplitList().dgp2011-05-032-2/+2
| | | | | |
| * | | | | Tighten SetListFromAny().dgp2011-05-032-73/+41
| | | | | |
| * | | | | Tighten SetDictFromAny().dgp2011-05-033-122/+69
| | | | | |
* | | | | | Rewrite of parts of the switch compiler to better use the powers ofdgp2011-05-022-104/+53
|\ \ \ \ \ \ | |/ / / / / | | | | | | TclFindElement() and do less parsing on its own.
| * | | | | Rewrite of parts of the switch compiler to better use the powers ofdgp2011-05-022-105/+44
| |\ \ \ \ \ | | | | | | | | | | | | | | TclFindElement() and do less parsing on its own.
| | * | | | | Drop old code.dgp_switch_compiledgp2011-05-021-155/+2
| | | | | | |
| | * | | | | Tests for expanded literals quoting detection.dgp2011-05-023-3/+19
| | |\ \ \ \ \ | | |/ / / / / | |/| | | | |
| | * | | | | Revised TclFindElement() interface.dgp2011-05-027-55/+83
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-025-37/+48
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | 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.
* | | | | | | | | Revised TclFindElement() interface.dgp2011-05-027-44/+88
|\ \ \ \ \ \ \ \ \ | |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. Tests for expanded literals quoting detection.
| * | | | | | | | Tests for expanded literals quoting detection.dgp2011-05-023-3/+19
| | |_|/ / / / / | |/| | | | | |
| * | | | | | | Revised TclFindElement() interface.dgp2011-05-026-41/+75
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | | | | Replace TclCountSpaceRuns() with TclMaxListLength() which is the function wedgp2011-05-024-24/+45
|\ \ \ \ \ \ \ | |/ / / / / / | | | | | | | actually want.
| * | | | | | Replace TclCountSpaceRuns() with TclMaxListLength() which is the function wedgp2011-05-024-24/+45
| |/ / / / / | | | | | | | | | | | | actually want.
* | | | | | Fix issue with library stripping in install-shKevin Walzer2011-04-291-1/+5
| | | | | |
* | | | | | More isspace() callers.dgp2011-04-284-26/+9
|\ \ \ \ \ \ | |/ / / / /
| * | | | | More isspace() callers.dgp2011-04-284-26/+9
| | | | | |
* | | | | | New utility routines: TclIsSpaceProc() and TclCountSpaceRuns()dgp2011-04-287-46/+121
|\ \ \ \ \ \ | |/ / / / / | | | | | | Use to replace calls to isspace() and their /* INTL */ risk.
| * | | | | New utility routines: TclIsSpaceProc() and TclCountSpaceRuns()dgp2011-04-287-46/+123
| | | | | | | | | | | | | | | | | | Use to replace calls to isspace() and their /* INTL */ risk.
* | | | | | Improved reaction to out of memory.dgp2011-04-282-1/+11
| | | | | |
* | | | | | minor comment fixjan.nijtmans2011-04-281-1/+1
|\ \ \ \ \ \ | |/ / / / /
| * | | | | minor comment fixjan.nijtmans2011-04-281-1/+1
| |\ \ \ \ \ | | |/ / / /
| | * | | | minor comment fixjan.nijtmans2011-04-281-1/+1
| | | | | |
* | | | | | merge markdgp2011-04-270-0/+0
|\ \ \ \ \ \ | |/ / / / /
| * | | | | FreeIndex backportdgp2011-04-272-0/+2
| | | | | |
* | | | | | TclFreeIntRep() correction & cleanup.dgp2011-04-2710-13/+14
|\ \ \ \ \ \
| * | | | | | TclFreeIntRep() cleanup.dgp2011-04-279-10/+9
|/ / / / / /
| | | | | |
| \ \ \ \ \
*-. \ \ \ \ \ FreeListInternalRep() cleanup.dgp2011-04-272-7/+9
|\ \ \ \ \ \ \ | | |/ / / / /
| | * | | | | FreeListInternalRep() cleanup.dgp2011-04-272-7/+7
| |/ / / / /
| * | | | | Backport fix for [Bug 2857044].dgp2011-04-2712-4/+27
| | | | | |
* | | | | | fix for [Bug 3288345]: use _stat32i64 for CYGWIN toojan.nijtmans2011-04-274-39/+46
|\ \ \ \ \ \ | |/ / / / / | | | | | | fix a few more gcc warnings
| * | | | | fix for [Bug 3288345]: use _stat32i64 for CYGWIN toojan.nijtmans2011-04-271-1/+5
| |\ \ \ \ \ | | |/ / / /
| | * | | | fix for [Bug 3288345]: use _stat32i64 for CYGWIN toojan.nijtmans2011-04-271-1/+5
| | | | | |