summaryrefslogtreecommitdiff
path: root/opcode.pl
Commit message (Collapse)AuthorAgeFilesLines
* C++: Solaris CC now compiles "perl"Jarkko Hietaniemi2006-09-111-2/+2
| | | | | Message-ID: <4502B398.6060505@iki.fi> p4raw-id: //depot/perl@28814
* Merging pp_bit_or and pp_bit_xor shrinks the object code by about .7K.Nicholas Clark2006-02-071-0/+1
| | | | | The overloading tests are not free. p4raw-id: //depot/perl@27126
* Allow bareword file handle as argument to chdir().Gisle Aas2006-02-071-1/+2
| | | | | | This copies the mechanism used by truncate(). Fixes bug #38457. p4raw-id: //depot/perl@27125
* All the trancendental unary operators can be merged into PP_sinNicholas Clark2006-02-071-0/+1
| | | | | (cos, exp, log, sqrt) p4raw-id: //depot/perl@27124
* pp_pop can be implemented by pp_shift.Nicholas Clark2006-02-071-0/+1
| | | p4raw-id: //depot/perl@27121
* pp_hex can be implemented trivially by pp_oct, making pp_hex a mathom.Nicholas Clark2006-02-071-0/+1
| | | p4raw-id: //depot/perl@27119
* Merge pp_index and pp_rindex - we have another mathom.Nicholas Clark2006-02-071-0/+1
| | | p4raw-id: //depot/perl@27118
* Update the copyright years in the generated files, and nostdio.hNicholas Clark2006-01-081-1/+2
| | | p4raw-id: //depot/perl@26736
* sprinkle dVARJarkko Hietaniemi2006-01-061-0/+10
| | | | | Message-ID: <43BE7C4D.1010302@gmail.com> p4raw-id: //depot/perl@26675
* Happy New Year. (It's not just embed.pl).Nicholas Clark2006-01-021-1/+1
| | | p4raw-id: //depot/perl@26572
* latest switch/say/~~Robin Houston2005-12-191-0/+11
| | | | | Message-Id: <20051217204431.GB28940@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@26400
* Disable constant folding of sprintfGisle Aas2005-12-011-1/+1
| | | | | Message-ID: <lr8xv56p0d.fsf_-_@caliper.activestate.com> p4raw-id: //depot/perl@26236
* Merge pp_slt, pp_sgt and pp_sge into pp_sle. (The most commonly usedNicholas Clark2005-11-071-0/+1
| | | | | of the 4. Not that any are that popular.) p4raw-id: //depot/perl@26039
* The rarely used lcfirst and ucfirst share almost all their code.Nicholas Clark2005-11-071-0/+1
| | | | | Merge the two as pp_ucfirst. p4raw-id: //depot/perl@26035
* Typos in opcode.pl this time.Steve Peters2005-11-051-2/+2
| | | p4raw-id: //depot/perl@26008
* Merge pp_andassign, pp_orassign, and pp_dorassign into pp_and,Steve Peters2005-11-051-1/+3
| | | | | pp_or, and pp_defined, respectively. p4raw-id: //depot/perl@26007
* I barely knew ya pp_dor. Merged into pp_defined from whence you came.Steve Peters2005-11-041-0/+1
| | | | | | This change has also caused pp_defined to be promoted to being a hot op. p4raw-id: //depot/perl@26004
* pp_semop can fit within Perl_pp_shmwrite().Nicholas Clark2005-11-041-2/+1
| | | p4raw-id: //depot/perl@26000
* The remaining special logic in pp_syswrite can be moved into pp_send,Nicholas Clark2005-11-041-0/+1
| | | | | which is actually already 50% syswrite. p4raw-id: //depot/perl@25999
* Merge msgsnd, msgrcv with Perl_pp_shmwrite().Nicholas Clark2005-11-041-0/+1
| | | | | | "Perfection is achieved not when there's nothing more to add, but when there's nothing left to remove" (Antoine de Saint-Exupéry) p4raw-id: //depot/perl@25990
* ftrwrite, ftrexec, fteread, ftewrite and fteexec can all be mergedNicholas Clark2005-11-041-0/+2
| | | | | with Perl_pp_ftrread(). p4raw-id: //depot/perl@25986
* Perl_pp_symlink and Perl_pp_link can be merged. The diff looks evil,Nicholas Clark2005-11-031-0/+1
| | | | | but the actual finished code is not as bad as it seems. p4raw-id: //depot/perl@25972
* unlink chmod utime kill can be merged into Perl_pp_chown().Nicholas Clark2005-11-021-2/+2
| | | p4raw-id: //depot/perl@25964
* Move ftsuid ftsgid ftsvtx into Perl_pp_ftrowned.Nicholas Clark2005-11-021-1/+2
| | | p4raw-id: //depot/perl@25962
* Merge ftzero ftsock ftchr ftblk ftfile ftdir ftpipe intoNicholas Clark2005-11-021-1/+2
| | | | | Perl_pp_ftrowned p4raw-id: //depot/perl@25961
* Merge ftsize ftmtime ftatime ftctime into Perl_pp_ftisNicholas Clark2005-11-021-0/+2
| | | p4raw-id: //depot/perl@25958
* sort/multicall patchRobin Houston2005-11-021-1/+1
| | | | | Message-ID: <20051029203307.GA8869@rpc142.cs.man.ac.uk> p4raw-id: //depot/perl@25953
* All the ops that are simply C<return some_other_op();> can be bypassedNicholas Clark2005-10-311-1/+25
| | | | | in the op dispatch table, and the bodies retired. p4raw-id: //depot/perl@25940
* Replace the 3 currently "unreachable" ops with a single op bodyNicholas Clark2005-10-311-1/+4
| | | | | unimplemented_op() that panics descriptively if ever reached. p4raw-id: //depot/perl@25937
* Try to preserve the lost opcode alias info in commentsH.Merijn Brand2005-10-311-4/+9
| | | | | | extent to change #25929 p4raw-link: @25929 on //depot/perl: 1d5774de323ac43a91c2a30cf2e40384e4754f98 p4raw-id: //depot/perl@25930
* It appears that it's trivially easy to alias opcode functions inNicholas Clark2005-10-311-1/+15
| | | | | | the opcode table. We should be able to get both a speed and size saving here. Time will tell how much. p4raw-id: //depot/perl@25929
* [perl #36672] Swapped warnings for -o and -O file tests Piotr Fusik2005-07-281-2/+2
| | | | | | | | From: "Piotr Fusik" (via RT) <perlbug-followup@perl.org> Message-ID: <rt-3.0.11-36672-118371.6.12458378853063@perl.org> (except the redundant test) p4raw-id: //depot/perl@25232
* Include vim/emacs modelines in generated files to open themRafael Garcia-Suarez2005-05-111-4/+12
| | | | | | in read-only mode. Make vi modelines compatible with non-vim vi versions. p4raw-id: //depot/perl@24445
* Fix getting prototype of builtins mkdir and setpgrp.Rafael Garcia-Suarez2005-05-031-1/+1
| | | | | | Hardcode special exceptions for exec and system, instead of trying to be clever and failing. p4raw-id: //depot/perl@24380
* mkdir without arguments now defaults to $_Rafael Garcia-Suarez2005-05-031-1/+1
| | | p4raw-id: //depot/perl@24378
* Symbian port of PerlJarkko Hietaniemi2005-04-211-16/+34
| | | | | Message-ID: <B356D8F434D20B40A8CEDAEC305A1F2453D653@esebe105.NOE.Nokia.com> p4raw-id: //depot/perl@24271
* Downconst external APIsRafael Garcia-Suarez2005-03-291-4/+4
| | | p4raw-id: //depot/perl@24095
* More consting goodnessAndy Lester2005-03-211-4/+4
| | | | | Message-ID: <20050319072830.GA7721@petdance.com> p4raw-id: //depot/perl@24049
* Make all scripts run by regen.pl write output with UNIX style EOL's.Steve Hay2004-11-161-0/+4
| | | | | (autodoc.pl was already done by change 23371.) p4raw-id: //depot/perl@23501
* Update copyright noticesRafael Garcia-Suarez2004-03-161-2/+2
| | | p4raw-id: //depot/perl@22509
* retract 22328 and 22332: deprecation warning for my $x if fooDave Mitchell2004-03-041-2/+2
| | | p4raw-id: //depot/perl@22433
* add deprecation warning for C<my $x if foo> and C<foo && (my $x)>Dave Mitchell2004-02-171-2/+2
| | | p4raw-id: //depot/perl@22328
* Implement "my $_".Rafael Garcia-Suarez2004-02-031-2/+2
| | | p4raw-id: //depot/perl@22263
* Tidy up change #18751, so that the second parameter to unpack()Rafael Garcia-Suarez2004-01-031-1/+1
| | | | | | | defaults to $_ at compile-time, instead of run-time (like all other primitives that default to $_). p4raw-link: @18751 on //depot/perl: 13dcffc60adeca175c32a1ea11ec8756d4853ad2 p4raw-id: //depot/perl@22047
* re-fix [perl #24508] without speed regression.Adrian M. Enache2003-12-221-1/+1
| | | | | keep an eye on this. p4raw-id: //depot/perl@21951
* Fix bug [perl #24508] Wrong assignment in nested assignmentRafael Garcia-Suarez2003-11-191-1/+1
| | | | | | | | together with subroutine call Apparently concat still doesn't deal correctly with lexicals in all cases. Disable the whole TARGET_MY optimisation for it. (and remove the corresponding code from the peephole optimiser.) p4raw-id: //depot/perl@21752
* Change the internal prototype of the pop() and shift() builtinsRafael Garcia-Suarez2003-08-261-2/+2
| | | | | to (;\@), to reflect that their array argument is optional. p4raw-id: //depot/perl@20910
* Enhance some macro robustness.Rafael Garcia-Suarez2003-06-251-4/+4
| | | p4raw-id: //depot/perl@19852
* Fix up Larry's copyright statements to my best knowledge.Jarkko Hietaniemi2003-04-161-2/+3
| | | | | | | (Lots of Perl 5 source code archaeology was involved.) Larry didn't make strangled noises when I showed him the patch, either :-) p4raw-id: //depot/perl@19242
* Remove the foo-old files.Jarkko Hietaniemi2003-03-101-0/+6
| | | p4raw-id: //depot/perl@18875