- Nov 01, 2020
-
-
Steve Bennett authored
Some systems produce 5e-05 while some produce 5e-5. Both are acceptable. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Oct 31, 2020
- Oct 29, 2020
-
-
Steve Bennett authored
make-c-ext.tcl and parse-unidata.tcl now support input files with CRNL line endings Reported-by:
<Mark@TheMarkitecht.com> Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Oct 06, 2020
-
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Oct 05, 2020
-
-
Steve Bennett authored
Update documentation to indicate v0.80 and update Tcl_shipped.html Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Oct 04, 2020
-
-
Steve Bennett authored
Need to find the baseclass based on the current method class, not based on the object class. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Sep 27, 2020
-
-
D. Bohdan authored
-
- Sep 23, 2020
-
-
Steve Bennett authored
When compiled with -Os and arm-linux-musleabihf-gcc (crosstool-NG 1.24.0.92-e2957c3) 9.2.0 Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Docs now indicate 0.79+, in preparation for 0.80 release And correctly indicate the changes since 0.79 Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
TIP 342 (https://core.tcl-lang.org/tips/doc/trunk/tip/342.md ) Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
D. Bohdan authored
-
D. Bohdan authored
TIP 461
-
D. Bohdan authored
Thanks to @gromgit on GitHub for suggesting this phrasing.
-
D. Bohdan authored
TIP 472
-
- Aug 22, 2020
-
-
Antonio Cardace authored
The generation of this field makes the resulting Tcl.html different between builds, as it records the time of generation, remove this as it causes jimtcl rpms for different arches (on RHEL/Fedora) to have a file conflict on Tcl.html.
-
- Jul 31, 2020
-
-
Steve Bennett authored
Avoid possible problems with when linking by renaming local regex to jim_regcomp, jim_regexec, etc. Fixes: #163 Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Jul 24, 2020
-
-
Steve Bennett authored
A return code of SSL_ERROR_ZERO_RETURN means the connection was closed. It isn't an error. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Jul 12, 2020
-
-
Steve Bennett authored
[string last foo bar -1] gave segfault due to missing check for invalid index. Fixes #161 Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Jun 25, 2020
-
-
Steve Bennett authored
Avoid ambiguity re null characters Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Although the documentation has always stated that, like Tcl, insertion order of dictionaries was preserved, this has never been the case. Instead, dictionaries were implemented as simple hash tables that did not preserve order. Now, a new implementation of dictionaries preserves insertion order and has a number of other benefits. Instead of hashing keys and storing keys and values in the hash table, the keys and values are not stored in a separate table, exactly as lists are stored, with alternating key, value pairs. Iterating over the dictionary is exactly like iterating over a list, where the order is consistent. The hash table uses closed hashing rather than open hashing to avoid allocatation of hash entry structures. Instead a fixed (but expandable) hash table maps the key hash to the offset in the key/value table. This use of offsets means that if the key/value table grows, the offsets remain valid. Likewise, if the hash table needs to grow, the key, value table remains unchanged. In addition to the offset (which indexes to the value, and 0 means the hash table entry is unused), the original hash is stored in the hash table. This reduces the need for object comparisons on hash entry collisions. The collision resolution algorithm is the same as that used by Python: peturb >>= 5; idx = (5 * idx + 1 + peturb) & dict->sizemask; In order to reduce collisions, the hash table is expanded once it reaches half full. This is more conservative that Python where the table is expanded when it is two thirds full. Note that if a hash collision occurs and then the original entry that cased the hash collision is removed, we still need to continue iterating when searching for the new key. Don't stop at the now-empty slot. So these entries are marked with offset=-1 to indicate that they need to be skipped. In addition, the new faster hashing algorithm from Tcl 8.7 is used. This the hash for integers to be calculated efficiently without requiring them to be converted to string form first. This implementation is modelled largely on the Python dict implementation. Overall the performance should be an improvement over the current implementation, whilst preserving order. Dictionary creating and insertion should be faster as hash entries do not need to be allocated and resizing should be slightly faster. Entry lookup should be about the same, except may be faster for pure integer keys. Below are some indicative benchmarks. OLD NEW dict-create-1.1 Create empty dict 97.2ns . dict-create-1.2 Create small dict 440ns -27% dict-create-1.3 Create medium dict 1.54us -57% dict-create-1.4 Create large dict (int keys) 130us -80% dict-create-1.5 Create large dict (string keys) 143us -75% dict-set-1.1 Replace existing item 258ns -34% dict-set-1.2 Replace nonexistent item 365ns -49% dict-exists-1.1 Find existing item 55.7ns -5% dict-exists-1.2 Find nonexistent item 55.0ns -5% Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Jun 13, 2020
-
-
Steve Bennett authored
Now that proc names are stored as-is in the commands table, info commands needs to take into account matching both foo::test and ::foo::test against the pattern ::foo::* Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Antonio Borneo authored
Commit aa4427de ("Add pkg-config support: jimtcl.pc") adds the build time file jimtcl.pc Commit 630df0da ("Update autosetup to v0.6.8") adds running make-template on tests/Makefile.in, producing tests/Makefile Add both jimtcl.pc and tests/Makefile to .gitignore Signed-off-by:
Antonio Borneo <borneo.antonio@gmail.com>
-
- Jun 12, 2020
-
-
Steve Bennett authored
We can simply use Jim_ReplaceHashEntry() when replacing a command in non-local mode now that the proc epoch doesn't need to be incremented. And JimRemoveHashEntry() only has one caller, so fold it into Jim_DeleteHashEntry() Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Jun 11, 2020
-
-
Steve Bennett authored
Don't look up every object in the command table, since it can be slow to do that. Only lookup if the object looks like a reference. Also, script and expression objects can't contain references that aren't already contained in sub-objects, so there is no need to scan them for references. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
In this case, show the result as a decimal value Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Under some circumstances, such as lrepeat and lreverse we know the length of the final list, so allocate the final size immediately rather than growing the table in multiple steps. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Pass JIM_NONE to prevent an error message being generated which is subsequently thrown away. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
- Jun 10, 2020
-
-
Steve Bennett authored
The changes in cdfa4637 broke TEST 35 because the cmd pointer is dereferenced before checking the procEpoch instead of afterwards. Signed-off-by:
Steve Bennett <steveb@workware.net.au>
-
- Jun 05, 2020
-
-
Steve Bennett authored
Now argument is Jim_Obj *, not const char * Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
If running in a VM with very variable time Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
namespace, ssl Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Instead of incrementing the proc epoch on every command removal and some command creation, cache previous deleted commands (empty structure only). Periodically increment the proc epoch and invalide all cached commands. This is especially a win when creating short lived commands. e.g. proc a {} { local proc b {} { # do something } # now b is removed } Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
The hash table used to store commands now uses Jim_Obj keys rather than allocated char *, so embedded nulls are supported. This means that some API function such as Jim_RenameCommand() now take Jim_Obj * rather than const char *, however Jim_CreateCommand() is retained with const char * for convenience and the new Jim_CreateCommandObj() is added. This is generally a performance win as the existing Jim_Obj can be used as the key. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
string match, switch -glob, info commands, etc. all now support patterns and strings with embedded nulls. Fixes #143 Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Hash tables used to store variables are now use Jim_Obj keys rather than allocated char *, so embedded nulls are supported. This is generally a performance win as the existing Jim_Obj can be used as the key. Signed-off-by:Steve Bennett <steveb@workware.net.au>
-
Steve Bennett authored
Signed-off-by:Steve Bennett <steveb@workware.net.au>
-