summaryrefslogtreecommitdiffhomepage
path: root/src/load.c
AgeCommit message (Expand)Author
2018-07-30New bytecode implementation of mruby VM.Yukihiro "Matz" Matsumoto
2018-04-28Fix broken support of `MRB_WITHOUT_FLOAT`; fix #4015Yukihiro "Matz" Matsumoto
2018-04-17Fallback to float when caompiled binary with 64bit compiler.Takeshi Watanabe
2017-10-11Add MRB_WITHOUT_FLOATYAMAMOTO Masaya
2017-08-29Exclude the top-level closure from `each_object`; fix #3793Yukihiro "Matz" Matsumoto
2017-08-12Reduce integer type mismatch warnings in VC.Yukihiro "Matz" Matsumoto
2016-09-28Removed trailing spacesNobuyoshi Nakada
2016-09-25Remove needless MRB_APIKouhei Sutou
2016-09-24Remove unnecessary MRB_API from read_irep related functions; ref #3215Yukihiro "Matz" Matsumoto
2016-01-07replace mrb_toplevel_run() by mrb_top_run()Yukihiro "Matz" Matsumoto
2015-12-29Support backtrace after method callsKouhei Sutou
2015-11-27include changed from by quotes ("") to by brackets (<>); close #3032Yukihiro "Matz" Matsumoto
2015-11-17DISABLE_STDIO/ENABLE_DEBUG macros to rename; close #3014Yukihiro "Matz" Matsumoto
2015-09-03remove trailing spaces from bc9c47d5Yukihiro "Matz" Matsumoto
2015-04-30Merge pull request #2778 from cremno/fix-load-size-error-macrosYukihiro "Matz" Matsumoto
2015-04-29always define SIZE_ERROR_MUL() macrocremno
2015-04-29remove SIZE_ERROR() macrocremno
2015-04-29add more descriptive error message and fail earliercremno
2015-04-28fix possible unsigned integer underflowcremno
2015-04-28unify error handlingcremno
2015-02-02allow endian specification of mrb files by `mrbc -e/-E`Yukihiro "Matz" Matsumoto
2014-11-25remove unnecessary _WIN32 preprocessor checkcremno
2014-11-04avoid using rewind(3) to load mrb filesYukihiro "Matz" Matsumoto
2014-11-04read whole mrb file at once to calculate correct padding offset; ref #2630Yukihiro "Matz" Matsumoto
2014-11-04Fix misaligned access when reading irep; close #2630Yukihiro "Matz" Matsumoto
2014-10-01load.c to use mrb_ro_data_p()Yukihiro "Matz" Matsumoto
2014-09-05support native byteorder in mrb files; ref 3492beYukihiro "Matz" Matsumoto
2014-09-05condition refactoring in load.cYukihiro "Matz" Matsumoto
2014-09-04fix strict aliasing rule violationcremno
2014-09-04wrong iseq conversion flagYukihiro "Matz" Matsumoto
2014-09-04avoid iseq allocation from static irep binary. it reduces 424KB allocation fo...Yukihiro "Matz" Matsumoto
2014-08-19Fix error hanldlings in read_irep_record().Tatsuhiko Kubo
2014-08-18refactor mruby method(fix indent. remove temporary value, duplicate procedure)kkkkkt
2014-08-04Merge pull request #2496 from cremno/remove-unnecessary-char_bit-checkYukihiro "Matz" Matsumoto
2014-08-04add MRB_API modifiers to mruby API functionsYukihiro "Matz" Matsumoto
2014-08-02remove unnecessary CHAR_BIT != 8 checkcremno
2014-05-21Check mrbc_context is nullmimaki
2014-05-19allow NULL (no variable) in lvar section of mrb format; fix #2294Yukihiro "Matz" Matsumoto
2014-05-18Add a space aftre bracket.yui-knk
2014-05-14resize register number in LVAR section from 32bits to 16bitsYukihiro "Matz" Matsumoto
2014-05-14Merge branch 'dump_lv' of https://github.com/take-cheeze/mruby into take-chee...Yukihiro "Matz" Matsumoto
2014-05-05Refactor read_lineno_record_1() in load.cJun Hiroe
2014-04-29Remove `lv_len` and use `nlocals - 1` instead.take_cheeze
2014-04-29Support local variables information dumping.take_cheeze
2014-04-29codedump for binary mrb files as wellYukihiro "Matz" Matsumoto
2014-04-25better integer size assertion suggested by usakYukihiro "Matz" Matsumoto
2014-04-25remove -Wsign-compare warningsYukihiro "Matz" Matsumoto
2014-03-26Merge pull request #1948 from monaka/pr-remove-unused-null-checkYukihiro "Matz" Matsumoto
2014-03-26Remove redundant NULL checks.Masaki Muranaka
2014-03-26add new function mrb_toplevel_run to prevent running through C function bouda...Yukihiro "Matz" Matsumoto