| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
|
|
|
|
| |
The code for binaryish floating point literals, on builds where
we're not confident of being able to fit a significand into an
integer type, had built-in knowledge that the radix is 16, after
the radix point. This gave erroneous values for octal and binary
literals on those builds. This was shown up by the tests added in
commit 58be57636a42d6c6fd404c48c4e1cb87870182df. Correct it to use the
actual radix.
|
|
|
|
|
|
|
| |
All hexadecimal digits were being permitted in octal and binary floating
point literals. (That octal and binary literals are permitted at all
might be an accidental result of permitting hexadecimal?) Restrict which
digits are permitted, in accordance with the radix.
|
|
|
|
|
|
| |
Lengthy binaryish floating point literals used to perform illegal bit
shifts. Ignore digits that are past the end of the significand at an
earlier stage to avoid this. Code fix by Tony C. Fixes [perl #131894].
|
|
|
|
|
| |
[perl #131894] found some negative-exponent shifting going on here.
Make the illegality more accessible by asserting.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This was brought up in perl #132485.
Because ‘Bad name after...’ is a croak, it suppresses the more helpful
hints like ‘Might be a runaway multi-line string’, in such cases as:
use Moose;
has erdef => (
isa => 'Int',
is => 'ro,
default => sub { 1 }
);
has cxxc => (
isa => 'Int',
is => 'ro',
default => sub { 1 }
);
We can allay this infelicity by emitting the ‘Missing operator before
bareword’ before the Bad name croak, so in the example above we
end up with:
Bareword found where operator expected at - line 10, near "isa => 'Int"
(Might be a runaway multi-line '' string starting on line 5)
(Do you need to predeclare isa?)
Bad name after Int' at - line 10.
rather than just:
Bad name after Int' at - line 10.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Use the inline function that accomplishes the same thing as this
hand-rolled code. The inline function should generate the same thing on
ASCII platforms, but be faster on EBCDIC ones.
|
|
|
|
|
|
| |
$@ could be clobbered by source filters, screwing up the reporting of
errors in the filtered source. Prevent this by localising $@ around
each call to a source filter. Fixes [perl #38920].
|
|
|
|
|
|
| |
Reduce Newxz() to Newx() where all relevant parts of the memory are
being explicitly initialised, and don't explicitly zero memory that was
already zeroed. [perl #36078]
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Commit f5727a1c71878a34f6255eb1a506c0b21af7d36f tried to make yada-yada
be parsed consistently as a term expression, but actually things are
more complicated than that. The tokeniser didn't accept yada-yada in
the right contexts to make it usable as an expression, and changing
that would require decisions on resolving ambiguities between yada-yada
and flip-flop. It's also documented as being a statement rather than
an expression, though with some incorrect information about ambiguities.
Overall it looks more like the intent was for yada-yada to be a statement.
This commit makes it grammatically treated as such, and also fixes up
the dubious parts of the documentation. [perl #132150]
|
| |
|
|
|
|
|
|
|
|
|
|
| |
These undocumented functions require the destination buffer to have the
worst case size. However that size (previously listed as 3/2 * input)
is wrong for EBCDIC. Correct the comments, and the single use of these
in core.
These functions do not have a way to avoid overflowing, which strikes me
as wrong.
|
|
|
|
|
|
|
|
|
|
|
| |
The previous strchr/memchr changes inadvertently broke the error message
for perl -e '"'. Instead of
Can't find string terminator '"' anywhere before EOF
it became
Can't find string terminator """ anywhere before EOF
|
|
|
|
|
|
|
|
| |
This was a replacement of strchr(), so should not have used the
find-right-most memrchr.
This was spotted by Christian Hansen. I don't know what the
implications are, but thought I should get a fix in immediately.
|
|
|
|
| |
compilation broken on darwin using clang
|
|
|
|
|
| |
This allows things to work properly in the face of embedded NULs.
See the branch merge message for more information.
|
| |
|
|
|
|
|
| |
This will make it possible to fix to handle embedded NULs in the next
commits.
|
|
|
|
|
|
|
| |
This allows \x and \o to work properly in the face of embedded NULs.
A limit parameter is added to each function, and that is passed to
memchr (which replaces strchr). See the branch merge message for more
information.
|
|
|
|
|
|
| |
This macro is like memBEGINs(), but the 'P' signifies we want a proper
substring, meaning that the 2nd string parameter must not be the entire
first parameter.
|
|
|
|
|
|
| |
The latter is generally faster when the length is already known.
This commit also changes a few hard-coded numbers to use sizeof().
|
|
|
|
|
| |
The latter is much clearer as to what's going on, and the programmer and
program reader don't have to count characters.
|
|
|
|
|
|
|
|
|
|
| |
Where the length is known, we can use these functions which relieve
the programmer and the program reader from having to count characters.
The memFOO functions should also be slightly faster than the strFOO
equivalents.
In some instances in this commit, hard coded numbers are used. These
come from the 'case' statement values that apply to them.
|
|
|
|
|
|
|
|
|
|
| |
The original names are confusing.
See thread beginning with
http://nntp.perl.org/group/perl.perl5.porters/244335
The two macros are mapped into just that one, complementing the result
for the few cases where strNEs was used.
|
|
|
|
|
|
| |
[perl #132158] describes a situation in which a weird kind of unterminated
format caused the parser to crash. Add some assertions that catch the
messed up parser state before it actually crashes.
|
| |
|
|
|
|
|
|
| |
This code is unreachable because the code above makes sure that the
variable can't be larger than PL_bufend, and the code is only executed
if it is larger.
|
|
|
|
|
| |
Fix up some white space, including outdenting a block that was doubly
indented
|
|
|
|
|
| |
get_and_check_backslash_N_name() failed to free its working SV if
the name was empty.
|
|
|
|
|
|
| |
A range like \N{}-0 eventually results in compilation failing, but
before that, get_and_check_backslash_N_name() attempts to treat
the memory before the empty output of \N{} as a character.
|
| |
|
|
|
|
|
|
| |
SvLEN was set without using the generic macro SvLEN_set.
Use it in three extra locations, and also use SvCUR_set
instead of SvCUR.
|
|
|
|
|
|
|
|
|
| |
Most of the DEBUG_?_TEST calls are already protected
by one '#idef DEBUGGING' check, but noticed a few of them
which were not protected in sv.c and toke.c
We should avoid these extra 'if' statements if perl
is not compiled with debug option: -DDEBUGGING.
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The yacc grammar introduced in d3d9da4a7 uses ASSIGNOP to
represent the '=' used to introduce default values in subroutine
signatures, unfortunately the parser returns ASSIGNOP for non-simple
assignments, which allowed:
sub foo ($x += 1) { ... }
to default $x to 1.
Modify yylex to accept only the simple assignment operator after a
subroutine parameter.
I'm not especially happy with the error recovery here.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
The subref-in-stash optimisation was causing the package name to be
dropped in prototype warnings triggered by the :prototype() attribute
syntax, since the GV containing the stash name and the sub name did
not exist because of the optimisation.
Commit 2eaf799e, which introduced said optimisation, simply did not
include the package name in validate_proto’s ‘name’ parameter, but
just the sub name. This commit makes it tell validate_proto to use
the current stash name.
|
|
|
|
|
| |
I need this in order to fix bug #131883. Since it has a bit of
churn, I’m putting it in a separate commit.
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The:
d = skipspace(d);
can reallocate linestr in the test case, invalidating s. This would
end up in PL_bufptr from the embedded (PL_bufptr = s) in the TOKEN()
macro.
Assigning s to PL_bufptr and restoring s from PL_bufptr allows
lex_next_chunk() to adjust the pointer to the reallocated buffer.
|
|
|
|
| |
Trying to get tests passing after making diag.t smarter....
|
|
|
|
|
|
|
| |
In the test case, scan_ident() ends up fetching another line
(updating PL_linestart), and since in this case we don't
successfully parse ${identifier} s (and PL_bufptr) end up being
before PL_linestart.
|
|
|
|
|
|
|
|
|
|
|
| |
Previously the "1e-" in "1e--5" would be treated as "1", but consumed
the "e-".
This wasn't an issue for hex floats.
I considered (and implemented) croaking instead, but this was
inconsistent with the behaviour for hex floats, which only reach this
code if a full hex float has been parsed.
|