forked from ruby/ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ruby#1050 by Kazuho Oku <[email protected]>. This pull request has the following commits. * gc.c: reduce # of args to 6 (max. of register args on x86-64) so that the `newobj_of_slowpass` can be called via TCO. * gc.c (newobj_of), string.c (str_duplicate): for performance, the hot functions must be inlined. * gc.c: for performance, preceding arguments of `.*newobj_of.*` must be same, so that the arg registers can be reused in case of TCO. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52099 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
Showing
3 changed files
with
25 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
Sat Oct 10 15:28:45 2015 Koichi Sasada <[email protected]> | ||
|
||
* import a github pull request | ||
https://github.com/ruby/ruby/pull/1050 | ||
by Kazuho Oku <[email protected]>. | ||
|
||
This pull request has the following commits. | ||
|
||
* gc.c: reduce # of args to 6 (max. of register args on x86-64) so | ||
that the `newobj_of_slowpass` can be called via TCO. | ||
|
||
* gc.c (newobj_of), string.c (str_duplicate): for performance, | ||
the hot functions must be inlined. | ||
|
||
* gc.c: for performance, preceding arguments of `.*newobj_of.*` | ||
must be same, so that the arg registers can be reused in case of | ||
TCO. | ||
|
||
Sat Oct 10 08:52:21 2015 Nobuyoshi Nakada <[email protected]> | ||
|
||
* ext/socket/udpsocket.c (udp_connect, udp_bind, udp_send): fix | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters