aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* [ruby/fiddle] test: use env HashSutou Kouhei2019-10-241-10/+13
| | | | https://github.com/ruby/fiddle/commit/a01a962342
* [ruby/fiddle] Fix a failing test (#13)Kenta Murata2019-10-241-0/+11
| | | | | | | | | | | | | | | | | | | | | * Fix a failing test This commit fixes the following failure: ``` 1) Failure: Fiddle::TestImport#test_no_message_with_debug [/Users/mrkn/src/github.com/ruby/fiddle/test/fiddle/test_import.rb:152]: 1. [2/2] Assertion for "stderr" | <[]> expected but was | <["Exception `NameError' at /Users/mrkn/.rbenv/versions/2.5.1/lib/ruby/2.5.0/fiddle/import.rb:157 - uninitialized constant Fiddle::Function::STDCALL"]>. ``` * Stop using Bundler.with_clean_env * Clear existing Ruby environment variables on test_no_message_with_debug https://github.com/ruby/fiddle/commit/13133ddec8
* [ruby/fiddle] Fiddle::Function must maintain a reference to the closureAaron Patterson2019-10-241-0/+2
| | | | | | | | | | | | If the first parameter to Fiddle::Function is a closure object (rather than an interger), `rb_Integer` will cast it to an integer but not maintain a reference to the closure. Then if the closure gets GC'd, we have a segv. This commit keeps a reference to the original parameter to initialize so that the object will not be GC'd. Fixes: https://bugs.ruby-lang.org/issues/13286 https://github.com/ruby/fiddle/commit/0fc697bbc5
* Temporarily skipped with upstream changes of Date library.Hiroshi SHIBATA2019-10-242-5/+9
|
* [ruby/date] Use Gemfile instead of ↵Hiroshi SHIBATA2019-10-241-2/+0
| | | | | | Gem::Specification#add_development_dependency. https://github.com/ruby/date/commit/13c94362c2
* [ruby/date] Update docszverok2019-10-241-2/+2
| | | | https://github.com/ruby/date/commit/8c02586a98
* [ruby/date] Simplify #inspectzverok2019-10-242-5/+4
| | | | https://github.com/ruby/date/commit/af01edd7d8
* [ruby/date] Remove taint supportJeremy Evans2019-10-243-38/+1
| | | | | | | | Ruby 2.7 deprecates taint and it no longer has an effect. The lack of taint support should not cause a problem in previous versions. https://github.com/ruby/date/commit/519470dc3b
* [ruby/date] Support -Float::INFINITY...date rangesJeremy Evans2019-10-242-0/+17
| | | | | | Fixes Ruby Bug 12961 https://github.com/ruby/date/commit/7f533c2552
* [ruby/date] Check for numeric arguments in constructorsJeremy Evans2019-10-242-0/+99
| | | | | | | | | | | | | | | Previously, the type of these arguments were not checked, leading to NoMethodErrors in some cases, and TypeErrors in other cases, but not showing what field was having the problems. This change makes it so the field with the problem is included in the error message. For the valid_*? methods, this changes them to return false if one of the arguments that should be numeric is not. Fixes Ruby Bug 11935 Fixes Ruby Misc 15298 https://github.com/ruby/date/commit/a2f4b665f8
* [ruby/date] Make julian dates roundtrip through to_time.to_dateJeremy Evans2019-10-242-5/+30
| | | | | | | | | | | | | | | Previously, julian dates would not round trip through to_time.to_date, because Time is always considered gregorian. This converts the Date instance from julian to gregorian before converting to Time, ensuring that an equal date object will be returned if converting that Time back to Date. This does result in julian Date objects showing different day values if converting to Time. Fixes Ruby Bug 8428. https://github.com/ruby/date/commit/d8df64555e
* Use CPDEBUG for debug codeAlan Wu2019-10-241-2/+2
|
* Combine call info and cache to speed up method invocationAlan Wu2019-10-2417-265/+323
| | | | | | | | | | | | | | | | | | | | | | | | | | To perform a regular method call, the VM needs two structs, `rb_call_info` and `rb_call_cache`. At the moment, we allocate these two structures in separate buffers. In the worst case, the CPU needs to read 4 cache lines to complete a method call. Putting the two structures together reduces the maximum number of cache line reads to 2. Combining the structures also saves 8 bytes per call site as the current layout uses separate two pointers for the call info and the call cache. This saves about 2 MiB on Discourse. This change improves the Optcarrot benchmark at least 3%. For more details, see attached bugs.ruby-lang.org ticket. Complications: - A new instruction attribute `comptime_sp_inc` is introduced to calculate SP increase at compile time without using call caches. At compile time, a `TS_CALLDATA` operand points to a call info struct, but at runtime, the same operand points to a call data struct. Instruction that explicitly define `sp_inc` also need to define `comptime_sp_inc`. - MJIT code for copying call cache becomes slightly more complicated. - This changes the bytecode format, which might break existing tools. [Misc #16258]
* show "transferred" attribute on Fiber#to_sKoichi Sasada2019-10-241-4/+10
| | | | | | | If a fiber is invoked with transfer method (such as "f.transfer"), then the invoked fiber ("f") is labeled as "transferred" and this fiber can not be invoked with Fiber#resume. This patch adds transferred attribute for "Fiber#to_s" (and inspect).
* Revert "Fix Fiber#transfer"Koichi Sasada2019-10-243-18/+10
| | | | | | This reverts commit fa8ac91e957a076f6df1adaecad7896817138009. Previous behavior is intentional.
* Revert "Fixed the require path for e2mmap version file."Hiroshi SHIBATA2019-10-241-1/+1
| | | | This reverts commit ff953a003e03f5f070112ececefab4c07ff4cb0e.
* Fixed the require path for e2mmap version file.Hiroshi SHIBATA2019-10-241-1/+1
|
* Fixed sync path of e2mmap structure for gemspec.Hiroshi SHIBATA2019-10-241-1/+1
|
* include/ruby/backward/cxxanyargs.hpp: call `va_end` before returnYusuke Endoh2019-10-241-1/+2
| | | | Coverity Scan complains it.
* hash.c: Do not use Unicode double-quotesYusuke Endoh2019-10-241-1/+1
| | | | | | | | | | | | | | | | It made rdoc fail. https://rubyci.org/logs/rubyci.s3.amazonaws.com/ubuntu1804/ruby-master/log/20191023T183005Z.fail.html.gz ``` RDoc is not a full Ruby parser and will fail when fed invalid ruby programs. The internal error was: (ArgumentError) invalid byte sequence in US-ASCII uh-oh! RDoc had a problem: invalid byte sequence in US-ASCII ```
* More rdoc for ENV#[] and ENV#fetchBurdetteLamar2019-10-231-13/+30
|
* Treat only left alt key as meta-key on Windowsaycabta2019-10-241-2/+3
| | | | | | On German keyboard, right alt key acts as like shift key. Ex. right-alt-8 is just "[". This input doesn't have meta-key statement.
* Added refresh-gemsNobuyoshi Nakada2019-10-242-1/+10
| | | | Refreshes bundled gems to the latest version, and extracts them.
* Updated minitest to 5.12.2Nobuyoshi Nakada2019-10-241-1/+1
|
* Support forced enter insertion by Ctrl+Enter on Windowsaycabta2019-10-241-2/+5
|
* * 2019-10-24 [ci skip]git2019-10-241-1/+1
|
* Suppress duplicated "require 'reline'"aycabta2019-10-231-1/+1
|
* Limit strict RUBY_METHOD_FUNC in C++Nobuyoshi Nakada2019-10-231-1/+1
| | | | | Limit strict function signature check with RUBY_METHOD_FUNC in C++ to bundled libraries only. [Bug #16271]
* Fix indent...aycabta2019-10-231-1/+1
|
* name2ctype.h depends on also Emoji dataNobuyoshi Nakada2019-10-231-1/+2
|
* Add gem names [ci skip]Kazuhiro NISHIYAMA2019-10-231-5/+5
|
* Trivial fixes [ci skip]Kazuhiro NISHIYAMA2019-10-231-7/+7
|
* Fix typos [ci skip]Kazuhiro NISHIYAMA2019-10-232-3/+3
|
* Use cppflags to pass preprocessor optionsNobuyoshi Nakada2019-10-232-2/+4
|
* Use dedicated assertion methods for warning and syntax errorNobuyoshi Nakada2019-10-231-23/+15
|
* Catch syntax error even if fatalNobuyoshi Nakada2019-10-231-0/+2
|
* Fix the exception when CPDEBUGNobuyoshi Nakada2019-10-231-1/+4
|
* Relaxed tests for CPDEBUG modeNobuyoshi Nakada2019-10-232-4/+6
|
* * 2019-10-23 [ci skip]git2019-10-231-1/+1
|
* Provides ruby2_keywordsNobuyoshi Nakada2019-10-231-0/+2
| | | | | So that requiring it succeeds even if that forward compatibility gem is not installed.
* Benchmark for [Feature #16155]Nobuyoshi Nakada2019-10-221-0/+14
|
* tool/release.sh uses ruby-actions' resultNARUSE, Yui2019-10-221-33/+14
| | | | https://github.com/ruby/actions
* Move format-release to tool and fix bugsNARUSE, Yui2019-10-222-224/+19
|
* Ignore timestamp file for the expected failure [ci skip]Nobuyoshi Nakada2019-10-221-0/+3
|
* Add a tool to generate a patch for www from logNARUSE, Yui2019-10-221-0/+197
| | | | | | Receives an output of `tool/make-snapshot` and genarete * Markdown format for release note * a patch for branches.yml, downloads.yml, and releases.yml of w.r-l.o
* make-snapshot: Regexp#match raises on nil nowNobuyoshi Nakada2019-10-221-1/+1
|
* NEWS: add a URL about the performance improvement of CGI.escapeHTMLYusuke Endoh2019-10-221-0/+1
|
* NEWS: Fix the example of Lazy#eagerv2_7_0_preview2Yusuke Endoh2019-10-221-7/+3
|
* NEWS: add an example for Lazy#eagerYusuke Endoh2019-10-221-0/+9
|
* NEWS: Make Net::FTP#features and #option more informativeYusuke Endoh2019-10-221-1/+2
|