index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
codedump.c
Age
Commit message (
Expand
)
Author
2020-11-04
Add a new instruction `OP_LOADI32`.
Yukihiro "Matz" Matsumoto
2020-11-03
Add new instructions to handle symbols/literals >255; fix #5109
Yukihiro "Matz" Matsumoto
2020-11-02
format '%p' expects argument of type 'void *'; #5107
Yukihiro "Matz" Matsumoto
2020-10-12
Rename `OP_JUW` instruction to `OP_JMPUW`.
Yukihiro "Matz" Matsumoto
2020-10-12
Fix typo `_hander` -> `_handler`.
Yukihiro "Matz" Matsumoto
2020-10-12
Replace global jump with catch handler implementation
dearblue
2020-10-12
Removed push/pop instructions for rescue/ensure
dearblue
2020-10-12
Extended `OP_EXCEPT` and `OP_RAISE` (`OP_RAISEIF`) instructions
dearblue
2020-10-12
Extended mruby binary format
dearblue
2020-10-12
Check `lv` before printing local variable names.
Yukihiro "Matz" Matsumoto
2020-10-12
You don't need to keep index in local variables info in `irep`.
Yukihiro "Matz" Matsumoto
2020-10-12
Remove `OP_EXT[123]` from operands.
Yukihiro "Matz" Matsumoto
2020-10-12
Clarify the use of `MRB_64BIT` and `MRB_INT64` in `dump.c` and `load.c`.
Yukihiro "Matz" Matsumoto
2020-10-12
Replace entire `irep->pool`.
Yukihiro "Matz" Matsumoto
2020-10-12
Constify `irep` members.
Yukihiro "Matz" Matsumoto
2020-05-07
Add a new instruction `OP_LOADI16`.
Yukihiro "Matz" Matsumoto
2019-09-26
Fixed `codedump` for human readable symbol format; ref #4684
Yukihiro "Matz" Matsumoto
2019-09-25
Rename symbol-to-string functions; close #4684
Yukihiro "Matz" Matsumoto
2019-08-18
Prohibit changes to iseq in principle
dearblue
2019-04-22
Use `MRB_ASPEC_XXX()` macro in `codedump()`
KOBAYASHI Shuji
2019-04-01
Avoid keeping pointers from `mrb_sym2name_len()`; fix #4342
Yukihiro "Matz" Matsumoto
2019-03-02
Print length of the `iseq` in code dump header; fix #4304
Yukihiro "Matz" Matsumoto
2018-11-19
Adjust codedump output format; ref #4166
Yukihiro "Matz" Matsumoto
2018-10-29
Fix codedumper
take-cheeze
2018-09-07
Clear terminated space
dearblue
2018-08-29
Simplified `#ifdef` nesting in `codedump.c`; fix #4089
Yukihiro "Matz" Matsumoto
2018-08-25
Reduce integer casting warnings.
Yukihiro "Matz" Matsumoto
2018-08-25
Hash splat `**` should not be ignored.
Yukihiro "Matz" Matsumoto
2018-07-31
Removed unused instruction: `OP_KDICT`.
Yukihiro "Matz" Matsumoto
2018-07-30
Keyword argument implemented.
Yukihiro "Matz" Matsumoto
2018-07-30
New bytecode implementation of mruby VM.
Yukihiro "Matz" Matsumoto
2017-12-15
Check if destinations are too distant; fix #3900 fix #3901
Yukihiro "Matz" Matsumoto
2017-10-28
Format codedump for OP_{LE,LT,GE,GT}.
Yukihiro "Matz" Matsumoto
2017-09-29
`codedump` to display `OP_CALL`.
Yukihiro "Matz" Matsumoto
2017-08-12
Reduce integer type mismatch warnings in VC.
Yukihiro "Matz" Matsumoto
2017-05-26
Distinguish OP_R_NORMAL and OP_R_RETURN.
Yukihiro "Matz" Matsumoto
2017-04-18
Make `mrb_codedump_all()` to print type of Proc.
Yukihiro "Matz" Matsumoto
2017-03-12
Enhance OP_RESCUE to take B operand fas matching exception; ref #3487
Yukihiro "Matz" Matsumoto
2017-02-08
codedump.c: OP_POPERR does not have register access.
Yukihiro "Matz" Matsumoto
2016-02-22
cosmetic change for OP_EQ
Yukihiro "Matz" Matsumoto
2016-02-05
[cppcheck] remove duplicated break
Yukihiro "Matz" Matsumoto
2015-11-27
include changed from by quotes ("") to by brackets (<>); close #3032
Yukihiro "Matz" Matsumoto
2015-11-17
DISABLE_STDIO/ENABLE_DEBUG macros to rename; close #3014
Yukihiro "Matz" Matsumoto
2015-10-22
align codedump output for OP_JMP
Yukihiro "Matz" Matsumoto
2015-10-22
align codedump output for OP_RETURN
Yukihiro "Matz" Matsumoto
2015-05-23
Move `mrb_codedump_all` to "src/codedump.c".
take_cheeze