summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2013-03-18Lazy variable declarations. They are for speed tune.Masaki Muranaka
2013-03-18Clean some redundant code up.Masaki Muranaka
2013-03-18Make topenv() inlined.Masaki Muranaka
2013-03-18Extract uvget/uvset to OP_GETUPVAR/OP_SETUPVAR. This is for speed tuning.Masaki Muranaka
2013-03-18Make some tiny functions inlined. This is for supeed tuning.Masaki Muranaka
2013-03-18Remove mrb_checkstack() as unused.Masaki Muranaka
2013-03-18Optimize OP_SUBI.Masaki Muranaka
2013-03-18Optimize OP_ADD instruction.Masaki Muranaka
2013-03-18remove unused local variable beg in parser_yylexYukihiro Matz Matsumoto
2013-03-18Merge pull request #1025 from FUKUZAWA-Tadashi/masterYukihiro "Matz" Matsumoto
implement %W %w %s
2013-03-18personal style preference on function call in flo_to_sYukihiro Matz Matsumoto
2013-03-18Merge pull request #1020 from monaka/pr-add-numeric-format-functionYukihiro "Matz" Matsumoto
Add numeric format function
2013-03-18fix the type of argument named 'aspec'.crimsonwoods
'aspec' should be large at least 24 bit.
2013-03-17Merge pull request #1023 from monaka/pr-remove-memmove-from-vm.cYukihiro "Matz" Matsumoto
Remove memmove() in src/vm.c.
2013-03-17Merge pull request #1027 from masuidrive/remove_unused_ifYukihiro "Matz" Matsumoto
Removed unused expr
2013-03-17Merge pull request #1021 from monaka/pr-fix-warning-20130316Yukihiro "Matz" Matsumoto
Fix a warning happens on MRB_INT64 enabled.
2013-03-18Removed unused exprYuichiro MASUI
2013-03-17bugfix about escaping '\n'FUKUZAWA-Tadashi
2013-03-17remove disused check codeFUKUZAWA-Tadashi
2013-03-17refactor heredoc identifierFUKUZAWA-Tadashi
2013-03-17implement literal %W %w %sFUKUZAWA-Tadashi
refactor string parsing
2013-03-17Merge pull request #1024 from ↵Yukihiro "Matz" Matsumoto
crimsonwoods/remove_bitshifted_constants_larger_than_16bit remove bit-shift operation.
2013-03-17remove bit-shift operation.Kurebayashi, Takahiro
2013-03-17Remove memmove(). Use value_move() instead.Masaki Muranaka
value_move() is type-safer than memmove(). And may be faster on some targets. (If it makes slow on your target, rewrite to call memset(s1, s2, sizeof(mrb_value)*n) in value_move().)
2013-03-17Fix a warning happens on MRB_INT64 enabled.Masaki Muranaka
2013-03-17Add a new function mrb_flo_to_str(). Use it instead of sprintf() as possible.Masaki Muranaka
2013-03-17Add float.h. It exists even if the environment was freestanding. It has been ↵Masaki Muranaka
supported since C89.
2013-03-17resolve conflict from #1017Yukihiro Matz Matsumoto
2013-03-16Merge pull request #1016 from monaka/pr-reduce-string.h-20130316Yukihiro "Matz" Matsumoto
Reduce string.h.
2013-03-16Remove stdlib.h from mruby.h. It is for portability (care for freestanding ↵Masaki Muranaka
environments). This is a first step. It will be reduced stdlib.h in each files later.
2013-03-16Remove unnecessory stdint.h.Masaki Muranaka
2013-03-16Remove unused string.h.Masaki Muranaka
2013-03-16Remove string.h in khash.hMasaki Muranaka
2013-03-16fix segmentation fault in BasicObject#inspecttakkaw
2013-03-15rename mrb_basic to mrb_basic_ptr; close #1011Yukihiro Matz Matsumoto
2013-03-15obsolete mrb_object; opposite of bc870ceYukihiro Matz Matsumoto
2013-03-15resolve conflictYukihiro Matz Matsumoto
2013-03-14Fix indentation in symbol.ckano4
2013-03-14Add break to default case in switch statementkano4
2013-03-14add mrb_int overflow check for mrb_intYukihiro Matz Matsumoto
2013-03-14Merge pull request #997 from monaka/pr-add-type-mrb_bool_tYukihiro "Matz" Matsumoto
Define mrb_bool_t.
2013-03-14use size_t for string length C APIYukihiro Matz Matsumoto
2013-03-14symbol length make size_t from mrb_int; cancel #993 ↵Yukihiro Matz Matsumoto
monaka/pr-cleanup-symbol.c-20130312
2013-03-14Merge pull request #993 from monaka/pr-cleanup-symbol.c-20130312Yukihiro "Matz" Matsumoto
Cleanup symbol.c.
2013-03-14remove PARANOID from commentsYukihiro Matz Matsumoto
2013-03-14Merge pull request #987 from monaka/pr-clean-up-parse.y-20130312Yukihiro "Matz" Matsumoto
Clean up parse.y.
2013-03-14Define type mrb_bool. It is typedef-ed to _Bool on C99, unsigned int on MSVC.Masaki Muranaka
It is safer than applying 1bit bit-fields to signed int. For forward compatibility, you should substiture only 1 or 0 for the variable typed mrb_bool.
2013-03-14Remove compiler warningmattn
2013-03-13Merge pull request #1001 from monaka/pr-add-type-check-in-mrb_str_to_cstrYukihiro "Matz" Matsumoto
Add the type check in mrb_str_to_cstr().
2013-03-13Merge pull request #1002 from monaka/pr-extract-stack-zero-fillingYukihiro "Matz" Matsumoto
Extract stack zero filling into new function.