Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | More generation of error codes ([format], [after], [trace], RE optimizer). | dkf | 2011-04-04 | 5 | -82/+119 |
| | |||||
* | Minor tinkering with style. | dkf | 2011-04-04 | 1 | -3/+7 |
| | |||||
* | Better error-message in case of errors related to setting a variable | jan.nijtmans | 2011-04-04 | 5 | -45/+19 |
| | |||||
* | More generation of error codes (namespace creation, path normalization, | dkf | 2011-04-03 | 8 | -38/+130 |
| | | | pipeline creation, package handling, procedures, [scan] formats) | ||||
* | Replaced another couple of 'double' declarations with 'volatile | Kevin B Kenny | 2011-04-02 | 1 | -2/+4 |
|\ | | | | | | | double' to work around misrounding issues in mingw-gcc 3.4.5. | ||||
| * | Replaced another couple of 'double' declarations with 'volatile | Kevin B Kenny | 2011-04-02 | 1 | -2/+4 |
| | | | | | | | | double' to work around misrounding issues in mingw-gcc 3.4.5. | ||||
* | | More generation of errorCodes ([interp], [lset], [load], [unload]). | dkf | 2011-04-02 | 3 | -84/+119 |
| | | |||||
* | | More generation of errorCode information (default [bgerror] and [glob]). | dkf | 2011-04-02 | 2 | -0/+19 |
| | | |||||
* | | TclClockOldscanObjCmd: More generation of errorCode information. | dkf | 2011-03-31 | 3 | -0/+16 |
| | | |||||
* | | More generation of errorCode information, notably when lists are mis-parsed. | dkf | 2011-03-29 | 3 | -47/+103 |
| | | |||||
* | | Corrected odd comment | dkf | 2011-03-28 | 1 | -1/+1 |
| | | |||||
* | | Use the error messages generated by the variable management code rather than | dkf | 2011-03-28 | 1 | -9/+4 |
| | | | | | | creating our own in [regexp] and [regsub]. | ||||
* | | * generic/tclBasic.c (TclNREvalObjEx): fix performance issue, notably ↵ | mig | 2011-03-27 | 1 | -0/+3 |
| | | | | | | | | apparent in tclbench's 'LIST lset foreach'. Many thanks to twylite for patiently researching the issue and explaining it to me: a missing Tcl_ResetObjResult that causes unwanted sharing of the current result Tcl_Obj. | ||||
* | | More generation of errorCode information. | dkf | 2011-03-26 | 1 | -0/+6 |
| | | |||||
* | | Squelch another unnecessary cast. | dkf | 2011-03-26 | 1 | -1/+1 |
| | | |||||
* | | Reduce the number of casts used to manage Tcl_Obj internal representations. | dkf | 2011-03-26 | 10 | -158/+155 |
| | | |||||
* | | Remove Tclp(Local|Gm)time_unix forwarders, the same can be done directly | jan.nijtmans | 2011-03-25 | 2 | -0/+4 |
|\ \ | |/ | |||||
| * | fix genStubs.tcl in one place where it generated "void *" in stead of "VOID *" | jan.nijtmans | 2011-03-25 | 6 | -112/+116 |
| |\ | | | | | | | | | | Remove Tclp(Local|Gm)time_unix forwarders, the same can be done directly Some more void -> VOID transitions | ||||
| | * | Remove Tclp(Local|Gm)time_unix forwarders, the same can be done directly | jan.nijtmans | 2011-03-25 | 4 | -19/+22 |
| | | | | | | | | | Some void -> VOID transitions | ||||
* | | | Restored C++ usability to the memory allocation and free macros. | dgp | 2011-03-24 | 2 | -6/+6 |
| | | | |||||
* | | | Ensure that any reference to temporary index tables is squelched immediately | dkf | 2011-03-24 | 2 | -0/+6 |
|\ \ \ | |/ / | | | | rather than hanging around to trip us up in the future. | ||||
| * | | Ensure that any reference to temporary index tables is squelched immediately | dkf | 2011-03-24 | 1 | -0/+6 |
| |\ \ | | |/ | | | | rather than hanging around to trip us up in the future. | ||||
| | * | Ensure that any reference to temporary index tables is squelched immediately | dkf | 2011-03-24 | 1 | -0/+10 |
| | | | | | | | | | rather than hanging around to trip us up in the future. | ||||
* | | | Correct bizarre name of enumeration member. | dkf | 2011-03-24 | 1 | -2/+2 |
| | | | |||||
* | | | * generic/tclObj.c: exploit HAVE_FAST_TSD for the deletion context in ↵ | mig | 2011-03-23 | 1 | -0/+4 |
| | | | | | | | | | | | | TclFreeObj() | ||||
* | | | simpler initialization of Cache under HAVE_FAST_TSD, from mig-alloc-reform. | mig | 2011-03-22 | 1 | -4/+2 |
| | | | |||||
* | | | remove one level of allocator indirection in non-memdebug builds, imported ↵ | mig | 2011-03-21 | 2 | -6/+12 |
|\ \ \ | | | | | | | | | | | | | from mig-alloc-reform. | ||||
| * | | | fix last commit | mig | 2011-03-21 | 1 | -3/+3 |
| | | | | |||||
| * | | | remove one level of indirection in non-mem-debug builds | mig | 2011-03-21 | 2 | -6/+12 |
| | | | | |||||
| * | | | some cleanup re obj deletion | mig | 2011-03-21 | 5 | -43/+12 |
| | | | | |||||
| * | | | small opts | mig | 2011-03-21 | 1 | -4/+10 |
| | | | | |||||
| * | | | early return on freeing a NULL pointer | mig | 2011-03-19 | 1 | -4/+4 |
| | | | | |||||
| * | | | remove stray panic set for debugging | mig | 2011-03-19 | 1 | -1/+0 |
| | | | | |||||
| * | | | uninited var in last commit | mig | 2011-03-19 | 1 | -1/+3 |
| | | | | |||||
| * | | | look at all blocks in this thread before looking in the shared cache | mig | 2011-03-19 | 1 | -8/+16 |
| | | | | |||||
| * | | | tclListObj.c: simplify macros | mig | 2011-03-19 | 1 | -7/+4 |
| | | | | |||||
| * | | | get purify and native to build by removing ref to ckalloc and friends | mig | 2011-03-19 | 1 | -3/+3 |
| | | | | |||||
| * | | | getting aPURIFY to build? | mig | 2011-03-18 | 1 | -0/+1 |
| | | | | |||||
| * | | | remove TclpAlloc and friends from internal stubs | mig | 2011-03-18 | 4 | -123/+116 |
| | | | | |||||
| * | | | move the allocator stuff to the end of tclInt.h, in order not to interfere ↵ | mig | 2011-03-18 | 1 | -95/+96 |
| | | | | | | | | | | | | | | | | with tclIntDecls.h | ||||
| * | | | let TclAllocMaximize maintain zippys stats | mig | 2011-03-18 | 1 | -1/+8 |
| | | | | |||||
| * | | | let TEBC also use TclAllocMaximize | mig | 2011-03-18 | 1 | -6/+21 |
| | | | | |||||
| * | | | remove unused mutex | mig | 2011-03-18 | 1 | -10/+0 |
| | | | | |||||
| * | | | New function TclAllocMaximize(). Let tclListObj.c find out the real ↵ | mig | 2011-03-18 | 3 | -16/+84 |
| | | | | | | | | | | | | | | | | allocated size, thus reducing the number of reallocs. It's good to avoid the interplay between List and Alloc both doubling just-in-case. | ||||
| * | | | development branch for allocator changes | mig | 2011-03-18 | 34 | -2635/+1433 |
| | | | | |||||
* | | | | * generic/tclThreadAlloc.c: imported HAVE_FAST_TSD support from ↵ | mig | 2011-03-20 | 1 | -20/+29 |
|/ / / | | | | | | | | | | mig-alloc-reform. The feature has to be enabled by hand: no autoconf support has been added. It is not clear how universal a build using this will be: it also requires some loader support. | ||||
* | | | Generate errorCode information on failure to parse expressions. | dkf | 2011-03-17 | 1 | -67/+103 |
| | | | |||||
* | | | [Patch #3124683]: platform specific stuff in (tcl|tk)Main.c | jan.nijtmans | 2011-03-17 | 1 | -155/+130 |
| | | | |||||
* | | | [Bug #3197864] pointer truncation on Win64 TCL_MEM_DEBUG builds | jan.nijtmans | 2011-03-16 | 1 | -4/+4 |
|\ \ \ | |/ / | |||||
| * | | [Bug #3197864] pointer truncation on Win64 TCL_MEM_DEBUG builds | jan.nijtmans | 2011-03-16 | 1 | -4/+4 |
| |\ \ | | |/ |