summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add Thread.each_caller_locationJeremy Evans2022-02-172-5/+66
| | | | | | | | This method takes a block and yields Thread::Backtrace::Location objects to the block. It does not take arguments, and always starts at the default frame that caller_locations would start at. Implements [Feature #16663]
* Do not search for commands with double tool prefixes [Bug #18504]Nobuyoshi Nakada2022-02-171-19/+23
| | | | | | The `CC` found by `AC_CHECK_TOOL` is prefixed by the host triplet when cross compiling. To search for commands with `AC_CHECK_TOOL` based on that `CC` means to search also doubly prefixed names.
* Refine the load error messageNobuyoshi Nakada2022-02-171-5/+27
| | | | | Show the linked ruby library name when failed to load extension built against different ruby library.
* Check running macOS version at runtimeNobuyoshi Nakada2022-02-171-8/+27
|
* Reuse `-v` option result as `target_platform`Nobuyoshi Nakada2022-02-171-6/+5
| | | | | | Backticks method invokes `/bin/sh` when the command contains quotes, and `sh` clears some environment variables set in runruby.rb to search the built shared library.
* exclude name must be Regexp or SymbolKazuhiro NISHIYAMA2022-02-171-1/+1
| | | | https://github.com/ruby/ruby/blob/fdf0f8d81487560f5837dc7e3888a96f7c2b4ec9/tool/lib/test/unit.rb#L1273-L1290
* btest-ruby OPTS=-v should disable quietKoichi Sasada2022-02-171-0/+2
| | | | | `make btest-ruby` is run with -q (quiet) option and -v should remove -q option.
* Hide patchlevel from release buildHiroshi SHIBATA2022-02-171-1/+1
|
* yjit_codegen.c: Prevent a possible out-of-bound accessYusuke Endoh2022-02-171-1/+1
| | | | | | | | | The code attempts to read `C_ARG_REGS[leaf_builtin->argc + 1]`, and the size of `C_ARG_REGS` is `NUM_C_ARG_REGS`. So, the guard condition must be `leaf_builtin->argc + 1 + 1 <= NUM_C_ARG_REGS`. This change fixes the off-by-one error. This issue was found by Coverity Scan.
* * 2022-02-17 [ci skip]git2022-02-171-1/+1
|
* Fix -Wsign-compare when -DRUBY_DEBUG=1Alan Wu2022-02-161-1/+1
| | | Sizes for darray are size_t now. CC @peterzhu2118
* Change feature_index from fake Array to darrayPeter Zhu2022-02-162-55/+89
| | | | | | | | Using a fake (malloc) RArray is not friendly for the garbage collector. Fake RArray does not have a heap page, so it causes Variable Width Allocation to crash when we try to implement it on Arrays. This commit changes feature_index from a RArray to a darray.
* Change darray size to size_t and add functions that use GC mallocPeter Zhu2022-02-166-63/+92
| | | | | | | Changes size and capacity of darray to size_t to support more elements. Adds functions to darray that use GC allocation functions.
* Parenthesize a macro expressionNobuyoshi Nakada2022-02-161-1/+1
| | | | The modulo in `rb_yjit_code_page_alloc` seems interpreted wrongly.
* fix parallel test timeout retryingKoichi Sasada2022-02-161-1/+13
| | | | | | | | | On the parallel test, workers can be killed because of timeout and the information for the retrying can be inconsistent. This patch will skip if the inconsistency is found and report as an error. http://ci.rvm.jp/results/trunk-asserts@phosphorus-docker/3834082
* lib/securerandom.rb: Fix the check of availability of Random.urandomYusuke Endoh2022-02-161-4/+5
| | | | | Random.urandom raises a RuntimeError if it is unavailable. [Bug #13885]
* * 2022-02-16 [ci skip]git2022-02-161-1/+1
|
* `wmap#each` should check liveness of keysKoichi Sasada2022-02-161-20/+42
| | | | | `ObjectSpace::WeakMap#each*` should check key's liveness. fix [Bug #18586]
* Use RARRAY_SHARED_ROOT_FLAG for checking re-enterPeter Zhu2022-02-141-3/+3
| | | | | RARRAY_SHARED_ROOT_FLAG is defined as FL_USER5, but we should use RARRAY_SHARED_ROOT_FLAG instead of depending on that they're equal.
* fix GC event synchronizationKoichi Sasada2022-02-141-14/+22
| | | | | | | | | | | | | | (1) gc_verify_internal_consistency() use barrier locking for consistency while `during_gc == true` at the end of the sweep on `RGENGC_CHECK_MODE >= 2`. (2) `rb_objspace_reachable_objects_from()` is called without VM synchronization and it checks `during_gc != true`. So (1) and (2) causes BUG because of `during_gc == true`. To prevent this error, wait for VM barrier on `during_gc == false` and introduce VM locking on `rb_objspace_reachable_objects_from()`. http://ci.rvm.jp/results/trunk-asserts@phosphorus-docker/3830088
* * 2022-02-14 [ci skip]git2022-02-141-1/+1
|
* extend timeout for mjitKoichi Sasada2022-02-141-1/+1
| | | | | 1 seconeds is not enough on an specific (busy) machine w/ mjit. http://ci.rvm.jp/results/trunk-mjit@phosphorus-docker/3830178
* [MSWin] Install OpenSSL with vcpkgNobuyoshi Nakada2022-02-131-3/+4
|
* Exclude TestThread#test_signal_at_join on FreeBSD 13 for now [ci skip]Nobuyoshi Nakada2022-02-131-0/+3
|
* * 2022-02-13 [ci skip]git2022-02-131-1/+1
|
* [DOC] Fix a typo in `Integer#chr` exampleKoichi ITO2022-02-131-1/+1
| | | | | | | | | | | | | | The current example raises the following error. ```ruby 0..chr # => undefined local variable or method `chr' for main:Object (NameError) ``` This PR updates the example to produce the expected behavior. ```ruby 0.chr # => "\x00" ```
* [MSWin] Remove stale configuration check [ci skip]Nobuyoshi Nakada2022-02-121-7/+0
| | | | PSAPI library has not been used since d66c5768caaee16a0c2c2c641185.
* [ruby/rdoc] Load YAML library for each testNobuyoshi Nakada2022-02-121-0/+4
| | | | https://github.com/ruby/rdoc/commit/a93e1bcd68
* [ruby/rdoc] Dump plain objects as `RDoc::Options`Nobuyoshi Nakada2022-02-124-33/+59
| | | | | | So that the generated `.rdoc_options` file is loadable. https://github.com/ruby/rdoc/commit/6cf6e1647b
* [ruby/rdoc] Fix a test method nameNobuyoshi Nakada2022-02-121-1/+1
| | | | https://github.com/ruby/rdoc/commit/8166b84cf3
* [ruby/rdoc] Update generated filesNobuyoshi Nakada2022-02-123-10/+26
|
* [ruby/rdoc] Relative loading for easier development ↵Ulysse Buonomo2022-02-1241-166/+165
| | | | | | | | | | | | | | | (https://github.com/ruby/rdoc/pull/821) This patch makes sure we only load relative code. Hence when coding or testing rdoc, we'll be sure to always be using the correct code. Discussion started at https://github.com/ruby/rdoc/pull/817. Signed-off-by: Ulysse Buonomo <buonomo.ulysse@gmail.com> https://github.com/ruby/rdoc/commit/aa41bd48eb Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
* [ruby/rdoc] Optimize RawLine by using a regexp instead of negative ↵Yusuke Endoh2022-02-121-37/+8
| | | | | | | | | | | | look-ahead rule This improves the performance in some cases. `rdoc .../gems/sinatra-2.1.0/README.md` takes 10.5 sec. before this change, and 7.1 sec. after this change. `make rdoc` of ruby/ruby takes 19.3 sec. before this change, 18.1 sec. after this change. https://github.com/ruby/rdoc/commit/7cf8281e3e
* [DOC] Remove unnecessary `rdoc-ref:` schemesNobuyoshi Nakada2022-02-121-11/+11
|
* [DOC] Simplify operator method referencesNobuyoshi Nakada2022-02-1210-85/+78
|
* Reuse operation rule for operation2S-H-GAMELINKS2022-02-121-3/+1
|
* Reuse p_kwnorest rule for f_no_kwargS-H-GAMELINKS2022-02-121-1/+1
|
* Fix TypoSteven Nunez2022-02-121-1/+1
|
* * 2022-02-12 [ci skip]git2022-02-121-1/+1
|
* test/ruby/test_exception.rb: prevent "assigned but unused variable"Yusuke Endoh2022-02-121-1/+1
|
* [rubygems/rubygems] Add clarification for bundle-config "with" optionIlia Zenkevich2022-02-1126-27/+27
| | | | https://github.com/rubygems/rubygems/commit/666f3cc724
* [rubygems/rubygems] Fix corrupted lockfile when using `gemspec` and multiple ↵David Rodríguez2022-02-113-3/+80
| | | | | | sources https://github.com/rubygems/rubygems/commit/9712262d90
* * 2022-02-11 [ci skip]git2022-02-111-1/+1
|
* [DOC] Add `.rdoc_options` fileNobuyoshi Nakada2022-02-111-0/+2
| | | | | Set `--page-dir` option so that direct rdoc call is consistent with `make html`.
* Free cached mark stack chunks when freeing objspacePeter Zhu2022-02-101-2/+19
| | | | Cached mark stack chunks should also be freed when freeing objspace.
* Update default gems list at f07a2613e3f14ab713bc5ab8854110 [ci skip]git2022-02-101-0/+1
|
* Support directory layout of ruby/ruby repositoryHiroshi SHIBATA2022-02-101-3/+11
|
* [ruby/ipaddr] Bump version to 1.2.4Hiroshi SHIBATA2022-02-101-1/+1
| | | | https://github.com/ruby/ipaddr/commit/6edf6ee6c3
* [ruby/ipaddr] Fix exception calling `to_range' after `freeze'Espartaco Palma2022-02-102-1/+24
| | | | https://github.com/ruby/ipaddr/commit/77fe1fca0a
* [ruby/ipaddr] Ipaddr#native must also coerce `@mask_addr`Jean Boussier2022-02-102-0/+8
| | | | | | | | | | | Before it would be left as an IPv6 mask causing `to_range` to fail. ``` >> IPAddr.new("::2").native.to_range /opt/rubies/3.0.3/lib/ruby/3.0.0/ipaddr.rb:479:in `set': invalid address (IPAddr::InvalidAddressError) ``` https://github.com/ruby/ipaddr/commit/af485192f3