add PERL_NO_GET_CONTEXT to all dynamic libs#24
Merged
dankogai merged 1 commit intodankogai:masterfrom Oct 19, 2014
bulk88:master
Merged
add PERL_NO_GET_CONTEXT to all dynamic libs#24dankogai merged 1 commit intodankogai:masterfrom bulk88:master
dankogai merged 1 commit intodankogai:masterfrom
bulk88:master
Conversation
PERL_NO_GET_CONTEXT stops every perl function and macro from calling Perl_get_context numerous times in threaded Perl builds. This makes loading time and BOOT: xsub faster by removing many function calls and machine code. Changing UNIMPLEMENTED removed the last reference to Perl_get_context from every shared library in Encode on a threaded build.
dankogai
added a commit
that referenced
this pull request
Oct 19, 2014
add PERL_NO_GET_CONTEXT to all dynamic libs
p5p
pushed a commit
to Perl/perl5
that referenced
this pull request
Oct 24, 2014
[DELTA] $Revision: 2.63 $ $Date: 2014/10/19 07:01:15 $ ! Encode.xs Applied: RT #99264: call_pv() can reallocate the stack https://rt.cpan.org/Ticket/Display.html?id=99264 ! Byte/Makefile.PL CN/Makefile.PL EBCDIC/Makefile.PL Encode.xs JP/Makefile.PL KR/Makefile.PL Symbol/Makefile.PL TW/Makefile.PL bin/enc2xs encengine.c Pulled: add PERL_NO_GET_CONTEXT to all dynamic libs dankogai/p5-encode#24
jsonn
pushed a commit
to jsonn/pkgsrc
that referenced
this pull request
Nov 24, 2014
! t/utf8warnings.t MANIFEST Retouch pull #26 so it works with perl < 5.14 ! Encode.pm + t/utf8warnings.t Pulled: Catch and re-issue utf8 warnings at a higher level dankogai/p5-encode#26 + Encode.xs Pulled: Validate continuations in the incremental UTF-X decoder dankogai/p5-encode#25 ! Encode.xs Applied: RT #99264: call_pv() can reallocate the stack https://rt.cpan.org/Ticket/Display.html?id=99264 ! Byte/Makefile.PL CN/Makefile.PL EBCDIC/Makefile.PL Encode.xs JP/Makefile.PL KR/Makefile.PL Symbol/Makefile.PL TW/Makefile.PL bin/enc2xs encengine.c Pulled: add PERL_NO_GET_CONTEXT to all dynamic libs dankogai/p5-encode#24
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PERL_NO_GET_CONTEXT stops every perl function and macro from calling
Perl_get_context numerous times in threaded Perl builds. This makes
loading time and BOOT: xsub faster by removing many function calls and
machine code. Changing UNIMPLEMENTED removed the last reference to
Perl_get_context from every shared library in Encode on a threaded build.