Wed, 24 Nov 2010 02:52:37 +0000 Matthew Wild Replace error reporting code with calls to LVM.traceback() file | diff | annotate
Wed, 24 Nov 2010 02:52:01 +0000 Matthew Wild Add LVM.traceback() function file | diff | annotate
Wed, 24 Nov 2010 02:51:38 +0000 Matthew Wild OP_SETLIST: Implement support for B==0 (to top of stack) file | diff | annotate
Wed, 24 Nov 2010 02:50:31 +0000 Matthew Wild OP_RETURN: Pad out results with nils if we get less results than expected file | diff | annotate
Wed, 24 Nov 2010 02:50:02 +0000 Matthew Wild OP_TAILCALL: Fall through to OP_CALL for native functions file | diff | annotate
Wed, 24 Nov 2010 02:49:40 +0000 Matthew Wild OP_VARARG: Fix off-by-one file | diff | annotate
Wed, 24 Nov 2010 02:48:56 +0000 Matthew Wild OP_GETUPVALUE: Clone original LValue file | diff | annotate
Wed, 24 Nov 2010 02:48:27 +0000 Matthew Wild Create local function to use as chunk prototype file | diff | annotate
Wed, 24 Nov 2010 02:47:47 +0000 Matthew Wild Better verification of function validity in LVM.call() file | diff | annotate
Mon, 22 Nov 2010 19:38:27 +0000 Matthew Wild Indentation fix file | diff | annotate
Mon, 22 Nov 2010 19:38:12 +0000 Matthew Wild Change LVM.call() to take an LValue rather than the raw native/LFunction object. Also add LVM.loadstring(chunk, env) and use that for loading luac.out. file | diff | annotate
Mon, 22 Nov 2010 05:06:37 +0000 Matthew Wild Implement OP_TAILCALL - the last opcode! file | diff | annotate
Mon, 22 Nov 2010 04:54:59 +0000 Matthew Wild Adjust pc down by 1 when calculating error lines, pc is always the /next/ instruction file | diff | annotate
Mon, 22 Nov 2010 04:54:18 +0000 Matthew Wild Remove some debugging in the gmatch function file | diff | annotate
Mon, 22 Nov 2010 04:53:09 +0000 Matthew Wild Implement OP_VARARG file | diff | annotate
Mon, 22 Nov 2010 04:52:55 +0000 Matthew Wild OP_RETURN: Shrink stack on return file | diff | annotate
Mon, 22 Nov 2010 04:52:29 +0000 Matthew Wild OP_CALL: Don't push varargs into called function's stack file | diff | annotate
Mon, 22 Nov 2010 04:13:28 +0000 Matthew Wild Fix OP_CONCAT: missing break; and should supply empty separator to join() file | diff | annotate
Mon, 22 Nov 2010 04:05:25 +0000 Matthew Wild assert(): Throw "assertion failed" message when none supplied file | diff | annotate
Mon, 22 Nov 2010 02:43:55 +0000 Matthew Wild "Implement" OP_CLOSE file | diff | annotate
Mon, 22 Nov 2010 02:36:09 +0000 Matthew Wild Fix OP_FORLOOP to set the loop counter variable properly file | diff | annotate
Mon, 22 Nov 2010 02:34:26 +0000 Matthew Wild Implement LValue.len() and OP_LEN (no metamethod yet) file | diff | annotate
Mon, 22 Nov 2010 02:33:56 +0000 Matthew Wild Switch to [] for representing tables (for now) file | diff | annotate
Mon, 22 Nov 2010 02:32:01 +0000 Matthew Wild Don't use this.LValue() inside the VM - it's for JS types only file | diff | annotate
Mon, 22 Nov 2010 02:31:16 +0000 Matthew Wild Fix OP_CALL to handle the case of B==1 (no parameters) and fix an off-by-one error that wouldn't fill the stack with nils properly file | diff | annotate
Sun, 21 Nov 2010 21:37:07 +0000 Matthew Wild Implement OP_MOD, OP_POW, OP_UNM, OP_NOT (no metamethods yet) file | diff | annotate
Sun, 21 Nov 2010 21:25:24 +0000 Matthew Wild Implement OP_MUL (no metamethod yet) file | diff | annotate
Sun, 21 Nov 2010 21:17:59 +0000 Matthew Wild Fix FORPREP to not blat R(A+3) - not sure what that line thought it was doing file | diff | annotate
Sun, 21 Nov 2010 16:50:39 +0000 Matthew Wild Add unimplemented OP_* codes as reference file | diff | annotate
Sun, 21 Nov 2010 16:35:08 +0000 Matthew Wild Fix exception in stack printing for some tests when debug mode is enabled file | diff | annotate
Sun, 21 Nov 2010 16:29:29 +0000 Matthew Wild Prettier stack printing in debugMode file | diff | annotate
Sun, 21 Nov 2010 16:28:40 +0000 Matthew Wild Fix traceback in error handling... file | diff | annotate
Sun, 21 Nov 2010 16:28:17 +0000 Matthew Wild Add string lib, with gmatch function only for now file | diff | annotate
Sun, 21 Nov 2010 16:27:41 +0000 Matthew Wild Implement OP_SETLIST file | diff | annotate
Sun, 21 Nov 2010 16:27:18 +0000 Matthew Wild Implement OP_TFORLOOP file | diff | annotate
Sun, 21 Nov 2010 16:25:08 +0000 Matthew Wild Implement OP_CONCAT (no metamethod yet) file | diff | annotate
Sat, 20 Nov 2010 15:19:42 +0000 Matthew Wild Remove some debugging in math.ldexp() accidentally committed file | diff | annotate
Sat, 20 Nov 2010 15:19:19 +0000 Matthew Wild Implement OP_DIV (no metamethod yet) file | diff | annotate
Sat, 20 Nov 2010 12:13:12 +0000 Matthew Wild Don't try and print current position in the Lua script with no valid frame file | diff | annotate
Sat, 20 Nov 2010 12:12:46 +0000 Matthew Wild Rename default_environment to _G, use registerLib() for baselib and add math lib with 2 ldexp, floor file | diff | annotate
Sat, 20 Nov 2010 12:11:34 +0000 Matthew Wild Add LVM().registerLib(env, name, lib) to register a table of native functions to an environment. file | diff | annotate
Sat, 20 Nov 2010 12:10:53 +0000 Matthew Wild Fix OP_SUB to use RK() too... file | diff | annotate
Sat, 20 Nov 2010 11:11:17 +0000 Matthew Wild Print out location at which errors occur, yay! file | diff | annotate
Sat, 20 Nov 2010 11:11:01 +0000 Matthew Wild Pass sourceName to child chunks (in binary files it's only set in the top-level chunk) file | diff | annotate
Sat, 20 Nov 2010 11:07:24 +0000 Matthew Wild Disable debugMode, accidentally committed file | diff | annotate
Fri, 19 Nov 2010 21:06:50 +0000 Matthew Wild Implement OP_LE (no metamethod yet) file | diff | annotate
Fri, 19 Nov 2010 20:52:08 +0000 Matthew Wild Fix OP_LT to respect A, and move OP_EQ to live next to it in the switch() for readability file | diff | annotate
Fri, 19 Nov 2010 19:49:25 +0000 Matthew Wild Fix OP_LT to use RK() file | diff | annotate
Fri, 19 Nov 2010 19:42:25 +0000 Matthew Wild Add assert() to baselib, real tests possible at last file | diff | annotate
Fri, 19 Nov 2010 19:41:57 +0000 Matthew Wild Add LValue.truth() to return whether a value is (not(false) and not(nil)) file | diff | annotate
Fri, 19 Nov 2010 19:28:48 +0000 Matthew Wild Fix OP_SETTABLE to use RK() helper file | diff | annotate
Fri, 19 Nov 2010 19:22:40 +0000 Matthew Wild Fix type() in baselib to return an LValue file | diff | annotate
Fri, 19 Nov 2010 19:22:20 +0000 Matthew Wild Fix for passing arguments to the entry call frame file | diff | annotate
Fri, 19 Nov 2010 19:21:48 +0000 Matthew Wild Implement OP_EQ file | diff | annotate
Fri, 19 Nov 2010 19:21:36 +0000 Matthew Wild Give LValue an equals() method, returns true/false if the value == the first argument (checks metamethod) file | diff | annotate
Fri, 19 Nov 2010 16:57:32 +0000 Matthew Wild Fix native function return values for the new calling interface file | diff | annotate
Fri, 19 Nov 2010 16:08:51 +0000 Matthew Wild Update all opcodes to use RK() that need it file | diff | annotate
Fri, 19 Nov 2010 16:06:12 +0000 Matthew Wild Add new RK() helper and fix OP_ADD to use it (so it loads constants properly) file | diff | annotate
Fri, 19 Nov 2010 16:05:36 +0000 Matthew Wild Fix OP_ADD code to use new LValue format file | diff | annotate
Fri, 19 Nov 2010 16:04:51 +0000 Matthew Wild Support for __add metamethod file | diff | annotate
(0) -100 -60 tip

mercurial