summaryrefslogtreecommitdiffhomepage
path: root/src/load.c
AgeCommit message (Collapse)Author
2012-12-07refactor and move irep malloc away to mrb_add_irep()Yukihiro Matz Matsumoto
2012-12-05rename mrb_load_irep etc. for naming consistencyYukihiro Matz Matsumoto
2012-11-07compatible with MSVCskandhas
2012-10-29Merge pull request #515 from iij/pr-fix-mrb-formatYukihiro "Matz" Matsumoto
fixes *.mrb dump/load format with escaped character.
2012-10-30Use NULL instead of 0. (It is not a bug fix but a cosmetic change.)Masaki Muranaka
2012-10-30fixes *.mrb dump/load format with escaped character.Akira Yumiyama
- hex-style string support - mrb format changes like: - "\n" (before: \n -> after: \n) - '\n' (before: \n -> after: \\n)
2012-10-28Merge pull request #510 from masuidrive/masterYukihiro "Matz" Matsumoto
define convert method mrb_int/mrb_float with C string
2012-10-27define convert method mrb_int/mrb_float with C stringYuichiro MASUI
2012-10-25Use substitution instead of memset in structure initialization.Masaki Muranaka
2012-10-17Fix degrades by #490. (Some changes are reverted.)Masaki Muranaka
2012-10-15Avoid memcpy() on copying structure.Masaki Muranaka
2012-08-18remove assignment to unused dst; close #424Yukihiro Matsumoto
2012-07-29Make all(?) void casts explicit for C++Max Anselm
2012-07-09initialize stuctures on stack without memset(); close #350Yukihiro Matsumoto
2012-06-26Refactor hex_to_str().Masaki Muranaka
2012-06-15use ENABLE/DISABLE instead of INCLUDE for configuration macro namesYukihiro Matsumoto
2012-06-15Remove some redundant code.Masaki Muranaka
2012-06-13stop using strtol (via readint) except in load.c; use custom readint_floatYukihiro Matsumoto
2012-06-05symbol can contain non printable charactersYukihiro Matsumoto
2012-05-31remove unused variableYukihiro Matsumoto
2012-05-30update mrb->irep_len for each irep additionYukihiro Matsumoto
2012-05-29make arena_idx restoration per irep, not per loadYukihiro Matsumoto
2012-05-29compact arena before raising exception; also reserve a few slots to allocate ↵Yukihiro Matsumoto
exception objects
2012-05-29use API to restore arena_idxYukihiro Matsumoto
2012-05-29restore arena_idx after reading irepYukihiro Matsumoto
2012-05-23cast style consistencyYukihiro Matsumoto
2012-05-17remove unused assignmentsYukihiro Matsumoto
2012-05-16Avoid "may be used uninitialized in this function" warning.Masaki Muranaka
2012-04-30rm whitespaceroco
2012-04-28use readint/readfloat instead of sscanfYukihiro Matsumoto
2012-04-26mrb_read_irep should take const char *Patrick Hogan
Signed-off-by: Patrick Hogan <[email protected]>
2012-04-24move header files {irep,dump,cdump,ritehash}.h to /include/mrubyYukihiro Matsumoto
2012-04-23add file headermimaki
2012-04-20fixed wrong malloc sizeFrank Celler
2012-04-20add mruby sourcesmimaki