aboutsummaryrefslogtreecommitdiffstats
path: root/ext
Commit message (Collapse)AuthorAgeFilesLines
* Fix Ripper with heredoc.manga_osyo2021-01-171-0/+1
|
* [ruby/io-console] Rubygems 3.2 supports `--platform` optionNobuyoshi Nakada2021-01-161-5/+0
| | | | https://github.com/ruby/io-console/commit/c8046fde84
* [ruby/io-console] Moved JRuby version files into particular pathNobuyoshi Nakada2021-01-161-0/+6
| | | | https://github.com/ruby/io-console/commit/b0691d2c20
* [ruby/io-console] Delegate to JRuby versionNobuyoshi Nakada2021-01-161-0/+15
| | | | | | Add `--platform` option tentatively. https://github.com/ruby/io-console/commit/3bf1a7b753
* [ruby/io-console] bump up to 0.5.7Nobuyoshi Nakada2021-01-161-1/+1
| | | | https://github.com/ruby/io-console/commit/f55d7ebff6
* [ruby/bigdecimal] Fix for the coerce cases in divide and DoDivmodKenta Murata2021-01-161-10/+16
| | | | https://github.com/ruby/bigdecimal/commit/1cb92487f7
* [ruby/bigdecimal] Use pre-allocated special values in BigDecimal_DoDivmodKenta Murata2021-01-161-21/+26
| | | | https://github.com/ruby/bigdecimal/commit/d2746121cf
* [ruby/bigdecimal] Use new conversion functions in BigDecimal_DoDivmodKenta Murata2021-01-161-5/+12
| | | | https://github.com/ruby/bigdecimal/commit/68c20200d5
* [ruby/bigdecimal] Use new conversion functions in BigDecimal_divideKenta Murata2021-01-151-6/+14
| | | | https://github.com/ruby/bigdecimal/commit/3b55ad1c42
* [ruby/bigdecimal] Reorder the arguments of BigDecimal_divideKenta Murata2021-01-151-2/+2
| | | | https://github.com/ruby/bigdecimal/commit/1e03da7076
* [ruby/bigdecimal] Explicitly cast size_t to intKenta Murata2021-01-141-1/+1
| | | | https://github.com/ruby/bigdecimal/commit/b1f1ed26c9
* [ruby/bigdecimal] Explicitly cast uint64_t to doubleKenta Murata2021-01-141-1/+1
| | | | https://github.com/ruby/bigdecimal/commit/f0d94e6843
* [ruby/bigdecimal] Suppress warning at NO_SANITIZE on gccKenta Murata2021-01-141-0/+10
| | | | https://github.com/ruby/bigdecimal/commit/f6765b8071
* Moved Fiber methods into core [Feature #17407]Nobuyoshi Nakada2021-01-133-15/+0
|
* [ruby/bigdecimal] Allow digits=0 in BigDecimal(flt) and Float#to_dKenta Murata2021-01-132-22/+33
| | | | | | | | | | | | | | Using dtoa of mode=0, we can determine the number of digits in decimal that is necessary to represent the given Float number without errors. This change permits digits=0 in BigDecimal(flt) and Float#to_d, and these methods use dtoa of mode=0 when the given digits is 0. Internal implicit conversion from Float also uses digits=0. [Fix GH-70] https://github.com/ruby/bigdecimal/commit/2dbe170e35
* Update ext/bigdecimal/dependKenta Murata2021-01-131-0/+50
|
* Update ext/bigdecimal/dependKenta Murata2021-01-131-0/+112
|
* [ruby/bigdecimal] Optimize rb_float_convert_to_BigDecimal by using dtoaKenta Murata2021-01-137-5/+3602
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This improve the conversion speed several times faster than before. ``` RUBYLIB= BUNDLER_ORIG_RUBYLIB= /home/mrkn/.rbenv/versions/3.0.0/bin/ruby -v -S benchmark-driver /home/mrkn/src/github.com/ruby/bigdecimal/benchmark/from_float.yml ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-linux] Calculating ------------------------------------- bigdecimal 3.0.0 master flt_e0 156.400k 783.356k i/s - 100.000k times in 0.639388s 0.127656s flt_ep10 158.640k 777.978k i/s - 100.000k times in 0.630359s 0.128538s flt_ep100 101.676k 504.259k i/s - 100.000k times in 0.983512s 0.198311s flt_em10 103.439k 726.339k i/s - 100.000k times in 0.966751s 0.137677s flt_em100 79.675k 651.446k i/s - 100.000k times in 1.255095s 0.153505s Comparison: flt_e0 master: 783355.6 i/s bigdecimal 3.0.0: 156399.5 i/s - 5.01x slower flt_ep10 master: 777977.6 i/s bigdecimal 3.0.0: 158639.7 i/s - 4.90x slower flt_ep100 master: 504259.4 i/s bigdecimal 3.0.0: 101676.5 i/s - 4.96x slower flt_em10 master: 726338.6 i/s bigdecimal 3.0.0: 103439.2 i/s - 7.02x slower flt_em100 master: 651446.3 i/s bigdecimal 3.0.0: 79675.3 i/s - 8.18x slower ``` https://github.com/ruby/bigdecimal/commit/5bdaedd530 https://github.com/ruby/bigdecimal/commit/9bfff57f90 https://github.com/ruby/bigdecimal/commit/d071a0abbb
* [ruby/bigdecimal] Use pre-allocated objects for special valuesKenta Murata2021-01-131-21/+94
| | | | https://github.com/ruby/bigdecimal/commit/95c201f2d3
* [ruby/bigdecimal] Fix exception message raised in Kernel.BigDecimalKenta Murata2021-01-131-11/+20
| | | | | https://github.com/ruby/bigdecimal/commit/d163f170a4 https://github.com/ruby/bigdecimal/commit/ff8eeeb064
* [ruby/bigdecimal] Fix length calculation in rb_uint64_convert_to_BigDecimalKenta Murata2021-01-121-2/+1
| | | | https://github.com/ruby/bigdecimal/commit/14e53ed7f6
* [ruby/bigdecimal] Use rb_cstr_convert_to_BigDecimal in GetVpValueWithPrecKenta Murata2021-01-121-28/+25
| | | | https://github.com/ruby/bigdecimal/commit/381ddf5ff6
* [ruby/bigdecimal] Add rb_cstr_convert_to_BigDecimalKenta Murata2021-01-121-2/+8
| | | | https://github.com/ruby/bigdecimal/commit/ac230a996e
* [ruby/etc] Added fallback definition of RUBY_ATOMIC_EXCHANGENobuyoshi Nakada2021-01-111-0/+9
| | | | https://github.com/ruby/etc/commit/0c5900bd21
* [ruby/etc] Check blocking variables at releaseNobuyoshi Nakada2021-01-111-2/+6
| | | | https://github.com/ruby/etc/commit/f017bdfedf
* [ruby/bigdecimal] Fix type nameKenta Murata2021-01-101-1/+1
| | | | https://github.com/ruby/bigdecimal/commit/2dad4d17b2
* [ruby/bigdecimal] Avoid casting negative value to size_tKenta Murata2021-01-101-2/+3
| | | | https://github.com/ruby/bigdecimal/f047b2786f
* [ruby/bigdecimal] Use smallest local variable scope in GetVpValueWithPrecKenta Murata2021-01-101-9/+11
| | | | https://github.com/ruby/bigdecimal/commit/44f26b9aa0
* Get rid of defining methods for tests in core classesNobuyoshi Nakada2021-01-0911-77/+85
| | | | Not to interfere in other tests.
* [ruby/bigdecimal] Stop using GetVpValueWithPrec in ↵Kenta Murata2021-01-091-29/+11
| | | | | | | rb_rational_convert_to_BigDecimal https://github.com/ruby/bigdecimal/commit/b4f470da61 https://github.com/ruby/bigdecimal/commit/44a78df866
* [ruby/bigdecimal] Add assertions for checking the argument typesKenta Murata2021-01-091-0/+4
| | | | https://github.com/ruby/bigdecimal/commit/96c9ebd886
* [ruby/bigdecimal] Stop using GetVpValueWithPrec in ↵Kenta Murata2021-01-091-19/+21
| | | | | | | rb_float_convert_to_BigDecimal https://github.com/ruby/bigdecimal/commit/33e7c50263 https://github.com/ruby/bigdecimal/commit/d3c1b0b921
* [ruby/bigdecimal] Fix trailing zero handling in rb_uint64_convert_to_BigDecimalKenta Murata2021-01-071-1/+4
| | | | https://github.com/ruby/bigdecimal/commit/2056604d56
* [ruby/bigdecimal] Rename BDIGIT to DECDIGKenta Murata2021-01-062-143/+136
| | | | https://github.com/ruby/bigdecimal/commit/686487d942
* Need to convert the return value of rb_big_cmpKenta Murata2021-01-061-1/+1
|
* [ruby/bigdecimal] Optimize the conversion from small BignumKenta Murata2021-01-061-2/+26
| | | | https://github.com/ruby/bigdecimal/commit/4792a917d8
* [ruby/bigdecimal] Check the function availabilities separatelyKenta Murata2021-01-062-12/+19
| | | | | https://github.com/ruby/bigdecimal/commit/cf839a34c8 https://github.com/ruby/bigdecimal/commit/75db4dabb9
* [DOC] Fix grammar: "is same as" -> "is the same as"Marcus Stollsteimer2021-01-054-7/+7
|
* Fix a typo [ci skip]Kazuhiro NISHIYAMA2021-01-051-1/+1
|
* [ruby/io-console] Shrink struct query_argsNobuyoshi Nakada2021-01-051-2/+2
| | | | https://github.com/ruby/io-console/commit/720be0a3e5
* [ruby/io-console] Pre-define chomp! IDNobuyoshi Nakada2021-01-051-2/+3
| | | | https://github.com/ruby/io-console/commit/028e1c9497
* [ruby/io-console] Ignore chomp! result and return the modified stringNobuyoshi Nakada2021-01-051-1/+1
| | | | https://github.com/ruby/io-console/commit/09e5ccc729
* [ruby/io-console] [DOC] Note that IO#getpass returns a chomped stringMarcus Stollsteimer2021-01-051-0/+4
| | | | | | IO#getpass uses String#chomp! on the read input line. https://github.com/ruby/io-console/commit/1e98c93bc8
* enable constant cache on ractorsKoichi Sasada2021-01-051-0/+1
| | | | | | | | | | | | | | | | constant cache `IC` is accessed by non-atomic manner and there are thread-safety issues, so Ruby 3.0 disables to use const cache on non-main ractors. This patch enables it by introducing `imemo_constcache` and allocates it by every re-fill of const cache like `imemo_callcache`. [Bug #17510] Now `IC` only has one entry `IC::entry` and it points to `iseq_inline_constant_cache_entry`, managed by T_IMEMO object. `IC` is atomic data structure so `rb_mjit_before_vm_ic_update()` and `rb_mjit_after_vm_ic_update()` is not needed.
* ripper: call #pretty_print on also `state`Nobuyoshi Nakada2021-01-041-1/+1
|
* Update ext/bigdecimal/dependKenta Murata2021-01-041-0/+1
|
* [ruby/bigdecimal] Move some definitions to missing.hKenta Murata2021-01-046-167/+244
| | | | | | https://github.com/ruby/bigdecimal/commit/c2b22cc8b3 https://github.com/ruby/bigdecimal/commit/8cbca8481d https://github.com/ruby/bigdecimal/commit/f05aecf673
* Revert "Include RUBY_EXTCONF_H if available"Kenta Murata2021-01-041-4/+0
| | | | | | | It is unnecessary because RUBY_EXTCONF_H has already been included in ruby/internal/config.h. This reverts commit 0644f466b0ef017202712882b557ba32863002c4.
* Include RUBY_EXTCONF_H if availableKenta Murata2021-01-031-0/+4
|
* Avoid to use __builtin_clzl in SPARC SolarisKenta Murata2021-01-021-1/+1
|