aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* [ruby/bigdecimal] Reorder the arguments of BigDecimal_divideKenta Murata2021-01-151-2/+2
| | | | https://github.com/ruby/bigdecimal/commit/1e03da7076
* * 2021-01-15 [ci skip]git2021-01-151-1/+1
|
* Fix WB for callinfoAaron Patterson2021-01-141-0/+1
| | | | | The WB for callinfo needs to be executed *after* the reference is written. Otherwise we get a WB miss.
* [DOC] Fixed indent [ci skip]Nobuyoshi Nakada2021-01-141-1/+1
|
* Return new NODE_LITNobuyoshi Nakada2021-01-141-5/+2
| | | | | As NODE_ZLIST/NODE_LIST are not markable, cannot be reused as NODE_LIT.
* Ensure symbol list node is either NODE_STR or NODE_DSTRNobuyoshi Nakada2021-01-141-3/+8
|
* NODE markability should not change by nd_set_typeNobuyoshi Nakada2021-01-142-6/+37
|
* Rename RubyVM::MJIT to RubyVM::JITTakashi Kokubun2021-01-1334-81/+86
| | | | | | | | because the name "MJIT" is an internal code name, it's inconsistent with --jit while they are related to each other, and I want to discourage future JIT implementation-specific (e.g. MJIT-specific) APIs by this rename. [Feature #17490]
* [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
* Guard callinfoAaron Patterson2021-01-132-2/+15
| | | | | | | | | | | | | | | | Callinfo was being written in to an array and the GC would not see the reference on the stack. `new_insn_send` creates a new callinfo object, then it calls `new_insn_core`. `new_insn_core` allocates a new INSN linked list item, which can end up calling `xmalloc` which will trigger a GC: https://github.com/ruby/ruby/blob/70cd351c7c71c48ee18d7c01e851a89614086f8f/compile.c#L968-L969 Since the callinfo object isn't on the stack, the GC won't see it, and it can get collected. This patch just refactors `new_insn_send` to keep the object on the stack Co-authored-by: John Hawthorn <john@hawthorn.email>
* delete negative cache from the table correctlyKoichi Sasada2021-01-141-9/+19
| | | | | | negative cache entry should be removed from vm->negative_cme_table even if the redefined class has no subclasses.
* only add the trailing nop if the catch table is not break / next / redoAaron Patterson2021-01-131-5/+13
| | | | | | | | We don't need nop padding when the catch tables are only for break / next / redo, so lets avoid them. This eliminates nop padding in many lambdas. Co-authored-by: Alan Wu <XrXr@users.noreply.github.com>
* fix ASAN errorsAaron Patterson2021-01-131-4/+17
|
* * 2021-01-14 [ci skip]git2021-01-141-1/+1
|
* mkmf.rb: remove exts.mk at distcleanNobuyoshi Nakada2021-01-141-1/+1
|
* Moved Fiber methods into core [Feature #17407]Nobuyoshi Nakada2021-01-134-26/+5
|
* Capture to reserved name variables if already defined [Bug #17533]Nobuyoshi Nakada2021-01-132-2/+14
|
* Positional and keyword arguments for timezone are exclusiveNobuyoshi Nakada2021-01-132-3/+14
| | | | [Feature #17485]
* Added `in:` timezone option to `Time.new` [Feature #17485]Nobuyoshi Nakada2021-01-133-87/+70
|
* Make warning values consistent [Bug #17523]Nobuyoshi Nakada2021-01-132-2/+11
| | | | | | They should be affected, as well as `$VERBOSE`, by `-w`/`-W` options, not only in the main script but in scripts loaded by `-r` option too.
* Revert "[Bug #11213] let defined?(super) call respond_to_missing?"Nobuyoshi Nakada2021-01-134-41/+10
| | | | | | This reverts commit fac2498e0299f13dffe4f09a7dd7657fb49bf643 for now, due to [Bug #17509], the breakage in the case `super` is called in `respond_to?`.
* Allow UTC offset without colons per ISO-8601 [Bug #17504]Nobuyoshi Nakada2021-01-132-15/+35
|
* [ruby/ostruct] Bump versionMarc-Andre Lafortune2021-01-131-1/+1
|
* Typo fixes [doc]Marc-Andre Lafortune2021-01-121-10/+10
|
* Fix method protection for modules in the ancestry chain.Marc-Andre Lafortune2021-01-122-1/+43
| | | | [Fixes ruby/ostruct#23]
* Update wording in ractor.md (#4056) [doc]Adam Pogwizd2021-01-121-20/+20
|
* Removed excess stringizations on regstr [Bug #17532]Nobuyoshi Nakada2021-01-131-1/+1
|
* Check stack overflow in recursive glob_helper [Bug #17162]Nobuyoshi Nakada2021-01-133-0/+13
|
* [ruby/bigdecimal] Allow digits=0 in BigDecimal(flt) and Float#to_dKenta Murata2021-01-134-25/+40
| | | | | | | | | | | | | | 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
* Skip test when UDP server is no response.Hiroshi SHIBATA2021-01-131-0/+3
|
* 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-132-22/+101
| | | | https://github.com/ruby/bigdecimal/commit/95c201f2d3
* [ruby/bigdecimal] Fix exception message raised in Kernel.BigDecimalKenta Murata2021-01-132-12/+33
| | | | | https://github.com/ruby/bigdecimal/commit/d163f170a4 https://github.com/ruby/bigdecimal/commit/ff8eeeb064
* * 2021-01-13 [ci skip]git2021-01-131-1/+1
|
* [ruby/reline] Version 0.2.1aycabta2021-01-131-1/+1
| | | | https://github.com/ruby/reline/commit/a3b3c6ee60
* [ruby/reline] Move the cursor correctly when deleting at eolaycabta2021-01-132-0/+21
| | | | | | This fixes ruby/reline#246. https://github.com/ruby/reline/commit/07a73ba601
* [ruby/reline] Handle ed_search_{prev,next}_history in multiline correctlyaycabta2021-01-133-2/+63
| | | | | | | The current line was being handled incorrectly when displaying the hit history, so it has been fixed to be correct. https://github.com/ruby/reline/commit/a3df4343b3
* [ruby/irb] Version 1.3.1aycabta2021-01-131-2/+2
| | | | https://github.com/ruby/irb/commit/c230d08911
* [DOC] Use URI#read instead of URI.open for better compatibilityKazuhiro NISHIYAMA2021-01-121-2/+2
| | | | | | - URI.open is available since 2.5.0, but URI#read is available since 1.8.0. - Fix `open` without `close`. - ref https://github.com/rurema/doctree/pull/2433
* Fix the failing test with XDG_CONFIG_HOMEHiroshi SHIBATA2021-01-121-0/+4
|
* Remove "." and ".." from Dir.glob with FNM_DOTMATCH [Bug #17280]Nobuyoshi Nakada2021-01-126-23/+83
| | | | Co-authored-by: Jeremy Evans <code@jeremyevans.net>
* [ruby/bigdecimal] Fix length calculation in rb_uint64_convert_to_BigDecimalKenta Murata2021-01-121-2/+1
| | | | https://github.com/ruby/bigdecimal/commit/14e53ed7f6
* Convert time component strings to integers more strictlyNobuyoshi Nakada2021-01-122-4/+5
| | | | https://bugs.ruby-lang.org/issues/17485#change-89871
* Show seconds of utc_offset if not zeroNobuyoshi Nakada2021-01-122-1/+12
|
* tool/sync_default_gems.rb: Prevent infinite loop due to unknown optionsKenta Murata2021-01-121-0/+3
|
* * 2021-01-12 [ci skip]git2021-01-121-1/+1
|