aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-13 08:55:24 +0100
committerBenoit Giannangeli <benoit.giannangeli@boursorama.fr>2017-02-13 08:55:24 +0100
commit5895accf3297146d26a722e8ed6ac0658faa7f87 (patch)
tree46ce0d2c83d9e12f0de63adb27e510bba449e2cd
parent9bf2332e3cff054002b2bb94ce045b637298a7db (diff)
downloadfengari-5895accf3297146d26a722e8ed6ac0658faa7f87.tar.gz
fengari-5895accf3297146d26a722e8ed6ac0658faa7f87.tar.bz2
fengari-5895accf3297146d26a722e8ed6ac0658faa7f87.zip
Updated README
-rw-r--r--README.md115
1 files changed, 40 insertions, 75 deletions
diff --git a/README.md b/README.md
index 60543fb..aaada45 100644
--- a/README.md
+++ b/README.md
@@ -4,81 +4,46 @@
## So far
- [x] Parse bytecode
-- [ ] VM
- - [ ] Opcodes
- - [x] `OP_MOVE`
- - [x] `OP_LOADK`
- - [x] `OP_LOADKX`
- - [x] `OP_LOADBOOL`
- - [x] `OP_LOADNIL`
- - [x] `OP_GETUPVAL`
- - [x] `OP_SETUPVAL`
- - [x] `OP_GETTABUP`
- - [x] `OP_GETTABLE`
- - [x] `OP_SETTABUP`
- - [x] `OP_SETTABLE`
- - [x] `OP_NEWTABLE`
- - [x] `OP_SELF`
- - [x] `OP_ADD`
- - [x] `OP_SUB`
- - [x] `OP_MUL`
- - [x] `OP_MOD`
- - [x] `OP_POW`
- - [x] `OP_DIV`
- - [x] `OP_IDIV`
- - [x] `OP_BAND`
- - [x] `OP_BOR`
- - [x] `OP_BXOR`
- - [x] `OP_SHL`
- - [x] `OP_SHR`
- - [x] `OP_UNM`
- - [x] `OP_BNOT`
- - [x] `OP_NOT`
- - [x] `OP_LEN`
- - [ ] `OP_CONCAT`
- - [x] `OP_JMP`
- - [x] `OP_EQ`
- - [x] `OP_LT`
- - [x] `OP_LE`
- - [x] `OP_TEST`
- - [x] `OP_TESTSET`
- - [x] `OP_CALL`
- - [x] `OP_TAILCALL`
- - [x] `OP_RETURN`
- - [x] `OP_FORLOOP`
- - [x] `OP_FORPREP`
- - [x] `OP_TFORCALL`
- - [x] `OP_TFORLOOP`
- - [x] `OP_SETLIST`
- - [x] `OP_CLOSURE`
- - [x] `OP_VARARG`
- - [x] `OP_EXTRAARG`
- - [ ] Tag Methods
- - [ ] `__index`
- - [ ] `__newindex`
- - [x] `__gc` (unavailable)
- - [ ] `__mode`
- - [ ] `__len`
- - [ ] `__eq`
- - [ ] `__add`
- - [ ] `__sub`
- - [ ] `__mul`
- - [ ] `__mod`
- - [ ] `__pow`
- - [ ] `__div`
- - [ ] `__idiv`
- - [ ] `__band`
- - [ ] `__bor`
- - [ ] `__bxor`
- - [ ] `__shl`
- - [ ] `__shr`
- - [ ] `__unm`
- - [ ] `__bnot`
- - [ ] `__lt`
- - [ ] `__le`
- - [ ] `__concat`
- - [ ] `__call`
- - [ ] Debug (errors)
+- [ ] Opcodes
+ - [x] ...
+ - [ ] `OP_CONCAT`
+- [ ] Basic types representation:
+ - [x] nil
+ - [x] boolean
+ - [ ] number (32-bit ?)
+ - [ ] integer
+ - [ ] float
+ - [ ] string (8-bit clean)
+ - [ ] table
+ - [ ] function
+ - [ ] userdata
+ - [ ] thread
+- [ ] Tag Methods
+ - [ ] `__index`
+ - [ ] `__newindex`
+ - [x] `__gc` (unavailable)
+ - [ ] `__mode`
+ - [ ] `__len`
+ - [ ] `__eq`
+ - [ ] `__add`
+ - [ ] `__sub`
+ - [ ] `__mul`
+ - [ ] `__mod`
+ - [ ] `__pow`
+ - [ ] `__div`
+ - [ ] `__idiv`
+ - [ ] `__band`
+ - [ ] `__bor`
+ - [ ] `__bxor`
+ - [ ] `__shl`
+ - [ ] `__shr`
+ - [ ] `__unm`
+ - [ ] `__bnot`
+ - [ ] `__lt`
+ - [ ] `__le`
+ - [ ] `__concat`
+ - [ ] `__call`
+- [ ] Debug (errors)
- [ ] C API
- [ ] stdlib
- [ ] DOM API binding