summaryrefslogtreecommitdiff
path: root/pod/perlinterp.pod
Commit message (Collapse)AuthorAgeFilesLines
* perlinterp.pod - minor enhancements of the docs about JMPENV_ macrosYves Orton2022-08-301-4/+9
| | | | | | Added a bit more on the levels and return codes. 1 is actually used in the outmost call, or at least there is code to support it. Also added "level" info, since that is used in -Dl.
* perlinterp.pod: rewrite Exception handing sectionDavid Mitchell2022-06-201-101/+183
| | | | | | | I first created this section back in 2005. Some things have changed since then, and my understanding of some details has improved. So this commit is a major rewrite of this section to make it more comprehensible, as well as lots of little pod fixups.
* Use $section names for perlapiKarl Williamson2022-05-111-3/+3
| | | | | | | | | | | | perlapi is divided into different sections depending on the purpose of the documented element. One can specify the heading name in the apidoc description, or one can specify a $heading instead that expands to the heading name when perlapi is generated. It is best to use the latter, to allow the exact real heading name to be tweakable without changing all the references to it. This commit changes the few remaining references to the spelled out heading name to the $heading form.
* replace all instances of PERL_IMPLICIT_CONTEXT with MULTIPLICITYTomasz Konojacki2021-06-091-1/+1
| | | | | | | | | | | | Since the removal of PERL_OBJECT (acfe0abcedaf592fb4b9cb69ce3468308ae99d91) PERL_IMPLICIT_CONTEXT and MULTIPLICITY have been synonymous and they're being used interchangeably. To simplify the code, this commit replaces all instances of PERL_IMPLICIT_CONTEXT with MULTIPLICITY. PERL_IMPLICIT_CONTEXT will stay defined for compatibility with XS modules.
* perlinterp: Fix markupKarl Williamson2020-11-051-1/+1
| | | | FOO is allegoric, not literal
* Note various symbols are documented in perlinterpKarl Williamson2020-11-021-0/+12
|
* Eliminate opASSIGN macro usage from coreDavid Mitchell2019-02-051-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | This macro is defined as (PL_op->op_flags & OPf_STACKED) and indicates, for ops which support it, that the mutator-variant of the op is present (e.g. $x += 1). This macro was mainly used as an arg for the old-style overloading macros (tryAMAGICbin()) which were eliminated several years ago. This commit removes its vestigial usage, and instead tests OPf_STACKED directly at each location, along with adding a comment about the significance of the flag. This removes one item of obfuscation from the overloading code. There is one potentially functional change in this commit: Perl_try_amagic_bin() was sometimes testing for OPf_STACKED without first checking that it had been called with the AMGf_assign flag (which indicates that this op supports a mutator variant). With this commit, it now checks first, so this is theoretically a bug fix. In practice that section of code was never reached without AMGf_assign always being set anyway.
* Remove B::Debug from core distribution.James E Keenan2018-09-251-1/+1
| | | | | | | | | | It continues to exist as a CPAN distribution. Increment $B::Terse::VERSION and $B::Concise::VERSION due to changes in POD. Remove internal links to B::Debug within two .pod files. For: RT #130410
* fix up faulty perl embeddingsZefram2017-12-211-2/+1
| | | | | | | | | | | | Some platform-specific embeddings of perl were misusing the return values from perl_parse() and perl_run(), in some cases causing failure due to exit(0) combined with the recent changes in commit 0301e899536a22752f40481d8a1d141b7a7dda82. Commit d4a50999a5525c2681d59cae5fcd94f94ff897fd partially fixed a Windows embedding. More fully fix that, along with NetWare and OS/2. Even in embeddings with correct logic, stop using a variable named "exitstatus" to hold the result of perl_parse() or perl_run(), to avoid misleading people who copy the code.
* Revert B::Debug removalDagfinn Ilmari Mannsåker2017-07-251-1/+1
| | | | | | | | Per perlpolicy, modules need to be deprecated for at least one stable release before removal. This reverts commits ecfa068aa0dab432bfdef423766b665be127ef77 and 6be75e63260512c636a5bdc72bbf4981a37bad7d.
* Remove B::Debug from core distribution.James E Keenan2017-07-251-1/+1
| | | | | | | | | | It continues to exist as a CPAN distribution. Increment $B::Terse::VERSION due to change in POD. Remove internal links to B::Debug within two .pod files. For: RT #130410
* Revert "perlinterp: Use 'e.g' not 'i.e.' for 'for example'"Karl Williamson2016-08-291-1/+1
| | | | | | This reverts commit ce66b506fa280c2ede0b0d4a3e81b53d0e31cb48. I misread the text. This is an exhaustive list, so "i.e." is proper.
* perlinterp: Use 'e.g' not 'i.e.' for 'for example'Karl Williamson2016-08-291-1/+1
|
* perlinterp.pod: Expand the op tree sectionFather Chrysostomos2016-08-251-5/+84
| | | | | based on things that came up in the thread starting at <20160808225325.79944d95@shy.leonerd.org.uk>.
* perlinterp.pod: typoesFather Chrysostomos2016-08-111-2/+2
|
* Remove "register" declarationsKarl Williamson2012-11-241-1/+1
| | | | | | | This finishes the removal of register declarations started by eb578fdb5569b91c28466a4d1939e381ff6ceaf4. It neglected the ones in function parameter declarations, and didn't include things in dist, ext, and lib, which this does include
* pod/perlinterp.pod: Fix broken linkKarl Williamson2011-05-181-1/+1
|
* Fix bad pod links found by Test::Pod::LinkCheckApocalypse2011-02-151-1/+1
|
* Major revision of perlhack and perlrepositoryDave Rolsky2011-02-041-0/+742
The existing perlhack is huge and takes a long time to get to key information like "how to submit a patch". It also contains a massive amount of (very useful) detail on the Perl interpreter, debugging, portability issues, and so on. Some parts of perlhack are just obsolete. For example, Larry really isn't deeply involved on p5p any more. Meanwhile, perlrepository _also_ contains a lot of useful information on patching Perl, as well as a small git tutorial focused on working with the Perl repository. Taken together, the two documents overlap and conflict with each other. This commit does the following: == Reconcile conflicts and overlaps, remove obsolete information I've separated out distinct pieces of information and organized them into individual pod files. More on that below. I've also removed anything that was obviously out of date. == Make it easier for casual contributors to contribute. The perlhack document now gets to "how to make a patch" very quickly. My assumption is that most contributors to Perl are doing something small, like fixing pod, adding a test, etc. The documentation aimed at people doing more extensive hacking is still there, but it's been moved so that it comes at the end of the document or has been moved to another document. I've made an effort to cross-reference the various documents so that nothing gets lost. == Get to the point The perlhack document had a lot of discussion of general Perl culture. I've trimmed a lot of this and moved some of it so it comes later. == Per-file summary === perlrepository.pod This is gone. Some of its content is now in perlhack. This includes the bits on writing good commit messages, how (and where) to submit a patch, etc. The rest is now called perlgit, and is _only_ a git how-to. === perlhack.pod This has been cut down quite a bit. I changed the opening so it starts with a quick guide to submitting small patches. The document covers bug reporting, the p5p list, a quick how-to on getting the source (including git, gitweb, and rsync), and a lot of general information on patching perl and running tests. Much of this material was already present, but I've done a fair amount of editing for modernization and clarity. Most of the information specific to C-level hacking has been moved to other documents. === perlsource.pod This is a guide to the Perl source tree. Most of the content was extracted from perlhack. I've edited existing content and added details on some parts of the tree that weren't covered. === perlinterp.pod This is a tour of the Perl interpreter source and a walkthrough of how it works that originally lived in perlhack. This has received very little editing. === perlhacktut.pod This is a walkthrough of creating a sample patch to the C core code that originally lived in perlhack. This has received very little editing. === perlhacktips.pod The perlhack document contained a lot of useful information on low-level hacking details like debugging, compilation issues, portability, etc. This has received very little editing. I did remove some bits on ancient stuff related to Tru64 and IRIX.