summaryrefslogtreecommitdiffstats
path: root/tests/assemble.test
Commit message (Collapse)AuthorAgeFilesLines
* [Bug 1c17fbba5d] Fix -errorinfo from syntax errors so that the error isdgp2013-07-181-2/+1
| | | not obscured. Instead highlight it by making it the last character quoted.
* [Bug 3384840]: Fix memory leaks in the assembler due to Tcl_Obj referencedkf2011-08-041-0/+82
| | | ownership error.
* Correct test suite errors revealed by a -singleproc 1 -debug 1 run.dgp2011-07-071-2/+2
|
* Make the assembler code more like Tcl code.dkf2011-03-081-247/+17
|
* * tclAssembly.c:Kevin B Kenny2010-12-161-1/+76
| | | | | | | * assemble.test: Reworked beginCatch/endCatch handling to enforce the more severe (but more correct) restrictions on catch handling that appeared in the discussion of [Bug 3098302] and in tcl-core traffic beginning about 2010-10-29.
* * generic/tclAssembly.c:Kevin B Kenny2010-10-281-0/+139
| | | | * tests/assembly.test (assemble-31.*): Added jump tables.
* * tclAssembly.c:Kevin B Kenny2010-10-241-1/+33
| | | | | | | * assembly.test (assemble-17.15): Reworked branch handling so that forward branches can use jump1 (jumpTrue1, jumpFalse1). Added test cases that the forward branches will expand to jump4, jumpTrue4, jumpFalse4 when needed.
* Added catches. Still needs a lot of testing.Kevin B Kenny2010-10-061-5/+81
|
* nop and regexpKevin B Kenny2010-10-021-0/+69
|
* added missing tests: nsupvar, variable, upvarKevin B Kenny2010-10-021-1/+41
|
* * generic/tclAssembly.c:Kevin B Kenny2010-10-021-1/+239
| | | | | | | | * generic/tclAssembly.h: * tests/assemble.test: Added dictAppend, dictIncrImm, dictLappend, dictSet, dictUnset, nsupvar, upvar, and variable. (Still need tests for the last three.) Merged changes from HEAD.
* Added listIn, listNotIn, and dictGet.Kevin B Kenny2010-10-011-9/+88
|
* * tests/assemble.test: Added tryCvtToNumeric and several more listKevin B Kenny2010-09-301-70/+367
| | | | * generic/tclAssemble.c: operations.
* * tests/assemble.test: Completed conversion of tests to aKevin B Kenny2010-09-291-481/+381
| | | | | | * generic/tclAssemble.c: "white box" structure that follows the C code. Added missing safety checks on the operands of 'over' and 'reverse' so that negative operand counts don't smash the stack.
* * tests/assemble.test: Added more "white box" tests.Kevin B Kenny2010-09-281-2/+233
| | | | | | | | | | | | * generic/tclAssembly.c: Added the error checking and reporting for undefined labels. Revised code so that no pointers into the bytecode sequence are held (because the sequence can move!), that no Tcl_HashEntry pointers are held (because the hash table doesn't guarantee their stability!) and to eliminate the BBHash table, which is merely additional information indexed by jump labels and can just as easily be held in the 'label' structure. Renamed shared structures to CamelCase, and renamed 'label' to JumpLabel because other types of labels may eventually be possible.
* * tests/assemble.test: Added more "white box" tests.Kevin B Kenny2010-09-271-14/+458
| | | | | | | | * generic/tclAssembly.c: Fixed bugs exposed by the new tests. (a) [eval] and [expr] had incorrect stack balance computed if the arg was not a simple word. (b) [concat] accepted a negative operand count. (c) [invoke] accepted a zero or negative operand count. (d) more misspelt error messages.
* * tests/assemble.test: Added many new tests moving toward a moreKevin B Kenny2010-09-261-75/+1054
| | | | | | | | | | comprehensive test suite for the assembler. * generic/tclAssembly.c: Fixed bugs exposed by the new tests: (a) [bitnot] and [not] had incorrect operand counts. (b) INST_CONCAT cannot concatenate zero objects. (c) misspelt error messages. (d) the "assembly code" internal representation lacked a duplicator, which caused double-frees of the Bytecode object if assembly code ever was duplicated.
* added more tests; fixed a bug in initialization of BasicBlock objKevin B Kenny2010-09-251-6/+103
|
* * tclAssembly.c: Massive refactoring of the assemblerKevin B Kenny2010-09-251-213/+442
| | | | | | | | | * tclAssembly.h: to use a Tcl-like syntax (and use * tests/assemble.test: Tcl_ParseCommand to parse it). The * tests/assemble1.bench: refactoring also ensures that Tcl_Tokens in the assembler have string ranges inside the source code, which allows for [eval] and [expr] assembler directives that simply call TclCompileScript and TclCompileExpr recursively.
* initial commit of Ozgur Dogan Ugurlu's (SF user:dogeen) assembler for the ↵Kevin B Kenny2010-09-211-0/+516
Tcl bytecode language