| Age | Commit message (Collapse) | Author |
|
No objects should ever reference a `T_MOVED` slot. If they do, it's
absolutely a bug. If we kill the process when `T_MOVED` is pushed on
the mark stack it will make it easier to identify which object holds a
reference that hasn't been updated.
|
|
IRB::ReadlineInputMethod#initialize changes them via IRB.set_encoding.
|
|
It caches a path to .irbrc file, which has caused random failure:
```
1) Failure:
TestIRB::ExtendCommand#test_irb_info_multiline [/home/mame/work/ruby/test/irb/test_cmd.rb:49]:
Expected /
Ruby\sversion: .+\n
IRB\sversion:\sirb .+\n
InputMethod:\sReidlineInputMethod\swith\sReline .+ and .+\n
\.irbrc\spath: .+
/x to match "Ruby version: 2.8.0\n" +
"IRB version: irb 1.2.3 (2020-02-15)\n" +
"InputMethod: ReidlineInputMethod with Reline 0.1.4 and /tmp/test_reline_config_155659/.inputrc\n".
```
|
|
|
|
|
|
There is parse.h apart from parse.c these days.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
This file is not under Ruby's license.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
IBM holds their copyrights. Whether they are free software or not is
uncler. But arguably they are, given we have copied them from glibc.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
The file was moved.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
Some files were missing.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
It is no longer obvious what were the original license of so_*
benchmarks, because the original was lost.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
This file includes BSD printf.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
FSF holds its copyright.
Notes:
Merged: https://github.com/ruby/ruby/pull/3082
|
|
Because ruby-mode.el already removed at f03e68edb80dca962290d1fb3a6d49dabdbb911e
|
|
Even if local stack optimization is not used and values are written to
VM stack, the stack pointer itself may not be moved properly. So this
should be always moved on JIT cancellation.
By the way it's hard to write a test for this because if we try to
generate an interrupt, it will be a method call and it consumes the
interrupt by itself on popping a frame.
|
|
Now this one is actually not in use because we override entire leave
definition for JIT.
|
|
|
|
So that `TEST_EXCLUDES` option in common.mk works.
|
|
|
|
|
|
|
|
Trying to debug errors like
http://ci.rvm.jp/results/trunk-mjit@silicon-docker/2921397
http://ci.rvm.jp/results/trunk-mjit@silicon-docker/2894526
|
|
To get rid of calling `getaddrinfo`, which may keep FDs
internally.
|
|
|
|
`getaddrinfo` on macOS seems keeping FDs to query host names
internally.
|
|
|
|
It is more popular than /proc/self/fd.
|
|
As now `Object#===` document is separated from `rb_equal`, this note
no longer makes sense.
|
|
`rb_equal` may be inlined in `case_equal` and actually same code
is generated twice.
|
|
|
|
* Multiple times people have been confused and believed rb_equal()
called #=== but it does not, it calls #==.
* This optimization has a subtle side effect for Float::NAN,
which is now documented.
|
|
* rb_equal() already checks using `obj1 == obj2`.
|
|
|
|
[DOC] [#16829]
|
|
|
|
https://bugs.ruby-lang.org/issues/16830
https://github.com/ruby/uri/commit/b4bf8c1217
|
|
|
|
|
|
We only need to loop `T_MASK` times once. Also, not every value between
0 and `T_MASK` is an actual Ruby type. Before this change, some
integers were being added to the result hash even though they aren't
actual types. This patch omits considered / moved entries that total 0,
cleaning up the result hash and eliminating these "fake types".
|
|
|
|
|
|
|
|
Due to the change in 3893a8dd42fb3bbd71750648c3c0de118955a6ea,
there is no longer a need to put true/false.
|
|
* Folding results should not be empty.
If `OnigCodePointCount(to->n)` were 0, `for` loop using `fn`
wouldn't execute and `ncs` elements are not initialized.
```
enc/unicode.c:557:21: warning: 'ncs[0]' may be used uninitialized in this function [-Wmaybe-uninitialized]
557 | for (i = 0; i < ncs[0]; i++) {
| ~~~^~~
```
* Cast to `enum yytokentype`
Additional enums for scanner events by ripper are not included
in `yytokentype`.
```
ripper.y:7274:28: warning: implicit conversion from 'enum <anonymous>' to 'enum yytokentype' [-Wenum-conversion]
```
|
|
For some reason 0776198486 didn't fail
https://rubyci.org/logs/rubyci.s3.amazonaws.com/solaris10-gcc/ruby-master/log/20200503T230004Z.log.html.gz
even while it was before 9aa5fe1bf8.
Anyway, there's no need to keep the change anymore.
|
|
I think 9aa5fe1bf89db8cd215b24d8ddfb668714681b83 helps this issue too.
|
|
MinGW test_jit fails with no error message. Perhaps linker flags should
not be passed when compilation is happening.
Anyway splitting these stages doesn't matter for performance. So let me
just split it to fix the issue. Probably this helps Solaris's issue too.
|
|
using -Winvalid-pch
https://rubyci.org/logs/rubyci.s3.amazonaws.com/solaris10-gcc/ruby-master/log/20200501T170004Z.fail.html.gz
|
|
It has caused errors by ENOSPC like
https://travis-ci.org/github/ruby/ruby/jobs/682520961 too often.
I cleared all cache of Travis yesterday, but it didn't help it. Until
somebody figures out how to fix it, let me exclude it from CI status
reports to avoid false alerts.
|
|
An expression using `static const` value seems not considered as
`static const` by Visual C.
|