Changes 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262
  1. -*- change-log -*-
  2. Started on CPAN with B-C-1.04_12
  3. The Perl compiler was in CORE from alpha4 until Perl 5.9.4
  4. and worked quite fine with Perl 5.6 and 5.8.
  5. 1.53 2015-12-05 rurban
  6. added 5.22 support
  7. * Bytecode (1.17): removed lastsib bit for 5.21.2-5.21.10, support only moresib op
  8. Add ops for padl, padn, padnl, unop_aux and methop needed for 5.22
  9. * Disassmbler (1.13), Assembler (1.13): support PADNAME and PADNAMELIST for 5.22
  10. * C: fix B::PMOP::precomp for UTF8 (#333, #338, GH#50)
  11. Add 5.22 support with a new unop_aux (multideref) section, methop support,
  12. new support for PADNAME and PADNAMELIST objects.
  13. Removed B::Section which used base. (toddr)
  14. Re-add PL_sv_objcount on cperl
  15. Fixed XSUB CONSTSUB alias (44,45,... PR #228) (atoomic)
  16. Proper utf8 support for gv_fetchpv, gv_stashpv and cv_get,
  17. cache gv_stashpv calls.
  18. Fix 5.22 for empty hash keys, share_hek("") (272, GH#249)
  19. Fixed refcounts for shared hek's, fixing the notorious unshare_hek assertions
  20. since 5.10 (GH #251, #255). See 1.06: "Had to disable -O1 -fcog (pv_copy_on_grow)
  21. on 5.10 and higher until I find out how to fool S_unshare_hek_or_pvn. This fixes
  22. all C -O1 and -O2 tests. Warn about this."
  23. Fix Inf/NaN support for C (GH#287)
  24. Fix handling of READONLY hashes in 5.22, i.e. use feature (GH#250)
  25. Support custom op Devel_Peek_Dump, added with 5.20 (GH#274)
  26. Defer regex compilation to new init1 for SWASHNEW (GH#273)
  27. Support unicode labels (upstream B bug) (GH#318)
  28. * CC (1.16_01): Encode unicode labels (GH#318)
  29. * Stackobj (1.12_01): fix Inf/NaN support for CC (GH#287)
  30. 1.52 2014-09-09 rurban
  31. * C: Protect against empty SV ptr in SV magic (\0) with $` with 5.20 (#370)
  32. Save new pmop (?{}) code_list with 5.18 (#372)
  33. Unset PL_use_safe_putenv as in perlmain, which initializes PL_origalen properly,
  34. which fixes setting long a $0 string (#194)
  35. Force Moose when only Class::MOP is loaded to give the needed path hint to XSLoader,
  36. when "Assuming xs loaded $stashname".
  37. * t/test.pl: print @cmd with TEST_VERBOSE
  38. 1.51 2014-08-04 rurban
  39. * C: boot_EV (analog to Coro) SvREADONLY_off its XS symbols (#368)
  40. 1.50 2014-07-23 rurban
  41. * C: fix DBI, special case DBI_MAGIC, call DBI->_install_method to
  42. re-initialize compile-time internal ima pointers (#359)
  43. Skip saving %IO::Handle for *STDOUT, which bloated 5.18 (#361)
  44. Fix XS boot of Class::MOP without Moose, and generalize it to other
  45. xs-loaded modules, which just call bootstrap Module. (#350, #364)
  46. Earlier xs_init for Encode similar to attributes (hack, fixes #32 regression)
  47. Use the system malloc for data being system free'd: cop_warnings,
  48. PMOP->op_pv, sv_debug_file, needed for certain DEBUGGING options.
  49. Fixes Attribute::Handler free errors (#362)
  50. Strip binary BM chunk from comppad names < 5.8.8 (#363)
  51. Save some CvXSUBANY values, esp. relocate any_ptr if possible:
  52. POSIX::is*, DBI, List::MoreUtils::*_iterator.
  53. The any_i32 values are already set in the boot section of the XS.
  54. Fixed initialization of foreign Encodings (#365),
  55. fixed initialization of old Encode versions < 2.58 also (#305)
  56. * CC (1.16): Strip binary BM chunk from comppad names (CC names) < 5.8.8 (#363)
  57. * perlcc (2.20): Strip wrong version-less -I<site_perl> (#366)
  58. * Makefile.PL: Install into archlib on 5.8 and 5.6 (#358)
  59. 1.49 2014-07-12 rurban
  60. * C: Changed IO::Socket::SSL warning to recommend >= 1.995.
  61. 1.996 even has some perlcc specific usage documentation (#317)
  62. Fix PerlIO::scalar XS bootstrap forced by __DATA__ (#360)
  63. We sometimes missed it
  64. 1.48 2014-07-11 rurban
  65. Fixed C walker and 5.18-5.20 Bytecode.
  66. This is the major version which cPanel will use for 5.14.4. With the next
  67. versions we'll start working on -m and buildcc, to split packages into shared libs.
  68. And use B::CC and/or rperl compiled modules selectively.
  69. * C: Make revised -fwalkall the default. Fixes missing dumped method-only packages (#348)
  70. Always save all user-loaded packages. Skip only compiler-loaded packages if
  71. not used by user code. The compiler loads and dumps now additionally only the
  72. heavy parts for utf8 and bytes, and utf8 for m///i, and AnyDBM for dbmopen,
  73. PerlIO::Scalar for __DATA__ handles, and Coro::State::_jit if required, but
  74. nothing else.
  75. Fix for missing RTLD_NOLOAD on BSD, needed for run-time remap of compile-time
  76. XS symbols via dlsym (#351)
  77. Special-case XS loading of Moose.xs from Class::MOP (#350)
  78. Better fix for mult. match once by checking OP_MATCH with ONCE flags in C.xs also (#274)
  79. but there are still some platforms without pmop->op_pmregexp in the C.xs detection runloop
  80. Add op_lastsib bit for 5.21.2
  81. Changed IO::Socket::SSL warning as our patch was rejected upstream.
  82. Need to maintain now a fork cPanel::IO::Socket::SSL to be able to use compiled
  83. IO::Socket::SSL servers. (#317)
  84. * Stackobj (1.12): Harmonize RV checks (fixes cc 105 -O1 and -O2)
  85. * Bytecode (1.16): Replace each %hash with foreach keys in walksymtable also (#307)
  86. Do not store main_cv->START, empty optree since 5.18
  87. Add op_lastsib for 5.21.2, but sort still broken with PERL_OP_PARENT
  88. * Assembler (1.12): error if a PUT method misses an argument
  89. * perlcc (2.19): -B produces again -H bytecode, runnable without -MByteLoader.
  90. Fix default output name from a.outexe to a.exe on a windows-based OS.
  91. * Makefile.PL: fix installation of cc_runtime.h for B::CC
  92. 1.47 2014-06-11 rurban
  93. Fixed Bytecode for 5.18. Fully support 5.18 and 5.20 now.
  94. Greatly reduce code size for C and esp. CC, by including less unneeded dependencies.
  95. * C: detect new Encode >2.58 compile-time usage (#305, RT #94221)
  96. Fix mro maybe::next:: detection (#326)
  97. Fix %INC cleanup logic. Delete packages from %INC only if they were really not saved,
  98. and add packages to %INC which were saved and not just marked for saving. (#340)
  99. Fix lot of skip package logic and consistency parts. Much less packages are now saved
  100. in general which leads to smaller and faster code.
  101. Avoid compile-time compiler internal reloads and redefinitions.
  102. Special-case %warning::Bits on -O3 to not SEGV when changing warnings on run-time loads
  103. on compile-time saved -fconst-string warnings.
  104. Add experimental -fwalkall to add all wanted packages recursively with maxdepth 3.
  105. No tests yet.
  106. Add time and version on top of C source code. Also for CC.
  107. Fix lexical subs for threaded perls (#130, #341)
  108. Add special fixes for Coro: reload Coro jit and SvREADONLY_off some of its XS symbols (#293)
  109. Fix "Eval-group not allowed at runtime" errors since 5.18 (#135),
  110. by settting HINT_RE_EVAL for re-eval groups when compiling the QR
  111. Fix for readonly magic hashes, usually found since 5.20 (#273)
  112. Fix Can't locate object method "bootstrap_inherit" via package "DynaLoader" (#125)
  113. again, as the improved walker now strips DynaLoader from simple one-liners like
  114. 'use Clone' and the DynaLoader detection was too late. Do it now earlier.
  115. * ByteLoader (0.11): fixed filter -H problem with 5.18 (#339)
  116. Disabling the PerlIO_binmode(PL_RSFP, IoTYPE_RDONLY, O_BINARY, 0); hack for [perl #86186]
  117. "Changing filters to be textmode, not binary" fixed the Bytecode problems since 5.18
  118. * perlcc (2.18): Avoid -H for bytecode > 5.18
  119. New --check option
  120. * t/asmdata.t: signicant enhancements
  121. * t/CORE: add mro and re core tests, only mro/isarev.t is unstable, and several re-eval
  122. tests using variables are skipped and unsupported.
  123. 1.46 2014-05-14 rurban
  124. Added global destruction, improved -O4 and CC, fixed mro, @-, $/ $\, Net::DNS, ...
  125. Added mro and re core testsuite.
  126. * C: reset PL_stack_sp on init (was one too far). no effects on code.
  127. Implement global destruction via sv_clean_objs and my_curse on -O3, resp.
  128. prepend static svs PL_sv_arenaroot for sv_clean_objs with a fake sv_list[0].
  129. (#197, #208, #254, #280)
  130. Call DESTROY methods for all our global static SVs (i.e. "global destruction"),
  131. fixes #197, #280, #282
  132. Increment GV->FORM refcounts as they cannot be destructed, analog to CV
  133. Call PL_exitlist functions with -O3
  134. Make the lexical cop_warnings pointer dynamic, because on cv_undef (scope exit,
  135. assign, exit, die, ...) CvROOT and all its kids are freed, ignoring op_latefreed.
  136. The content of the warning is still a static string - and leaks on perl, but
  137. we don't care.
  138. -fwarn-sv is now always set, just not with MSVC on Windows. The warnings are then
  139. directly set, not in a tight loop afterwards, because the value is needed for
  140. the dynamic init.
  141. Fixed lexical warnings on 5.8 (pWARN_STD .. pWARN_NONE)
  142. Improve -O4 by keeping all CvSTART cops
  143. Keep internal packages if used in the source code, e.g. mro (#300)
  144. Fix the order of PerlIO_cleanup, after global destruction (#302, #303)
  145. Since 5.18 padlists are now all dynamic, due to undef issues in non-local exits (#304)
  146. Add -fno-dyn-padlist to -O4 to keep static padlists on 5.18.
  147. Dynamic padlists are needed to prevent from cv_undef crashes on static padlists
  148. when cleaning up the stack on non-local exits, like die or exit or subs on the
  149. compile stack as with Attribute::Handler (#169, #304). Previously only END block
  150. function padlists were dynamic (#298).
  151. Add run-time remap of compile-time XS symbols via dlsym (#305, RT #94069)
  152. Net::DNS includes Encode::XS ascii_encoding, but also init the 3 other encoding ptrs.
  153. Add a fast path for d_dlopen + i_dlfcn systems (i.e. Windows goes the slow init2 route)
  154. Detect new Encode-2.58 which stores encodings better to handle proper
  155. compile-time usage (#305, RT #94221)
  156. Add special SV associations for $/, $@ and $\ (#306, #256)
  157. Save @ISA for all included packages, esp. DynaLoader dependencies (#308)
  158. Replace each %hash with foreach sort keys (#307)
  159. Set ${^GLOBAL_PHASE} with -O3 for END and DESTRUCT (#197, #208)
  160. Do not store invalid GvCV symbols, only cv or &sv_list entries (#313)
  161. Support GvFORM pseudo CVs (B::FM objects) on 5.10 (#149)
  162. Support local $/ = "somestring" (only used empty values before) (#314),
  163. A regression from 1.43
  164. Support local $\ = "somestring" (#318), also a regression from 1.43
  165. Fix special 5.6. associations for $, $\ as they are no SVs there (#306)
  166. Fix wrong caching of internal LEXWARN symbols (#322)
  167. Warn on bad IO::Socket::SSL versions 1.956-1.983 which would SEGV if used as server (#317)
  168. Support __DATA__ blocks in packages without printing wrong warnings (#310)
  169. Support ->(maybe|next)::(method|can) mro method calls (#324, #301)
  170. Support mro c3 (#316)
  171. Support @- @LAST_MATCH_START, the array of the last submatches (#281, #220, #295)
  172. Workaround a 5.18 de-optimization which disabled ++PL_sv_objcount on bless
  173. by adding it if a DESTROY method exists. This will fail since 5.18 if DESTROY
  174. is added at run-time. (#208, #197)
  175. Add new init0 section to initialize -fppaddr ops before init, not afterwards. (#330)
  176. Needed to call utf8::SWASHINIT at init with CALLREGCOMP and /i
  177. Avoid duplicate PL_utf8_tofold ToCf swash initialization with 5.18 (#330)
  178. * CC (1.15): Skip saving non-existing methods analog to B::C 1.43_06 (CC test 50)
  179. Fix failing CopFILE_free and CopSTASH_free in END blocks with threads (#296, CC test 48)
  180. Handle duplicate function names, like multiple END blocks or anon functions (#297)
  181. Replace each %hash with foreach sort keys (#307)
  182. * Bytecode (1.15): Replace each %hash with foreach keys (#307)
  183. * Bblock (1.04): Do not pollute B::CC (find_leaders) with B::Concise
  184. 1.45 2014-02-11 rurban
  185. * t/issue281.t: fix wrong test ($[ vs $])
  186. 1.44 2014-02-10 rurban
  187. added adjusted CORE testsuite for 5.14. passes for 5.14.4-nt, not for 5.18.2-nt
  188. (cPanel code_monkeys)
  189. still missing in general are:
  190. - global destruction (use lexicals!),
  191. - attribute handlers,
  192. - compile-time perlio layers
  193. * C: Fix -O3 with ~ and ~~ formatstrings (#277)
  194. Fix SvLEN and PV ptr for empty shared hash keys (#272)
  195. Use the natural @dl_modules boot order, just put attributes to the front (#259)
  196. Store cop_hints to support lexical numeric hints pragmas,
  197. esp. use bytes and use open attributes
  198. (fixes #81 #152 #174 #176 #180 #185 #224 #235 #238 #241 #245 #253 #255 #256 #277)
  199. Skip saving defined(&cv) subs (#96)
  200. Fix format STDOUT/STDERR (#238, #239, #277, #284, #285, #283)
  201. Save now empty bodyless subs if they exist, for signal handlers,
  202. prototypes declarations and cvrefs (#251, #159, #235, #246, #270, #271, #275, #279)
  203. Fix PVMG PV overwriting the RV, overload sub (#273)
  204. * CC (1.14): Skip saving non-existing methods analog to B::C 1.43_06 (CC test 50)
  205. * perlcc (2.17): Accept -A for -DALLOW_PERL_OPTIONS
  206. * t/testc.sh: Accept -A for -DALLOW_PERL_OPTIONS
  207. 1.43 2014-01-15 rurban
  208. new 5.16, and partial 5.18, 5.20 and windows support.
  209. Many more fixes and testcases.
  210. Bytecode is still broken on 5.18, esp non-threaded. 5.20 looks pretty good though.
  211. * C: Fix -u<module> without file extension.
  212. With hek do not drop FAKE, only for const pv.
  213. Fixed $$ ($PID) to be dynamic, issue 108. Thanks to flexvault for reporting this.
  214. Fixed double precision to 16 digits. The nbody shootout test passes now.
  215. Fixed refcounts of *ENV, issue 111.
  216. Fixed wrong boot_ arg for the xs version check with --staticxs
  217. Better fix for overwriting of @ARGV <O3, test c_argv:1 and c_allow_opts.t:1
  218. Fixed refinition warnings of XS CONSTSUB. Ignore them as they are
  219. loaded later.
  220. Add $dlmodule::VERSION as 2nd arg to boot_$dlmodule resp. $dlmodule::bootstrap
  221. to get rid of the pesky Invalid version format error in xs_version_bootcheck
  222. if the $VERSION had already version magic attached. (no testcase, hard to repro)
  223. perl 5.16.0 shipped a slightly broken B without cop_stashlen. As workaround
  224. we do not support utf8 stashes nor null bytes in stashes on 5.16.0 threaded.
  225. Fixed Null COP storage for 5.16 and 5.17
  226. Fix amagic_generation which was removed with 5.17
  227. Fix ALLOW_PERL_OPTIONS: add -e behind all processed options, not before
  228. Fixed HvAUX init. Previously only with magic hashes, now on all OOK hashes (OOK+SHAREKEYS)
  229. e.g. %warning::Bits
  230. Added support for new PADLIST type since 5.17.4 (with xpadl_id) and 5.17.6 (without)
  231. $^X returns now the real executable name, not just perl or perl.exe
  232. Adjust COW string lengths to hold the COW_REFCNT byte at the end
  233. Fix unicode string CUR and LEN (#142, #162)
  234. Fix unicode hashkeys (HEK) mostly (#200), but not yet testc.sh 2001 (compile-time
  235. stored utf8 heks)
  236. Save HvTOTALKEYS at run-time as max added to the number of run-time added keys (#178)
  237. Fix UV uvuformat on 32bit -Duse64bitint (#145)
  238. op_pmreplstart is now run-time initialized >= 5.10 (#160)
  239. Fixed special usage of magic vars @-,@+,%+,$-,$! (#90)
  240. Fixed wrong REGEXP length for compiled QR data (#143)
  241. Fixed wrong -O3 comparison of strings to numbers (#138,#141, branch new-cog), unified
  242. PV handling, disabled -fcog replaced by -O3 -fconst-strings
  243. Fixed NUL-byte handling in strings by using B::SV->PV instead of PVX (#237)
  244. Storing now bareword filehandles (#148,#149)
  245. Do not create GvGP at all. This also removes the need for newGP() (Windows/AIX)
  246. use Config does not include B anymore, Internals::V now in __ANON__ package
  247. Fixed handling of empty - not successfully autoloaded - CVs (#235, #159, ...)
  248. by storing the SV and XPVCV but ignoring it and defer to run-time get_cv()
  249. Unify handling of static and dynamic strings, use ptr_undef throughout instead
  250. of NULL vs &PL_sv_undef (save_pv_or_rv => savesym, cur, len, pv, static)
  251. Restore $^H, the numeric value of global warnings flags (#193,#207,#243)
  252. Restore more missing globals: ${^UNICODE} ${^UTF8LOCALE} $; $\ $, $/ $" $|
  253. $^A $^L $: $^H $^R $% $- $= if set in a BEGIN block or via cmdline (#256,#231)
  254. Restore even deprecated vars $] $# $* (#171)
  255. Fix HvAUX memory corruption, accessing HvAUX beyond HE fields, esp. with threaded perls.
  256. Initialize now HvAUX backref and mro_meta fields.
  257. Do not boot internal core XS packages twice, refer to internal XS functions dynamically
  258. and do not link to them. Fixes fix Windows/AIX with strict linking.
  259. Defer dynaloaded GvCV initialization after dl_init()
  260. Fixed storage of non-special lexical warnings (#258 warnsize-i258)
  261. Fixed storage of shared heks, support IsCOW_hek (i.e. method names)
  262. Support new ReANY since 5.17.6 (#258 reg_temp_copy)
  263. Support stash symtab magic for PMf_ONCE m?? and reset (#188)
  264. Fixed POSIX overflow constants warnings for DBL_MAX,DBL_MIN,LONG_MIN,LONG_MAX (#262)
  265. Support user-defined static_ext modules, which are already booted from core.
  266. Add more DynaLoader::dl_debug output (set PERL_DL_DEBUG=1)
  267. Enforce -ffold on an ucfirst op or $INC{'unicore/To/Title.pl'} (#242)
  268. Mark empty but overloaded packages (#172). This is merely workaround for reduced testcases.
  269. Set PadnamelistMAXNAMED(comppad_name) needed since 5.19.3 for eval string (#268)
  270. Add new option -fno-delete-pkg to control if to ignore compiler-only dependent packages,
  271. compiler-independent packages are now always saved. Save those package names at Makefile.PL
  272. in @B::C::Flags::deps.
  273. * perlcc (2.14): new option --dryrun, -v5 does not -Dsp,-v
  274. new option -f passthru to C and CC
  275. * perlcc (2.15): fixed default --spawn: use waitpid which was broken for parallel builds.
  276. fixed warning Prototype mismatch: sub main::gettimeofday: none vs () at perlcc line 261
  277. improved --version
  278. added --perlopts to handle -DALLOW_PERL_OPTIONS
  279. * perlcc (2.16): changed output name rules:
  280. Without given output file name we use the name of the input file (in the subdir)
  281. or with -e a.out resp. a.exe and a randomized intermediate C filename.
  282. If the input file is an absolute path on non-windows systems use the basename.
  283. * CC (1.13): Use the B::C integer and double precision logic (ivx, nvx).
  284. Fixed double precision to 16 digits. The nbody shootout is now 2x faster than perl.
  285. Added optimizations: -fno-magic, -fno-autovivify, -faelem
  286. Detect "no autovivification;" pragma.
  287. New -fno-taint, -fomit_taint is deprecated
  288. Fix amagic_generation which was removed with 5.17
  289. Use new perl6 type names: int, num, str. double and string are deprecated.
  290. * Bytecode (1.14): fixed require and op_first, issue 97
  291. Fixed regex_pad offset in threaded perls >= 5.11, issue 68.
  292. New type B::PAD isa B::AV (PADLIST for 5.17.5),
  293. New bytecodes newpadlx, padl_name, padl_sym (PADLIST for 5.17.5)
  294. Fixed CvGV_set causing Attempt to free unreferenced scalar in push_begin (42,43)
  295. Fixed -Do (peek ops)
  296. Renamed option -f to -F for files.
  297. Fixed READONLY magic and restricted hashes, issue 98
  298. Support IsCOW xpvshared strings (>=5.18)
  299. Fixed wrong xpvshared logic (5.10-5.17), issue 138
  300. Optimized away 0=default op and gp flags and pointers
  301. Optimized away default sv_refcnt=1 (GV not), and skip redundant bytecodes
  302. Set PadnamelistMAXNAMED(comppad_name) needed since 5.19.3 for eval string (#268)
  303. * ByteLoader (0.10): set sv_refcnt to 1 in newsv to skip most defaults
  304. * Assembler (1.11): allow "newpadlx 0"
  305. * Disassembler (1.12): use B::Concise op_flags and private_flags
  306. * Stash (1.03): fix compilation for 5.8.8 and below: gv_fetchsv missing
  307. * t/perldoc.t: perlcc fails with 5.8 because Cwd disturbs the
  308. fragile method package finder for File::Spec. Use cc_harness.
  309. 1.42 2012-02-01 rurban
  310. stable up to 5.14
  311. * C: Improved finding methods in parent classes (Warning: method not found),
  312. Save @ISA of those child classes.
  313. Re-implement and simplify my_share_hek, now in terms of share_hek.
  314. PL_strtab hack gone. This fixed the shared_hek destruction
  315. problems.
  316. Turn off CvDYNFILE needed since 5.15.4, use static CvFILE. (DateTime)
  317. * perlcc: perlcc -stash does not hang anymore, renabled t/e_perlcc.t -stash section
  318. * Stash (1.02): '-xs' does not load B anymore.
  319. Now in seperate directory Stash
  320. * Stash/Stash.xs: new with CvIsXSUB() to get rid of B, polluting the stashes.
  321. * Stash/Makefile.PL: new
  322. * Bytecode (1.13): support shared hek (42,43)
  323. * ByteLoader (0.09), ByteLoader/bytecode.h, bytecode.pl: support shared hek (42,43),
  324. added xpvshared
  325. * t/issue95.t: added, isa methods not found
  326. 1.41 2012-01-30 rurban
  327. * t/modules.t: Fixed syntax error
  328. 1.40 2012-01-30 rurban
  329. static PerlIO Layers (e.g. __DATA__)
  330. * C: fixed deferred %INC, %INC is now stored and cleaned up at the end.
  331. Improved __DATA__ handle as PerlIO layer, PerlIO::scalar now
  332. loaded static (test 15).
  333. Defer eval section after dl_init (e.g. for PerlIO::scalar) (test 15)
  334. Check for XSLoader now at the very end (test 27)
  335. Fixed MUTABLE_CV for 5.10.0
  336. Improved 5.8 method lifting for not-found methods a bit (5.8. perldoc.t)
  337. * Bytecode: fixed test 22
  338. Cannot locate object method "fileno" via package "IO::File"
  339. * Makefile.PL: readonly $lib fix for MSWin32
  340. * t/testc.sh: silence ulimit -m warnings + errors
  341. 1.39 2012-01-25 rurban
  342. * C: improved eval AUTOLOAD, avoid some POSIX and Storable .al compile-time
  343. side-effects such as creating files and dirs. First try loading
  344. .al files, only then eval the dangerous AUTOLOAD.
  345. * Makefile.PL: typo in -fav-init2 independent_comalloc detection.
  346. Added LICENSE key, META and the files were not enough to please pause.
  347. 1.38 2012-01-24 rurban
  348. * t/issue93.t: fixed syntax error
  349. 1.37 2012-01-24 rurban
  350. Enabled copy-on-grow strings >= 5.10.
  351. Save %main:: stashes w/o -fno-stash. Switched to git, added github mirror
  352. Fixed hashes and share_hek, when mixed compiled and load-time for >5.8.
  353. Stability: This release is the first which passes almost all tests and
  354. is used in production with --staticxs -O3, but copy-on-grow hek's and
  355. further logical improvements (deferred %INC cleanup) fail so far, so it's
  356. still considered unstable.
  357. * C: save stashes optionally with -fstash, but only values which are also
  358. stashes to avoid a second walker besides savecv, and thus do not
  359. walk into unneeded territory; B::STASHGV (46, issue 79)
  360. New -fno-stash with -O2 to omit stashes which are rarely needed.
  361. Fixed vulnerability to oCERT-2011-003 style DOS attacks. Do not
  362. pre-compute hashes for hv_store(), use fresh random hash seed.
  363. But shared_hek() has a limited API which does not allow this.
  364. UNIVERSAL methods were not correctly stored, which led to method not
  365. found at run-time errors.
  366. New debug option -Dr "runtime" to add debug output to the .c code (as in CC)
  367. New option -Upackage to skip package, mark_skip()
  368. Re-implemented sharepvn via share_hek() and SvLEN=0 (issue 71),
  369. Special FAKE+READONLY handling: LEN = 0 if pv_copy_on_grow or shared_hek.
  370. Fixed !SvIsCOW_shared_hash + FAKE+READONLY conflict (test 13, issue 82).
  371. Shared COW hashkeys which are optimized to static const strings
  372. may not be marked as IsCOW (remove SVf_FAKE).
  373. Re-implemented CORE share_hek with hash=0
  374. Otherwise shared HEK's (post-5.10) come up with duplicate entries
  375. for the same keys; one compile-time created and one run-time created with
  376. a different random hash seed. E.g. observed by such warnings
  377. "Prototype mismatch: sub bytes::length (_) vs (_)"
  378. Added Internals::hv_clear_placeholders XS name exception, similar
  379. to version:: (issue 83)
  380. Store CV prototypes, issue 81 and issue 84 for empty () vs NULL prototypes.
  381. Fixed 5.15.2 hang at hfree_next_entry (issue 78)
  382. Defer writing of READONLY hash keys since 5.15 (issue 88)
  383. Enable -fcog copy-on-grow with static strings for >= 5.10
  384. Improved Errno vs. *main::! and Tie::Hash::NamedCapture vs
  385. *main::+ / - logic (issue 90)
  386. Updated version XS methods, default to noop for (...
  387. Strip version object overload from XS packages (issue 91), XS needs plain PVs
  388. Do not initialize CONSTSUB XS methods twice, boot does it for us
  389. Pass proper cv to XS boot_$name, fixes boot of
  390. Tie::Hash::NamedCapture (issue 86)
  391. Fixed share_hek strings with -O1 (test 13)
  392. Fixed bootstrapping the XS/core part of attributes,
  393. thereby fixed threads tests 41-43.
  394. Fixed most 5.8.[45] problems by ignoring aelemfast SPECIAL pads.
  395. Fixed magic -> PTR when SV (>5.6)
  396. Moved -fsave-sig-hash from -O3 to -O0. You need -fno-save-sig-hash
  397. to disable it.
  398. Removed -fno-stash from -O2, -fno-stash is now the default. You
  399. need -fstash to add stashes. It caused not understood problems.
  400. Fixed saving %SIG signals and more -2 SV magic (issue 92)
  401. Adjusted IO logic, was erronously skipped (issue 59)
  402. inc_cleanup: save only those %INC keys which are stored.
  403. Save ext/mro only if the ext mro methods were loaded, and
  404. utf8_heavy.pl similarly.
  405. Force loading of -u arguments to avoid runtime loading.
  406. Call boot_core_PerlIO, mro, UNIVERSAL and xsutils.
  407. Warn on unsavable IO objects from BEGIN blocks.
  408. Fixed >&STD... handles (issue 93),
  409. i.e. Test::Builder, Test::NoWarnings and parts of the core testing.
  410. See http://blogs.perl.org/users/rurban/2012/01/what-to-avoid-in-begin-blocks.html
  411. Add B::COP::stashflags workaround, >5.15.4 threaded.
  412. Add fix for lost PL_regex_pad, 5.15 threaded.
  413. * CC (1.12): allow overriding of -f<opt> B::C flags.
  414. Skip internal packages with mark_skip (fixes cc_o2 tests).
  415. Move -ftype-attr from -O2 to -O1.
  416. Always define int, double and string package versions, parallel to types.
  417. * Bytecode (1.12): detect Tie::Hash::NamedCapture (issue 90) -
  418. works only partially.
  419. Fixed >&STD... handles (issue 93)
  420. Support -d debugging without -MOd
  421. * Stackobj (1.00_03): add UL or L to overlong integers. doubles
  422. not yet
  423. * perlcc (2.13): added options -O[1-4], -u, -U, --Wc, --Wl, --version,
  424. Keep cfile if output is empty.
  425. Change -o output C file directory and name with -S or -c:
  426. Before in current directory, now in -o directory.
  427. Before with input name, now with -o name.
  428. Add -rpath for all --staticxs libs if supported.
  429. Changed verbosity levels and output wording.
  430. * bytecode.pl: added xio_ifp
  431. * bytecode.h: added BSET_xio_ifp
  432. * META.yml: remove from MANIFEST and repo, let make dist
  433. autogenerate it.
  434. * t/test.pl, t/TESTS: changed test 46 (Exporter:: and other stashes in
  435. %main:: stash) to cover issue 79.
  436. use Exporter; print q(ok) if %main::Exporter::
  437. * t/test.pl: use general comments with optional TODO. Before only TODO
  438. * t/perldoc.t: fixed for 5.8 with manually adding -uFile::Spec -uIO::Handle
  439. * t/issue59.t, t/issue81.t, t/issue90.t, t/issue93.t: added
  440. 1.36 2011-10-19 rurban
  441. lexical warnings and more 5.15 fixes
  442. * C: new B::LEXWARN, fixed representation of lexical warnings which was broken
  443. since 8e01d9a6 5.8.9/5.9.4 (issue 76)
  444. Added section free, use it for lexical cop_warnings (const STRLEN*)
  445. (TODO: static PV, HEK + COPs)
  446. Workaround for utf8::SWASHNEW adjusted to 5.15
  447. PAD* sv flags changed in 5.15.3
  448. XSLoader API changed (HEK in caller i.e.): had to add a
  449. XSLoader::load_file for [perl #101336] >= 5.15.3,
  450. also use mXPUSH for sp instead of 1-arg targ
  451. Set SvLEN=0 for static PVs to skip sv_clear (problem with 13)
  452. Handle overlarge negative 64bit ints, double not yet.
  453. Move -fwarn-sv from -O2 to -O1
  454. Move -fsave-data from -O3 to -O2
  455. Compile *main::DATA IO handle automatically (__DATA__), just package __DATA__
  456. handles need -fsave-data (15)
  457. Die with 5.8.4/5.8.5 threaded with split->pushre on invalid
  458. pmreplroot. This is a core B::walkoptree bug and can not be
  459. easily fixed.
  460. Tests 15 and 103 do not hang anymore, 15 and 29 pass mostly
  461. * C.xs: added -Dts support to runloop to check internal compiler
  462. problems
  463. * t/issue76.t: added
  464. 1.35 2011-10-02 rurban
  465. tested from 5.6.2 until 5.15.3
  466. * C: allow debugging without -MOd=C
  467. improve package_pv detection for methods, two more tests.
  468. detect previously missing packages within the main sourcefile
  469. (50,35,72,73)
  470. -O1 now includes also -fav-init2 and -fppaddr, which are all
  471. stable. -O2 string handling (-fro-inc) still unstable.
  472. added B::REGEXP::save for \$qr (Encode::Alias), issue 71. Still
  473. not fully fixed. Encode::Alias unusable.
  474. fixed empty HV assertions since 5.15, new HV default keys = 7
  475. (3,4,36), but still unsolved 5.15 problem with endless loop in
  476. Perl_hfree_next_entry hv.c:1716 (3,4,36)
  477. workaround 5.15.2 inability to walk with from %INC deleted
  478. stashes, also workaround adding already deleted DynaLoader.
  479. CORE patch [perl #100138] for new 5.15.2-5.15.3 DynaLoader XS_INTERNAL
  480. problem required (16,29,44,45). Fixed with 5.15.4
  481. 0001-Export-DynaLoader-symbols-from-libperl-again.patch
  482. use proper PL_envgv for *main::ENV which is inited in perl_parse
  483. (fixes e.g. CGI apps using run-time values, not compile-time)
  484. * CC (1.11): allow debugging without -MOd=CC
  485. Try to jump from last to unknown label, put labels also onto cxstack.
  486. Fixed cc_last.t test 4, jump out of anonsub, but not across C
  487. functions yet (this is disallowed in C, need to split).
  488. * C.xs: added B::REGEXP::EXTFLAGS (missing from B).
  489. * perlcc (2.12): omit also inc_version_list dirs from perlcc as
  490. leaving them in could lead to unexpected crashes
  491. * t/cc_last.t: Fixed test 2. This works compiled and uncompiled,
  492. but the returned errcode is not compared. Skip if so.
  493. * t/TESTS: add all 5 possible method/sub calls to test 35 =>01234.
  494. See http://blogs.perl.org/users/rurban/2011/06/how-perl-calls-subs-and-methods.html
  495. * t/stash.t: fixed 5.8.8 stashes (overload, threads, ...)
  496. * t/issue71.t: added, but not fixed yet
  497. * ramblings/*.patches: CORE patches added and recommended in README.
  498. * ramblings/blogs-debugging-article[1-4].pod: added to MANIFEST.
  499. * perlcompile.pod, perloptree.pod: improved.
  500. * ramblings/yapceu_2010.pod: added.
  501. 1.34 2011-06-12 rurban
  502. * Makefile.PL: fixed make install < 5.13.7
  503. * issue24.t, test.pl, bytecode.t: TODO more failing tests from cpantesters
  504. 1.33 2011-06-12 rurban
  505. * Makefile.PL: fixed make install > 5.13.7
  506. * test.pl, bytecode.t: TODO more failing tests from cpantesters
  507. * stash.t: fixed freebsd test 4
  508. 1.32 2011-06-10 rurban
  509. more darwin and package scan fixes, Bytecode -i includeall.
  510. all top100 modules can be now be compiled on most perls
  511. * Bytecode.pm (1.11): fixed const xsub xsubany ptr >=5.10 <5.14 (27).
  512. save_cq => save_begin+save_init_end: moved push_begin upfront for the same
  513. init order (44).
  514. add CVf_CVGV_RC flag (refcount) on CV with no backref magic, e.g. END (48)
  515. added option -i includeall which adds no BEGIN require ops, but adds
  516. all included symbols.
  517. better BEGIN block @INC manipulation detection (33)
  518. print newsvx flags if -S or Comment
  519. print hex IV < 8 as int with -S
  520. * C.pm (1.32): check PERL_TRACK_MEMPOOL for AV malloc (25).
  521. fixed init chunk splitting for CV and -fav-init2, if >10000 lines.
  522. fixed overlarge AvFILL=3 of endav. Undefined subroutine &main:: (48)
  523. fixed shared GPs on typeglob assignment. do not gp_free shared GPs,
  524. just set them once.
  525. added try_isa before try_autoload. use mro::get_linear_isa instead of @ISA
  526. mark_package force: detect and fix already discarded packages which
  527. are brought back in directly or by someone else's @ISA. (e.g. Sub::Name
  528. needs DynaLoader::dl_load_flags)
  529. improved method_named package search, still not exact though (LWP)
  530. add manually compiled packages to %INC to avoid a runtime require
  531. special case Config detection, AUTOLOAD = launcher, included by Dynaloader
  532. added -Ds to print all sub names
  533. do not compile any B::C subs, esp. our %SIG handler
  534. add our own Internals::V as it is not exported by libperl
  535. inc the REFCNT of stashes (Path::Class)
  536. * Assembler.pm (1.10): archflag bit 2 for MULTPLICITY
  537. * Disassembler.pm (1.10): archflag bit 2 for MULTPLICITY
  538. use longsize resp. ivsize from .plc not from perl
  539. print newsvx flags
  540. print hex IV < 8 as int
  541. * ByteLoader (0.08): support archflag 2 MULTPLICITY,
  542. [perl #86186] force binary IO for __DATA__ handles, which changed
  543. in core with 5.14
  544. * bytecode.pl: support m for MULTIPLICITY (yet unused)
  545. * Makefile.PL: move cc_runtime.h installation to make install step
  546. (sudo). Tested ok on darwin gcc, does use -I. internally.
  547. * cc_runtime.h: renamed from cc_runtime514.h
  548. * cc_harness: fixed darwin coredir
  549. * perlcc (2.11): fixed darwin coredir.
  550. omit darwin linking to dynamic .bundle - generate .a via libtool
  551. * TESTS: removed END block from test 28, only test run-time require (fixed 28)
  552. added 48 for previous test 28 END block lexvar del_backref failure
  553. added 49 for m//i blowup and -fno-fold testing
  554. added 50 empty @ISA issue 64
  555. * assembler.t: fix for hex->int IV roundtrips
  556. 1.31 2011-03-21 rurban
  557. multiplicity support and more darwin fixes
  558. * C.pm (1.31): replace $ITHREADS by $MULTI (darwin),
  559. my_perl_destruct: disable CopFILE_set NULL and CopSTASHPV_set NULL
  560. on $MULTI, PL_sv_yes|no special on MULTI
  561. * CC.pm (1.10): replace $ITHREADS by $MULTI (darwin)
  562. * t/test.pl, issue34.t, issue35.t: -ofile => -o file (darwin cc)
  563. * cc_harness: -Wl,--warn-once invalid on darwin gcc
  564. * log.modules: encode MULTI without threads as -m
  565. 1.30 2011-03-06 rurban
  566. dbmopen, cc_runtime.h, perlcc, --staticxs
  567. * C.pm (1.30): support dbmopen, fixes issue 24.
  568. fixed xpvmgsect (was xpvsect) !-fcog < 5.10 (YAML, test 41,42,43).
  569. fixed m//i since 5.13.10: swash_init("utf8::Cased").
  570. fixed method_common package_pv detection in most cases.
  571. still two cases open, without tests. PADOP GV NULL 0x20000, GV RV 0x40802.
  572. fixed method_named with >= 1 arg, checking for const PV package_pv (test 35)
  573. support GvCV_set and GvGP_set introduced with 5.13.10. [RT#65630]
  574. implement -staticxs for perlcc --staticxs
  575. either link to found static libs or link to shared lib with
  576. fixed LD_LIBRARY_PATH/PATH (nyi in C, just perlcc).
  577. optimize -fav-init use_av_undef_speedup &PL_sv_undef initialization (again).
  578. reserved -mPackagename (NYI)
  579. added verbose(),module() for CC.
  580. implement outline of -m module, name detection missing.
  581. added -fno-fold recommended since 5.13.9 to omit the huge utf8 tables.
  582. added -fno-warnings, recommended since 5.13.5.
  583. added special workaround for Scalar::Util bootstrapping which did not detect
  584. List::Util, since it is not in its ISA, only required. need a better scan.
  585. fixes test 44.
  586. init XS within Od.
  587. prevent autoloaded STDERR printing on non-debugging perls (e.g. "Storablelogcarp").
  588. * CC.pm (1.09): support dbmopen, issue 24 failing due to XSLoader (test 45)
  589. no pp_name shortnames in embed.h since 5.13.9, use Perl_pp_name(aTHX).
  590. implemented dorassign, fixes issue 45.
  591. fixed XSLoader detection, moved use_xsloader to save_unused_subs()
  592. skip duplicate cc(pp_sub_*) functions (freebsd 45)
  593. added missing END block code (test 28).
  594. added B::C::verbose on -v
  595. fixed B::C::verbose crash by adding B::FAKEOP::fake_ppaddr.
  596. fixed compile_stats
  597. renamed -n module_name to init_name.
  598. check and set -f options from C also.
  599. implement outline of -m module, name detection missing.
  600. added option -fno-name-magic.
  601. added experimental option -ftype-attr.
  602. added TYPES pod section.
  603. added pod for some funcs: load_pad, cc_queue, label.
  604. option -strict only used with DEBUGGING perls.
  605. be less chatty with compiling bblocks.
  606. light layout cleanup of generated code sections.
  607. added Vishal Bhatia <vishal at deja.com> to AUTHORS.
  608. * Bytecode.pm (1.10): support dbmopen, fixes issue 24.
  609. re-added -m, compile as module to .pmc
  610. store AV elems for non-tied AV->MAGICAL >5.6 (i.e. @ISA, ...) (new test 47).
  611. -DA: limcheck PV.
  612. verbosity: added nice1 (condense elements).
  613. name SV indices also.
  614. * Byteloader: support GvCV_set introduced with 5.13.10 [RT#65630]
  615. * perlcc (2.10): fixed -B -r, -B output and run bytecode.
  616. implement --staticxs to workaround DynaLoader problems. use it in t/modules.t
  617. add sopath to PATH on -r. Without -r the sofile should be symlinked so that the
  618. process can find it.
  619. implement --shared and --static, --shared fails on strawberry due to core problems.
  620. implemented getopts bundling: -ScO -e'bla' -v4 -oa is now possible.
  621. disabled some old single-minus switches: -testsuite, -time, -log, ...
  622. requires now double-minus --testsuite, --time, --log, ...
  623. kept legacy handling only for -Wb=.. and -stash.
  624. fixed -B -e'oneliner'.
  625. fixed -B @ARGV, no duplication of @ARGV, c_argv.t 3.
  626. re-added -m|--sharedlib for Bytecode and C (NYI).
  627. print C and CC filtered compiler output.
  628. -v5 adds -v to the compiler options.
  629. -v6 adds -Dfull to the compiler options.
  630. support -Wb= for -B.
  631. fixed -Br for 5.6: add -MByteLoader.
  632. * Stash (1.01): add option xs to print xs modules with -x prefix.
  633. usable via -MO=Stash also.
  634. new option -D for debugging.
  635. omit PerlIO::Layer.
  636. added pod
  637. * Disassembler (1.08): 5.6: fix ldop comments.
  638. add op_type names, add @svnames, add indices, add ldspecsvx type.
  639. * Assembler (0.10): print more flags (as hex) and indices.
  640. better limcheck diagnostics (op,sv,pv).
  641. * cc_runtime514.h: removed from CORE with 5.13.9. [RT#65628]
  642. If so, cp it back. You might need sudo cp. (unchecked)
  643. Renamed not to pollute tests with older perls.
  644. Expanded PERL_MAGIC_taint 't' for 5.6.
  645. * C.xs: added experimental method_cv for the hash-only case, untested.
  646. * t/modules.t: try --staticxs first, try crosscheck without perlcc.
  647. * t/issue24.t: added.
  648. * t/issue45.t: fixed and added 3 more tests.
  649. * t/e_perlcc.t: added to test the new option handling.
  650. * t/testc.sh, t/TESTS: fixed wrong test 39 for 5.8, added 47, 104 (reset), 105 (type-attr).
  651. * t/testplc.sh: added 47.
  652. * t/stash.t: rewritten. allow 5.6, use Test::More, more stable
  653. * t/todomod.pl: added. interactive tool to check log.modules reports and fix TODOs
  654. * status_upd: recommend and fix ./status_upd -f -q -d
  655. -q -d prints only the actual tests
  656. * Changes: added more missing history ca. 1997-2000.
  657. 1.29 2011-01-08 rurban
  658. improve dl_init
  659. * C.pm (1.29):
  660. use DynaLoader::bootstrap_inherit, fixes dl_init when the module has no ISA
  661. DynaLoader. eg. Test::Harness with Time::HiRes
  662. improved CopFILE detection as context for dl_init (test 29)
  663. fix cop_warning cast warnings
  664. print debug messages for beginav and endav
  665. protect against undefined strings, and % in regex
  666. protect against undefined gvcv->GV->EGV (Spiffy)
  667. latefree r-magic regex strings >5.10, fixes a couple of modules
  668. * t/modules.pm: subset use 10 not 11 modules. run tests with -O1
  669. less TODO tests, esp for 5.13
  670. * t/modules.t: fixed binary detection on non-windows (a.out)
  671. * ByteLoader: fixed -Dt for GV
  672. 1.28 2010-12-31 rurban
  673. fixed XSLoader, pmflags, CV and most named methods for 5.14
  674. * Bytecode.pm (1.09):
  675. fixed cv_gv and push_begin del_backref problem (27, ...) > 5.13
  676. special cased op_pmflags: U32 needed since 5.13 (PMf_BASE_SHIFT)
  677. Fixes op_pmflags since 5.12 ((3..4,27..29,31,33), esp. pp_subst
  678. start for Windows 5.12 cop_store_label workaround: Labels disabled for now.
  679. Failed to include CORE hv.c: too large.
  680. mingw 5.12 compiles now again and passes all but 21,33,42..44
  681. Fixed entrytry with Bytecode >= 5.12:
  682. ck_eval upgrades the UNOP entertry to a LOGOP, but B gets us just a
  683. B::OP (BASEOP)
  684. add BEGIN { push|unshift @INC } parts of blocks (test 33)
  685. * Byteloader (0.07):
  686. Support new CvSTASH_set.
  687. Basic op_pmflags U16/U32 support. No version conversion yet.
  688. BSET_gv_fetchpvn_flags: new for empty constant prototypes (fails on 64bit only)
  689. * C.pm: add -fno-destruct (with -O3) with a minimal perl_destruct,
  690. (re-enables -fcog >= 5.10),
  691. add -fro-inc (with -O2) readonly INC and curpad strings,
  692. add -fconst-strings (with -O3) const readonly strings
  693. and const more other fixed strings,
  694. do not boot static core packages (utf8, re, ...),
  695. fixed -O2/-fav-init2: store at wrong avchunk index,
  696. initialise CopFILE and CopSTASHPV static with ITHREADS
  697. improved 5.13 method_named package detection (first and pmreplroot),
  698. in endav still failing (Test::Deep)
  699. fixed overwritten CvSTART for 5.13.x
  700. do not cog/const nullify vars in END blocks
  701. disallow CONST->op_first with CONST_BARE. fixes ExtUtils::Install
  702. better XSLoader::load detection: aliases and defined in END blocks
  703. save XSLoader::load GV (test 46 and modules)
  704. bootstrap also static core packages
  705. add ptr_undef instead of NULL initialization non-threaded
  706. fix many cast warnings
  707. fix AV fill +1
  708. required to run C.xs runloop to find PMOPs for QRs
  709. Fixed entrytry >= 5.12 as in Bytecode:
  710. ck_eval upgrades the UNOP entertry to a LOGOP,
  711. but B gets us just a B::OP (BASEOP)
  712. Fixed XSLoader, loading dynamic modules works now (test 45),
  713. had to set the .pm path in the calling context.
  714. * CC.pm (1.08): many fixes
  715. use new B::C optimizations, new -DF
  716. fixed issue 31 also run C.xs runloop to find PMOPs for QRs,
  717. fixed issue 35 same variable name in different scope (Heinz Knutzen),
  718. fixed issue 36 panic: leaveloop, no cxstack (Heinz Knutzen)
  719. fixed issue 37 orassign (Heinz Knutzen)
  720. fixed issue 38 on and/or return value not just no/yes (Heinz Knutzen)
  721. fixed issue 39 Bizarre copy of ARRAY in leavesub (Heinz Knutzen)
  722. fixed issue 42 remove enter/leave from %no_stack (Heinz Knutzen)
  723. fixed issue 44 aelemfast missing for lexicals (Heinz Knutzen)
  724. fixed issue 47 anonsub in while (Heinz Knutzen)
  725. fixed issue 48 wrong truth value for array assignment in boolean
  726. context (Heinz Knutzen)
  727. fixed issue 49 Can't "last" outside a loop block (Heinz Knutzen)
  728. fixed issue 51 errors on nested if statement with test on multiple variables
  729. (Heinz Knutzen)
  730. fixed issue 52 errors on variable with numeric value used in second
  731. expression of 'and' (Heinz Knutzen)
  732. add labels for alternate ops (e.g. run-time jumps). Not sure yet if the
  733. full alternate subtrees are saved. fixes test 32 (push_label, pop_label),
  734. issue 46. resolve duplicate such labels.
  735. honor $ENV{'PERLMODS'} (by cPanel)
  736. * Disassembler.pm (1.07): read over #! + use Bytecode .plc header.
  737. support pmflags
  738. * Assembler.pm (1.09): support pmflags
  739. * perlcc (2.09): added cc time for --time.
  740. same INC as in caller - omit duplicates
  741. * cc_harness: improve -Bstatic
  742. * t/testc.sh: simplified. Fixed various wrong tests
  743. * t/testm.sh: fixed UAC issues on Win7
  744. * t/test.pl: new faster test functions for the new issues
  745. * t/issue27.t: added (Reported by alexchorny, Apr 25, 2010)
  746. * t/issue29.t: added (Reported by Heinz Knutzen)
  747. * t/issue31.t: added (Reported by Heinz Knutzen)
  748. * t/issue34.t: added (Reported by Heinz Knutzen)
  749. * t/issue35.t: added (Reported and partially fixed by Heinz Knutzen)
  750. * t/issue36.t: added (Reported and fixed by Heinz Knutzen)
  751. * t/issue37.t: added (Reported and fixed by Heinz Knutzen)
  752. * t/issue38.t: added (Reported and fixed by Heinz Knutzen)
  753. * t/issue39.t: added (Reported and fixed by Heinz Knutzen)
  754. * t/issue42.t: added (Reported and fixed by Heinz Knutzen)
  755. * t/issue44.t: added (Reported and fixed by Heinz Knutzen)
  756. * t/issue45.t: added (Reported by Heinz Knutzen), dorassign missing
  757. * t/issue46.t: added (Reported by Heinz Knutzen), fixed by r610
  758. * t/issue47.t: added (Reported and fixed by Heinz Knutzen)
  759. * t/issue48.t: added (Reported and fixed by Heinz Knutzen)
  760. * t/issue49.t: added (Reported and fixed by Heinz Knutzen)
  761. * t/issue50.t: added (Reported by Heinz Knutzen)
  762. * t/issue51.t: added (Reported and fixed by Heinz Knutzen)
  763. * t/issue52.t: added (Reported and fixed by Heinz Knutzen)
  764. * t/issue54.t: added and fixed
  765. 1.27 2010-07-30 rurban
  766. Fixed 1.26 CV regressions for 5.8 and 5.10
  767. * C.pm: add -DF print stringified sv and op flags.
  768. fixed xpvio off-by-one error for 5.10 (test 29)
  769. rewrote XPVCV forwards for >=5.10: (fails before)
  770. 1. only the SV is now forwarded, not the struct.
  771. 2. no duplicate SVs, the CV forward is just a link to one SV (#define CVIX)
  772. removed wrong CVf_ANON check causing CV failures (test 9,10,12). 5.13.3 still failing
  773. fixed CV svsect for 5.8 and 5.10
  774. * Bytecode.pm (1.08): removed wrong CVf_ANON check causing CV failures (test 9,10,12,...)
  775. * perlcc (2.08): added --time, support vprint -1
  776. * t/test.pl, t/bytecode.t: double check failing tests if it works uncompiled
  777. * t/testc.sh: add -D- for no gcc warnings
  778. added -f for testing single optimizations
  779. * t/testm.sh: add -D<args> flags for compiler debugging and link with -g
  780. added -T for perlcc --time
  781. * t/c_argv.t, script/perlcc: properly quote spaces in path of perl and `cwd`/blib
  782. * t/modules.t: add svn rev to B::C::Version
  783. 1.26 2010-07-26 rurban
  784. Start of 5.14 support, CVs broken.
  785. * C.pm: improve -fav-init performance if not usemymalloc: no
  786. calloc, just direct libc malloc.
  787. -O2 uses -fav-init2, i.e. experimental independent_comalloc(),
  788. -O1 uses now -fav-init (Nick Koston + Reini Urban)
  789. Mark a package which is autoloaded from XS.
  790. Fix autoloading of constants AKA const xsubcv via AUTOLOAD [test 27] (Nick Koston)
  791. 5.13.3 support (xpv STASH, MAGIC, ... reorganization), but CVs still failing
  792. Check CVf_ANON when setting cv->GV. Fixes anon subs.
  793. Do not call REGEXP IVX and NVX methods (since 5.11)
  794. * bytecode.pl: CvGv_set since 5.13.3
  795. Fixed byteorder 0x stripping causing wrong bget_swab on 64bit
  796. * B::C::Flags: new. added by Makefile.PL probing independent_comalloc()
  797. * CC.pm: the default -fno-slow-signals adds PERL_ASYNC_CHECK at
  798. the same ops as with 5.13, a major improvement.
  799. * Bytecode.pm (1.07), bytecode.pl: xpvav.xiv_u was removed with 5.13.2 but not
  800. used anymore. read and set av_flags only until 5.12, compile only before 5.10
  801. Check CVv_ANON when setting cv->GV. Fixes anon subs
  802. * bytecode.h: do not PM_SETRE with empty arg. fails since 5.13 debugging
  803. * t/testc.sh, t/TESTS: fail test 44, change threads tests 41-43 to TODO
  804. * perlcc (2.07), cc_harness, t/test.pl: debian specific fixes for their broken
  805. -lperl linker args for ExtUtils::Embed::ldopts.
  806. * t/test.pl: Have complete c/cc TODO/SKIP status in one place.
  807. Fixed killing hangling tests with IPC::Run.
  808. Fixed new cc TODO.
  809. Run CC test 18 even not as AUTHOR
  810. * t/c*.t: make test 27 easier to debug (Nick Koston)
  811. Added test 45 (Nick Koston)
  812. 1.25 2010-04-11 rurban
  813. * C.pm: remove global my_perl, pass it properly around.
  814. * t/c*.t: added test 40 \000 byte in PV failing on ori 5.6.2 (Nick Koston),
  815. added more magic tests for shared vars - n,p,P magic: 39-43. 41 nyi
  816. * t/modules.t: fix -t (run module tests), print header only on full test
  817. * t/modules.pm: do not test core or deprecated modules, esp. do not download perl
  818. Added is_subset.
  819. * t/testm.sh: implement -k
  820. * t/testc.sh, t/TESTS: add 44 for weaken import and magic_killbackrefs #72922
  821. 1.24 2010-02-15 rurban
  822. * C.pm: Fixed off by one array access in magic array init (34)
  823. - valgrind is your friend.
  824. Fixed aelemfast padsv access crash (Text::Tabs on freebsd7)
  825. Fixed wrong stash names in gv_stashpv analog to gv_fetchpv
  826. (Text-Tabs+Wrap t/dandv.t)
  827. * t/testm.sh: implement -s without log file
  828. * t/modules.pm: export skip_modules, silence module scanning STDERR
  829. 1.23 2010-02-14 rurban
  830. * t/testm.sh: chmod +x
  831. * t/modules.t: fix $have_IPC_Run
  832. 1.22 2010-02-14 rurban
  833. Tested with ActivePerl 5.10.0
  834. * bytecode.h: unshare_hek exception for WIN32, not only MINGW
  835. * t/modules.t: Added list of to be skipped modules, which cycle endlessly.
  836. Improve todo message.
  837. * t/testm.sh: add option -s "install skipped modules"
  838. * Makefile.PL, cc_harness, perlcc: fix ldflags for ActivePerl 5.10.0
  839. for MSVC6 (ccversion 12) -opt:ref,icf leads to invalid outfile "pt:ref,icf"
  840. * c+cc test 29 fails on 5.10 randomly. Make it a TODO
  841. 1.21 2010-02-14 rurban
  842. * C.pm: Add missing Nullop for CC on 5.11.4 (cc 12).
  843. Test 38 passes
  844. 1.20 2010-02-14 rurban
  845. * C.pm: #define PERL_CORE broke Null macros on 5.11.4. Define those.
  846. 1.19 2010-02-13 rurban
  847. Almost fixed evaltry (12) with proper cop_seq setup, just solaris and debian
  848. fail sometimes. Tested ok with strawberry 5.10.1
  849. * C.pm: fixed evaltry (test 12) mostly, NVX was shared with 2 xpad_cop_seq ints
  850. which accidently just worked before 1.17 with %s, but not after changing
  851. to the %g representation.
  852. Ignore unused random (overlong) xpviv IV, causing
  853. "warning: this decimal constant is unsigned only in ISO C90"
  854. Defer rv => cv to run-time < 5.10. Fixes ExtUtils::Install
  855. Defer xpvmg->pv init to run-time < 5.10. Fixes MooseX::Types
  856. Check for NV inf. Fixes compilation of DateTime
  857. Defined PERL_CORE: Fxied Windows problems with setjmp undef'ed in XSUB.h
  858. Added Win32 workaround for missing PL_do_undump
  859. Stripped perl_ prefix from perl_get_cv, perl_call_pv, perl_call_method
  860. * CC.pm (1.07): added -fslow-signals.
  861. Disabled inlined pp_enter: Fails on empty cxstack.
  862. Backed out inlining of enterloop: GIMME_V fails on freebsd7
  863. Remove strawberry PerlProc_setjmp definition, #define PERL_CORE fixed that
  864. * Bytecode.pm (1.06): same NVX => xpad_cop_seq fix as in C.pm, added 2 new
  865. bytecodes (cop_seq_low, cop_seq_high), fixed tests 9,10,12. Passes
  866. all tests > 5.6 now.
  867. * bytecode.pl: added cop_seq_low (155), cop_seq_high (156) instead of xnv.
  868. No conversion code for loading older bytecode needed, but fragile (double => 2 int)
  869. * t/modules.t: refactored by Todd Rinaldo (toddr). 4*tests per module:
  870. -s a, exitcode 0, ok, no warnings on stderr
  871. * t/TESTS: added 38, failing on CC (Nick Koston).
  872. added 39, failing everywhere.
  873. * t/test.pl: refactor: Try to timeout on all tests (compiler and exec) if
  874. IPC::Run is installed
  875. * MANIFEST, *.pod: Moved conference pods to ramblings,
  876. removed lib/B/Asmdata.pm again, added t/qr_loaded_module.pm
  877. * t/testm.sh, t/modules.pm: added, -t not working yet though
  878. * t/b.t: $[ => $]
  879. 1.18 2010-02-06 rurban
  880. evaltry (test 12) still broken on most systems.
  881. * C.pm, C.xs: fixed r-magic for 5.6 (ExtUtils::Install,
  882. File::Temp, Template::Stash). need tests for run-time checks (33).
  883. 5.6 misses MG->pregcomp
  884. * t/modules.t: check for a.out (test from toddr)
  885. * Makefile.PL: create lib/B/Asmdata.pm beforehand (toddr)
  886. * ByteLoader: fixed duplicate + missing bl_header for bsd and Darwin
  887. (test from toddr)
  888. * test 37 added - AV self-refs, analog to HVs (never failed, just to
  889. be sure).
  890. Removed -qq from 5.6 tests.
  891. 1.17 2010-02-03 rurban
  892. Fixed now most module failures, non-threaded at least: bootstrap was in
  893. the way. strawberry perl fixes. Fixed test 29, broke evaltry test 12
  894. * C.pm: Added option -Dfull for all full debugging info, set all options.
  895. Skip saving XS bootstrap. Fixes most XS module failures. i.e.
  896. Digest::MD5, Data::Dumper, ..
  897. Fail: Attribute::Handlers, B::Hooks::EndOfScope, YAML, MooseX::Types
  898. 4 for 5.8.9-nt from the top100, and 3 for 5.11.4-nt: Attribute::Handlers,
  899. File::Temp, ExtUtils::Install.
  900. Fixed AV self-references causing endless loops, analog to HVs (test 27)
  901. Fixed Getopt::Long crash with AV D magic (regdata),
  902. save_magic returns now the magic types as string.
  903. Fixed unescaped savere (test ExtUtils::Install).
  904. Fixed GvSTASH "initializer element is not constant" (Test::Harness)
  905. Fixed xrv_list "initializer element is not constant" (Class::MOP < 5.10)
  906. * CC.pm (1.06): Added missing unexported definitions for MSWin32,
  907. >=5.10: newGP, vivify_ref, prepare_SV_for_RV (tests 18, 29).
  908. PerlProc_setjmp, PerlProc_longjmp (tests 12, 32).
  909. Fixed cxinc for 5.11.0
  910. * t/bytecode.t: mixed up 32 with 33.
  911. * t/modules.t, t/top100: new module test, see also the log.modules*
  912. results in the svn repo.
  913. * t/mymodules: added as reference, executed optionally.
  914. * script/cc_harness: ldopts -std if no -B<opt>
  915. 1.16 2010-01-27 rurban
  916. use Moose and benchmark still fails. IO even a regression.
  917. * C.pm: Fixed braces warning for empty xpvcv startfield (Nullany),
  918. register int for warn_sv loop
  919. Fixed hv init for magic hashes, pre-allocate array and xpvhv_aux. (test 34)
  920. Fixed method_named (CPAN #53889, test 35) for B::C, better fix than for B::CC.
  921. Added -DH for HV debuggging.
  922. Fixed HV self-references causing endless loops, i.e. with use Moose, test 36.
  923. * CC.pm (1.05): added experimental -finline-ops. Always on. Can be removed if
  924. it works okay for the new inlined versions.
  925. Inlined pp_enter, pp_reset, pp_regcreset, pp_stringify.
  926. Fixed pp_padsv DEREF for 5.10.
  927. Documented test coverage for each op.
  928. Fixed wrong $PERL511 definition.
  929. Added Opcodes support (no_stack), on CPAN as 0.01.
  930. added pp_pushmark pp_break pp_continue to no_stack handling.
  931. Fixed method_named (CPAN #53889, test 35) assuming there is only const
  932. before method_named. No counter examples found so far.
  933. Changed new OBJ => OBJ->new
  934. More curcop->write_back protection.
  935. * Stackobj.pm (1.00_02): RV fix for 5.11.
  936. * t/testc.sh, t/test.pl: added CC specific tests to increase CC op coverage
  937. after 100.
  938. Switched test 32->101 (arith) with 33->32 (evaltry catch die) as it fails
  939. with 5.11.3.
  940. Added new qr test 33 (Nick Koston), test 34 for magic hashes, test 35 for
  941. broken methodcall syntax (method_named), test 36 for HV self-references.
  942. * TESTS: added test 32 (evaltry catch die): Fails on 5.11.3 C/CC only,
  943. <5.11.3 it works okay. Also tests 33, 34, 35, 36.
  944. * ByteLoader/Makefile.PL: removed cygwin gcc specific stack-protector removal.
  945. It was a bug of mine.
  946. Added more AUTHOR gcc -ansi warnings, just -pedantic not.
  947. * Makefile.PL: Added more AUTHOR gcc warnings, also -pedantic.
  948. Added optional Opcodes PREREQ_PM
  949. 1.15 2010-01-03 rurban
  950. * t/test.pl: Fixed MSWin32 tests again. Lost the 1.13 patches with 1.14.
  951. 1.14 2010-01-02 rurban
  952. * CC.pm (1.04): Fixed entereval/leaveeval for 5.10. Fixes eval "", test 12.
  953. The end of the string CALLRUNOPS needed to be nullified, as in 5.8.
  954. 5.11 CORE also needs a patch for this.
  955. Optimized away SP save/restore for %no_stack ops. Need to read this
  956. from opcode.pl eventually.
  957. PERL_ASYNC_CHECK (pending signals) added after every basic blocks with -O1
  958. and every loop.
  959. * C.pm: More 5.10 union braces.
  960. * Stackobj.pm (1.00_01): Added iv and nv to peek.
  961. Added documentation.
  962. * Bblock.pm (1.03_01): Print the argument (sub) to inspect.
  963. Added missing documentation.
  964. * t/testcore.t: improved. added -fail and a list of failing tests.
  965. C now always with -O3.
  966. * t/c_allow_opts.t: Added for -DALLOW_PERL_OPTIONS.
  967. 1.13 2009-12-31 rurban
  968. Tested with MSVC (MSVC compiles test29 and bigger examples awfully slow!
  969. 7:30min, 30MB mem, 98% CPU, 2GHz)
  970. * C.pm: MSVC fix for "(OP*)Nullany" i.e "(OP*){0}" => "{0}". Fixes
  971. test 27 on MSVC. CC test 12 broken on MSVC AS 5.8
  972. * bytecode.pl: Restore C strictness, printf before declaration.
  973. Undefine debop for MSVC also. Fixed [cpan #53228].
  974. * t/test.pl: Cleanup intermediate MSVC .obj. Skip too slow tests 29
  975. on MSVC, only c.t
  976. Remove >nul for test results on Win32.
  977. More run_cc_perl fixes for Win32.
  978. Be more quiet on MSWin32 also (no 2>/dev/null)
  979. Skip stderr redirection to stdout on cmd.exe tests, t/o.t 5,9.
  980. * t/bytecode.pl: ditto.
  981. * t/TESTS: Fixed 28 for MSWin32 MSVC
  982. 1.12 2009-12-31 rurban
  983. __DATA__ handles work now. Also more Bytecode fixes.
  984. * t/testplc.sh: Added -S: skip all but -S and Concise
  985. * Bytecode.pm (1.05): Adapt RV 5.11 change from SV to IV, detect ROK at
  986. B::IV::bsave analog to C.pm. Fixes test 16.
  987. Set prototype sv_flags at first, so it cannot assert. Fixes tests 27 and 29.
  988. More work on 5.6 compat.
  989. * bytecode.pl: Fixed 5.6 %alias_to sizes.
  990. * bytecode.h: Fix BSET_cop_label for 5.11. Fixes test 21.
  991. * t/bytecode.t: Added DEBUGGING to the mix. 5.11 is now completely the
  992. same as 5.10. Remaining failures are now 9,10,12 for DEBUGGING (or
  993. non-threaded?).
  994. * C.pm: Added xpvuv (coverage in 5.6.2 test 21).
  995. Added PMOP->pmstash/pmstashpv (no coverage yet).
  996. Checked against -Wall -Wextra:
  997. Added missing pmop->stash for 5.8.
  998. Added missing cop->cop_io for 5.8.
  999. Added braces to union inits (MSVC Todo).
  1000. Remove unused dTARG and dSP.
  1001. Fixed CC test 29 on 5.6.2, not checked why.
  1002. Fixed __DATA__ test 15 on 5.10 and 5.11.
  1003. * TESTS: Updated with 5.10.1 CORE results
  1004. 1.11 2009-12-29 rurban
  1005. Fixed 5.11 RVs, added C optimizations to CC
  1006. * C.pm: Adapt RV 5.11 change from SV to IV, detect ROK at B::IV::save.
  1007. Fixes test 16.
  1008. Added -DW for walk, together with -Dp only.
  1009. Forced fullname optimization scalars for B::CC.
  1010. Export save_sig and fixup_ppaddr for CC.
  1011. * CC.pm (1.03): Fixed Perl_gv_SVadd cast warning.
  1012. Added most B::C optimizations. This fixes all threaded tests 15 >= 5.10.
  1013. Call save_sig, fixup_ppaddr not yet.
  1014. * t/test.pl: simplified (and fixed) keep logic
  1015. * t/c_argv.t: cleanup
  1016. 1.10 2009-12-29 rurban
  1017. Fixed @ARGV
  1018. * C.pm: fixed couple of minor bugs detected with new t/testcore.t:
  1019. t/CORE/comp/retainedlines.t => Use of uninitialized value $len, save_hek
  1020. Use of uninitialized value $i in printf at C.pm line 49
  1021. Undefined value assigned to typeglob at C.pm line 2901
  1022. Do not overwrite run-time @ARGV on >= 5.10 (GP and AV). Fixes test c_argv.t
  1023. * t/testcore.t: added
  1024. * t/c_argv.t: added. test @ARGV and perlcc
  1025. * perlcc (2.06): grab_stash only via new -stash, not automatically;
  1026. B::C is better.
  1027. ldopts -std only when modules are given.
  1028. fix for empty options.
  1029. add -sharedxs, -sharedlib; -shared is now for shared linkage,
  1030. -sharedlib to create a shared lib (was -shared before but never worked),
  1031. -sharedxs to also link shared xsubs, no run-time DynaLoader/XSLoader needed.
  1032. 1.09 2009-12-27 rurban
  1033. * C.pm: Cut down the number of AUTOLOAD'ed optrees, search only on
  1034. empty gv->cv (31).
  1035. Added very unsafe -O4/-fcop to eliminate most cops and file + line numbers.
  1036. Added faster -fav-init to -O2, less unneeded av_extend().
  1037. Get rid of fbm_compile (11). Only 5.8.9 is broken.
  1038. * CC.pm (1.02): partially fix eval "" for >=5.8.9, wrong CORE cc_runtime.h
  1039. definition. (test 29 - eval "")
  1040. * t/test.pl, t/c*.t: Simplify C/CC testsuite.
  1041. * t/testc.sh: fixed -E
  1042. Added -o for orig, no -Mblib
  1043. * t/c_o3.t, t/c_o4.t: added
  1044. 1.08 2009-12-23 rurban
  1045. Adapt coding guidelines, add C and cperl coda. Reformat sources.
  1046. * C.pm: Detect AUTOLOAD and CLONE (test 27 and 31).
  1047. 5.10 is now the best release for unoptimized B::C. 5.8 is faster optimized,
  1048. but misses some autoloaded xsubs.
  1049. Simplify PVMG exclusion; all non-magical, not just PAD_OUR, as in Bytecode.
  1050. * Bytecode.pm (1.04): Add missing BM logic to GV >= 5.10. Fixes test 11.
  1051. Fixed op_pmflags logic for 5.10 threaded only, no += 2. Fixes test 2.
  1052. Protect empty match from setting op_reflags. Fixes test 20.
  1053. Add perlversion to the -S generated header.
  1054. Document more options -TI, -TF, -u<package>
  1055. * perlcc: improve help. use Pod::Usage as module, not via cmdline.
  1056. fix previous installation quirks.
  1057. * assemble: improve pod. make it installable.
  1058. * disassemble: make it installable.
  1059. * cc_harness: ditto.
  1060. * Makefile.PL: added script/* as EXE_FILES to install them.
  1061. * t/TESTS, t/testc.sh, t/testplc.sh: test 31 non-xs AUTOLOAD added
  1062. * ByteLoader/Makefile: tuning, bytecode.h triggers now byterun.c
  1063. * bytecode.h: Specialize pregcomp on 5.10; add PL_regex_pad[0] for
  1064. pregcomp if missing. fixes tests 3,4,5,7,31 on 5.10.
  1065. 1.07 2009-12-19 rurban
  1066. * C.pm: fix fbm_compile (INDEX) for >= 5.10. gv_list is already a pointer.
  1067. rewrite PVGV (ie PVBM) init for >= 5.10. (test 11)
  1068. Added CV->save_magic (untested)
  1069. Fixed two wrong my decelarations detected by the new Od debugger.
  1070. * README: Clarify DIFFERENCES section for CC only. Esp. the
  1071. Context of ".." section. New test 30
  1072. * t/TESTS, t/testc.sh, t/testplc.sh: test 30 added for Context of ".."
  1073. * t/testc.sh: fix -k logic, keep .pl for -O tests
  1074. 1.06 2009-12-18 rurban
  1075. Going public on the Perl birthday
  1076. The first public compiler re-release since it was removed from CORE.
  1077. * C.pm: Had to disable -O1 -fcog (pv_copy_on_grow) on 5.10 and higher
  1078. until I find out how to fool S_unshare_hek_or_pvn. This fixes all C
  1079. -O1 and -O2 tests. Warn about this.
  1080. Fix wrong RV init on *5.10* for test 29 also, as with 5.11.
  1081. Simplify __DATA__ handling. Warn when -O3 or -fsava-data is missing.
  1082. Enable working -fsava-data on 5.8 and 5.10 threaded. Fixes couple of tests 15.
  1083. Fix 5.8/5.10 PVMG pv = &PL_sv_undef for empty comppadnames
  1084. * t/testc.sh: -k keep added. Delete temporaries on PASS as new default.
  1085. -E added. Dump preprocessed source file with cc -E as _E.c (was default before)
  1086. * Version bump to official:
  1087. B::C 1.06 (1.05 is in 5.8.9)
  1088. B::CC 1.01
  1089. B::Bytecode 1.03
  1090. B::Asmdata 1.03
  1091. B::Assembler 0.09
  1092. B::Disassembler 1.06
  1093. B::Bblock 1.03
  1094. ByteLoader 0.07
  1095. 1.04_33 2009-12-17 rurban
  1096. * t/cc*.t: skip some memory eating failing tests.
  1097. * MANIFEST: dummy lib/B/Asmdata.pm added to fix cpan smokes on BSD.
  1098. Thanks to Slaven Rezic.
  1099. * C.pm: fix tests 14,16,23 on >=5.10, missing AV magic for
  1100. CV main::a, protect PVMG from SvPAD_OUR.
  1101. fix wrong RV init on 5.11 for test 29
  1102. * CC.pm: fix ARGS >=5.10 (in require, test 28).
  1103. Enable quiet. No -q for quiet, just -v (verbose) or any -D switch turns
  1104. on verbose.
  1105. * t/testc.sh: Added test 27 (import), test 28 (require), test 29 (use)
  1106. [Nick Koston]
  1107. 1.04_32 2009-12-14 rurban
  1108. Only two 5.10 B::C bugs remaining!
  1109. * C.pm: added missing FBM logic to GV >= 5.10 (test 11).
  1110. Forbid MAGIC on non-magival SVs >= 5.10 (tests 14 + 23).
  1111. Special PVMG PL_sv_undef string. (namesv problem on 10,14,23)
  1112. 1.04_31 2009-12-14 rurban
  1113. * C.pm: fix test 21 on 5.10 "Bad free() ignored". Dynamically
  1114. allocate CopLABEL.
  1115. * Makefile.PL: fix the make depend section > 5.9
  1116. * t/testc.sh: fix -D option
  1117. 1.04_30 2009-12-13 rurban
  1118. Better 5.6 support, but Bytecode compiler still disabled.
  1119. Not even the Byteloader works for 5.6 assembled code. The Disassembler
  1120. does not stop at ret. Fixed several C tests.
  1121. * bytecode.pl: renumbering policy: <= 5.6 squeeze, >= 5.8 fixed
  1122. to force exact bytecode numbering as with 5.8.
  1123. Allow float versions, such as 10.001 for subreleases.
  1124. Add perlversion to header.
  1125. Add byteorder check logic.
  1126. Added logic to include all possible unsupported ops, all holes.
  1127. bytecode table checked for 5.6.1, 5.6.2, 5.8.0, 5.8.1-5.11
  1128. Note, that I found official and contradicting 5.6.1 releases.
  1129. ActiveState 5.6.1.626 had no op_children, the unix release tarball
  1130. with 5.6.1 (called Trial 1) still has it.
  1131. * ByteLoader.pm (1.06_06): better bytecode numbering.
  1132. * Asmdata.pm (1.02_02): strict numbering along 5.8.
  1133. Unsupported ops are now also included, with PUT method 0.
  1134. * Assembler.pm (0.07_07): Add perlversion to header
  1135. * Disassembler.pm (1.05_04): Add perlversion to header.
  1136. Print header only for existing.
  1137. * BcVersions/Asm*.pm, BcVersions.pod: added for most versions with the
  1138. CORE compiler.
  1139. * disassemble: Make it work with the older Disassembler.
  1140. Make it work with older bytecode >= 5.8 via Asmdata unsupported ops.
  1141. * i386.xs, jitcompiler.pl: removed (seperate module)
  1142. * bytecode.h, C.xs: Fixed for 5.6, tested with 5.6.1 with MSVC.
  1143. * bytecode.h, byterun.c: add static int force = 0. Override it to 1 to
  1144. try out executing older bytecodes.
  1145. * C.pm: fix test 16 on 5.10 again, non-threaded only (GVAV magic).
  1146. first fix in 1.04_24, broken in 1.04_28. On 5.11 I have a broken
  1147. RV handling here.
  1148. Remove version and Regexp::DESTROY from the automatic methods
  1149. (experimental).
  1150. First attempts with pv and hek consting failed.
  1151. * t/testc.sh, t/testplc.sh: support proper cmdline arguments, add -h for
  1152. help
  1153. Fixed test 5 by fixing the wrong test.
  1154. * perloptree.pod: renamed from perloptreeguts.pod. Added links.
  1155. 1.04_29 2009-12-07 rurban
  1156. Disable the Bytecode compiler for 5.6. Fixed besides the __DATA__ handle
  1157. (test 15) all remaining 5.8 C bugs.
  1158. * C.pm: assign the PVX of GV also for empty stashes (main::) to avoid
  1159. destruction failures at Perl_pad_undef() SvPVX_const(namesv) == '&'.
  1160. Fixes tests 14 and 23
  1161. * byterun.c: No assert on empty bs_sv, it is &PL_sv_undef.
  1162. Map missing -Dv on 5.6 to -Df i.e. -D256
  1163. Added better debugging output: setter values.
  1164. * STATUS: re-run CORE tests, list cmdlines, update status
  1165. * Disassembler.pm: added gen_header_hash() for gen_header output.
  1166. add to documentation.
  1167. * Bytecode.pm: -S uses gen_header_hash for gen_header output.
  1168. 1.04_28 2009-12-06 rurban
  1169. * C.pm: fix -fcog (Copy on Grow with -O1 and -O2) for >= 5.10 by a new
  1170. SVPV.
  1171. Statically initialize PVs with a union layout trick. Use char* as first
  1172. union member.
  1173. Revert xpvcv+svsect changes to pre-initialize those structs against
  1174. gvcv recursion.
  1175. * t/b.t, t/o.t, t/stash.t: fix tests for 5.6.2
  1176. * bytecode.c: byteorder swab only if same length.
  1177. 1234 => 4321, 12345678 => 87654321.
  1178. Skip a 0x prefix for byteorder in the header. Perl 5.6 had this.
  1179. * Assembler.pm (0.07_06): 5.6 byteorder fix: until 5.6 the
  1180. $Config{byteorder} was falsely dependent on ivsize, we need longsize.
  1181. Add 0x to byteorder in header again, as with 5.6.
  1182. * t/testc.sh: do not run old leftovers. some 5.6 optimizations
  1183. * t/c_o1.t, t/c_o2.t, t/cc_o2.t, t/cc_o2.t: added
  1184. * t/test.pl: support -O1 and -O2
  1185. * broke ByteLoader
  1186. 1.04_27 2009-12-04 rurban
  1187. * CC.pm (1.02_03): fixed endless loop in optimized sort. The sortcv
  1188. cmp needed a return NULL (test 19).
  1189. * c.t, cc.t: add failing tests as TODOs
  1190. 1.04_26 2009-12-02 rurban
  1191. * C.pm: remove nv->IVX for 5.10 (Can't locate object method "IVX" via
  1192. package "B::NV").
  1193. protect mg->OBJ when SCALAR (Can't call method "save" on unblessed
  1194. reference).
  1195. fix NV isa IV, to fix test 23 (Nick Koston).
  1196. fix CopLABEL for 5.11 (test 21)
  1197. fix PMOP extflags, esp. for split on >= 5.10 (test 5 + 7)
  1198. add fbm_compile() to BM::save >= 5.8 (test 11) (Nick Koston)
  1199. * t/c.t, t/testc.sh: added tests 23, 24 (Nick Koston)
  1200. * Bytecode.pm (1.02_04), bytecode.h: store and set PMOP reflags
  1201. as U32. Fixes tests 2-4,7
  1202. Start of backporting Perl 5.6
  1203. 1.04_25 2009-11-30 rurban
  1204. * C.pm: fixed IO for 5.11: LINES => IVX.
  1205. specialize GvLINES = -1 and protect against U32 signed-ness.
  1206. fixed test 8 main::AUTOLOAD (unoptimized only)
  1207. * t/test.pl: enable -Mblib for all Perl versions.
  1208. fix 5.6.2 ldopts by explicit checking of (-lperl|CORE\/libperl5).
  1209. make test works now for 5.6.2
  1210. * t/cc.t: adapt TODOs
  1211. * t/c.t: add TODOs 15 for 5.6
  1212. * script/perlcc: a.exe for cygwin also
  1213. 1.04_24 2009-11-29 rurban
  1214. * C.pm: fixed more CV basics (test 9), just stash for autoload missing
  1215. (test 8).
  1216. PVLV adjusted, but no testcase yet.
  1217. IO adjusted. Fixes test 4.
  1218. re-enabled Perl 5.6, all tests but 8,15 pass with t/testc.sh. make test not.
  1219. added option -DO, more OP info than with -Do.
  1220. added saving "main::" CVs. Fixes test 16.
  1221. Fixed PMOP op_pmreplroot for >= 5.10 (for SUBST). No test
  1222. * t/TESTS, t/testc.sh: added 20 for qr// bug in 5.10
  1223. * t/c.t: remove TODO status from tests 14-16
  1224. 1.04_23 2009-11-22 rurban
  1225. * yapc_bratislava08.pod: title fix
  1226. * SIGNATURE: added
  1227. * C.pm: GvGP handling improved. added more sect comments.
  1228. added -u option "unused" not to print verbose debugging info
  1229. for unused subs.
  1230. Fixed CV XPVCVIX initialisation - off-by-one error, wrong CvFLAGS.
  1231. Fixes test 6.
  1232. * run perltidy -i=2
  1233. 1.04_22 2009-11-16 rurban
  1234. * C.pm, CC.pm: fixed illegal pad in ASSERT_CURPAD_ACTIVE("pad_sv")
  1235. with DEBUGGING. Simply forgot to set PL_comppad
  1236. 1.04_21 2009-11-07 rurban
  1237. * yapc_bratislava08.pod: added
  1238. * C.pm: fixed CALLREGCOMP >=5.10 by using dynamic newSVpvn as in ByteLoader
  1239. 1.04_20 2008-06-25 rurban
  1240. * t/TESTS: numbered.
  1241. * t/TESTS: added sub FETCHSIZE to test 16. required now
  1242. * C.pm, CC.pm: change debug globals to hash.
  1243. * C.pm: Fix B::RV::save for 5.10
  1244. * CC.pm: 5.10 fixed GvSV to GvSVn (PERL_DONT_CREATE_GVSV), fix cc test 3+4 crash
  1245. * Artistic, Copying: added. Clarified perl license.
  1246. * Bytecode.pm: fixed IO=>PVNV problem in test 15.
  1247. * bytecode.pl, bytecode.h: rewrote gp_sv and gp_file setters
  1248. with x (special setters). Fixes unshare hek assert in test 15, and force
  1249. creation of GVSV.
  1250. * Assembler.pm 0.07_05: cygwin text-mount fixes with \r\n
  1251. * t/testplc.sh, t/testc.sh: require bash, accept testnumber args
  1252. * Asmdata.pm: fix PORTABILITY docs
  1253. * t/testc.sh: -Bdynamic: link to shared libperl
  1254. * cc_harness: simplify. fixed for -Bdynamic -E
  1255. 1.04_19 2008-06-08 rurban
  1256. * CC.pm: CXt_LOOP check rewrite, use now CxTYPE_no_LOOP()
  1257. * CC.pm, t/*.t: useithreads, not usethreads
  1258. * bytecode.t, test.pl: TODO handling: do not print "ok 1 #"
  1259. * b.t: fixed skip logic, better skip message
  1260. * Bblock: fixed to work without B::Concise (5.6.2)
  1261. * C.xs: add PM_GETRE for 5.6.2 and earlier
  1262. * CC.pm: Fix PP_EVAL hack from 1.04_18
  1263. * Bytecode: fixed IO::SUBPROCESS error (test 15)
  1264. * cc_harness: check static libperl.a, else try dynamic. Support -E
  1265. * ByteLoader: support different byteorders (Disassembler not yet)
  1266. * ByteLoader, Assembler, bytecode.pl: add archflags to header, relax
  1267. platform strictness.
  1268. * t/stash.t fixed for 5.10
  1269. * Disassembler: added hashref return for get_header in scalar context.
  1270. * Bytecode: fixed compiler crash/assertions for GV without GP (test 11)
  1271. 1.04_18 2008-06-04 rurban
  1272. * Fixed t/assembler.t on 5.6.2
  1273. * Added ByteLoader::unimport (from 5.6.2)
  1274. * ByteLoader: Fixed bytecode crashes for 5.10+5.11 in 2-5,7 by
  1275. removing PMf_COMPILETIME from op_pmflags. Reason: empty
  1276. check_substr in INTUIT. (6 still failing)
  1277. * ByteLoader: Fixes for 5.11 by using PM_SETRE (test 7 still failing)
  1278. * Bytecode: removed op_reflags. pregcomp with op_pmflags alone
  1279. is enough to reconstruct it.
  1280. * C,CC: enabled static_ext + DynaLoader boot section again. Fixed in
  1281. cygperl.
  1282. * CC: fixed Bug#55302 PP_EVAL by adding PP_EVAL_thr for threaded perl.
  1283. cc_runtime.h was always wrong on this!
  1284. 1.04_17 2008-04-20 rurban
  1285. Added Fedora Core 1 as test system (5.6.2, 5.8.3, 5.11.0@33708 + valgrind)
  1286. * ByteLoader: Fixed broken BYTEORDER check (for 32int)
  1287. * ByteLoader: Remove allowing older versions until we have
  1288. an opcode table for older versions.
  1289. * ByteLoader: Fixed SIGSEGV with older gcc (3.3.2) at
  1290. bstate->bs_obj_list[0] = NULL
  1291. * ByteLoader, C.xs: Newx() support and more for older perl's.
  1292. Tested with 5.8.3
  1293. * bytecode.pl: Fixed <11 op_reflags (double definition)
  1294. * bytecode.pl: Support 8-10 version syntax (op_pmstash, cop_io)
  1295. * Makefile.PL: added MKPATH blib/bin
  1296. * added ByteLoader/ppport.h
  1297. * fixed t/stash.t for 5.11
  1298. 1.04_16 2008-04-14 rurban
  1299. * ByteLoader: Fix PL_tokenbuf for older perls without PL_parser
  1300. * B::C: walkoptree_slow for verbose statistics op_count.
  1301. * Consistent in -v verbose and not verbose.
  1302. * Workaround for invalid pad in save_context.
  1303. * Added -Dp for verbose package cache printing.
  1304. * -v verbose adds more generated comments: op struct fields
  1305. * Fixed cop_label for 5.11 (Change #33656)
  1306. * Fixed make subdirs-test error in 5.8.8
  1307. * Fixed RT#52920 "invalid cop_free of nullified cop" for B::C
  1308. 1.04_15 2008-04-11 rurban
  1309. Highlights: bytecode and ByteLoader portability preparation and
  1310. commented disassembler output. PVGV and new REGEX still broken.
  1311. Fixes for no ithreads.
  1312. * Fixed verbose Bytecode for old B::Concise (5.8.8). t/testplc.sh
  1313. failed before.
  1314. * ByteLoader: Work on portability (different arch, version and sizes).
  1315. Added bl_header.
  1316. Changed macro BYTECODE_HEADER_CHECK to function bytecode_header_check().
  1317. Fixes for no threads.
  1318. * bytecode.h: pregcomp fix for 5.10 w/o threads
  1319. (Thanks to david@cantrell.org.uk for his cpantest for netbsd).
  1320. use xpv_cur and not xpv_len for the rx length (len - 1) to strip off
  1321. the ending nul byte.
  1322. 5.10: new minlen check aborts
  1323. * ByteLoader security: added strconst maxsize flag to bytecode.pl
  1324. for buffer overflow checks.
  1325. * Bytecode -DA for devel assertions of absolute or probably wrong opindex
  1326. pointers (nyi)
  1327. * disassemble, B::Assembler: commented output, similar to -MO=Bytecode,-S
  1328. Added backwards option --bare for older assemblers.
  1329. * assemble, disassemble: added pod
  1330. * B::Disassembler:
  1331. Provide default printers print_insn (commented) and print_insn_bare.
  1332. Portability: Use the header settings from the .plc and not the current
  1333. perl settings.
  1334. * B::Assembler 0.07_03, B::Disassembler 1.05_02, ByteLoader 0.06_03:
  1335. Added longsize to the bytecode header, just for xcv_depth.
  1336. * B::Debug 1.05_03: Fixes for no threads.
  1337. * Makefile.PL: Fixed script/perlcc.PL dependency
  1338. make: *** No rule to make target `script/perlcc', needed by
  1339. `blib/bin/perlcc'.
  1340. (Thanks to david@cantrell.org.uk for his cpantest for solaris)
  1341. * Added test TODO's, Added perloptreeguts.pod
  1342. 1.04_14 2008-03-24 rurban
  1343. * Fixed some 1.04_13 +x executable permissions in docs. Windows habits.
  1344. 1.04_13 2008-03-24 rurban
  1345. * Fixed B::C pv init in 5.10. Forgot refcnt and flags.
  1346. * Added "Other perl to exe compilers" section to perlcompile.pod.
  1347. This is even a FAQ.
  1348. * Added the NOTES to perlcompile.pod
  1349. * Added temp. perloptreeguts.pod. In work, also at the wiki.
  1350. * Fixed Bytecode op_pmflags assertions.
  1351. * Added orangesect for enough regexp space in RE's sv_any.
  1352. Engine not initialized though.
  1353. * Hangs in C/CC executables at an op_free(PL_main_root) trying to free
  1354. the static op structs because the earlier op_seq -1 hack is gone now,
  1355. and opt_static was replaced by opt_latefree. Set now opt_latefree = 1.
  1356. This fixed tests 1 and 13. Slowly making progress step by step.
  1357. 1.04_12 2008-03-16 rurban (first upload)
  1358. * Fixed bug #40435 CC: Can't locate object method "_save_common_middle"
  1359. via package "B::FAKEOP"
  1360. * move tests from [bc]*.t into shared TESTS file.
  1361. * fixed remaining ugly Bytecode bug in B::AV::bsave
  1362. $_ = $_->ix for @array.
  1363. Now we are at the same state as with 5.9.4
  1364. * fixed wrong bc cop_warning cast for 5.8
  1365. * fixed CC pmreplroot and pmreplstart fields
  1366. * make C and CC less verbose, honor -v, -q ignored.
  1367. 1.04_11 2008-03-09 rurban
  1368. * removed Jit and Asm stuff. Maybe as seperate packages somewhen.
  1369. But targeting PIR makes more sense.
  1370. * added STATUS
  1371. * added old Changes from the new git clone repo by Sam Vilain
  1372. * fix C cop
  1373. * fix C savepvn apparently
  1374. * work on HV init - crashes at invalid entry
  1375. * use run_cc_test
  1376. 1.04_10 2008-02-26 rurban
  1377. * change bc pvx access
  1378. dummy struct bytestate_xpv, so pv has the same fields as with 5.8,
  1379. seperated from the sv. The sv is seperated from the pv.
  1380. TODO: different strategy for B::C, must link xpv to sv
  1381. * add and parse Assembler comments
  1382. * add Bytecode comments to -S output unless -q
  1383. * change op_reflags from U16 to U32
  1384. * guarantee ByteLoader backwards compatibility: Accept lower versions also.
  1385. 1.04_09 2008-02-25 rurban
  1386. * restored 5.8 backwards compatibility, mainly for test comparison.
  1387. CPAN installation will abort.
  1388. * make t/test*.sh PERL independent
  1389. * fixed B::C GV init crashes (SvPOK assertion)
  1390. * added B::C RE section
  1391. * fixed B::C xpvcv and xpvnv section
  1392. * comment Bytecode -S nice ops to re-assemble them without errors
  1393. * added new asm opcode op_reflags
  1394. * removed Bytecode cop_arybase for 5.10
  1395. * 5.8 compatibility: fixed bytecode.pl versioning, Asmdata creation
  1396. (exact same for 5.8.8), asmdata.t, b.t tests
  1397. * improved make clean
  1398. * add ByteLoader -Dt and -Dv debugging
  1399. * don't link against jit code against possible sideeffects
  1400. * fixed c.t and cc.t tests
  1401. 1.04_08 2008-02-22 rurban
  1402. * fixed t/b.t tests for 5.11 (REGEXP, ref RV => IV)
  1403. * fixed Makefile.PL deps to ignore the interim .pl files
  1404. * added PMOP reflags
  1405. * added madprop to B-1.18_01 and B::C (if provided by B)
  1406. * enhanced B::Debug 1.05_02
  1407. * fixed B::C PL_cshlen (already initialized since 5.10)
  1408. * fixed B::C GvFILE
  1409. * fixed various (SV)xpv list casts and inits,
  1410. * fixed B::C xpvnv_list for 5.10
  1411. * fixed B::C xpvio_list for 5.10
  1412. * fixed B::C pmopsect for 5.11
  1413. * bootstrap also all $Config{static_ext}, not only dynamic stashes
  1414. 1.04_07 2008-02-20 rurban
  1415. * moved bstate->bs_pv.xpv_pv slot to bs_pv.xiv_u.xivu_p1
  1416. * fixed pv_free
  1417. * added op_pmflags 2 to match PMOP
  1418. * moved B into lib/B
  1419. * fixed ByteLoader Makefile deps
  1420. * added -DM flag to Bytecode backend
  1421. * added perlcompile.pod and Perl_5_Internals.htm
  1422. 1.04_06 2008-02-19 rurban
  1423. * no crashes anymore for 5.10, just op_pmflags & PMf_ONCE assertions.
  1424. * blead@32980 crashes in tests 11,16,17,18
  1425. * enhanced B::Debug (no version bump)
  1426. * fixed general op_list inits, and specials for av, hv
  1427. * almost fixed pv within sv handling
  1428. * added -O=C,-DS for SV debugging
  1429. 1.04_05 2008-02-18 rurban
  1430. * added t/test.pl and t/test*.sh to MANIFEST.
  1431. * fixed ByteLoader reading from the <DATA> filter.
  1432. * fixed -H .plc header parsing
  1433. * updated Bytecode options in NOTES and pod
  1434. * added -O=Bytecode,-v option
  1435. * fixed PL_preprocess and SvREPADTMP_off for 5.11
  1436. 1.04_04 2008-02-08 rurban
  1437. * added jitcompiler macros
  1438. 1.04_03 2008-02-05 rurban
  1439. * added Jit and Asm layout, fixed Makefile deps
  1440. 1.04_02 2008-01-22 rurban (never uploaded)
  1441. * removed from CORE, now on CPAN.
  1442. * added byteorder to bytecode header.
  1443. * added support for 5.10 (NOT WORKING!), 5.9.5 not tested.
  1444. up to 5.8.x already in CORE, so disabled.
  1445. add back support later, when C/CC is improved or more features
  1446. are added.
  1447. * added type hekindex
  1448. * added c.t and cc.t tests
  1449. * extended bytecode.pl format: added version logic
  1450. to have strictly consecutive indices
  1451. 1.04_01 2008-01-15 rurban (never uploaded)
  1452. * first package layout for all now non-CORE packages.
  1453. ===================================================================
  1454. B::C was at 1.05 when removed from core with 5.9.4.
  1455. Nicholas Clark <nwc10+p5p4@colon.colondot.net> 2007-05-07 15:35:56
  1456. bytecode.pl: Exterminate!
  1457. ext/B/B/Asmdata.pm: Exterminate!
  1458. Nicholas Clark <nwc10+p5p4@colon.colondot.net> 2007-05-07 14:53:05
  1459. Given that @optype and @specialsv_name are hard coded tables, it seems
  1460. more logical for them to be in B.pm, rather than in the "boilerplate"
  1461. for the machine generated B/Asmdata.pm
  1462. Marcus Holland-Moritz <mhx-perl@gmx.net> 2004-08-29 13:22:48
  1463. Fix typo in B::Assembler.
  1464. Marcus Holland-Moritz <mhx-perl@gmx.net> 2004-08-29 13:21:50
  1465. Skip ext/B/t/assembler.t when configured without B.
  1466. Rafael Garcia-Suarez <rgarciasuarez@gmail.com> 2003-08-09 21:13:27
  1467. Remove ByteLoader from the list of modules whose compilability should
  1468. be tested : it's loaded (at runtime) by ext/B/t/bytecode.t (as Enache
  1469. pointed out.)
  1470. chromatic <chromatic@rmci.net> 2002-05-10 07:43:25
  1471. added ext/B/t/o.t
  1472. Mattia Barbon <mbarbon@dsi.unive.it> 2002-01-12 00:29:48
  1473. @14216 B::C, perlcc.PL, B.xs, B.pm, t/TEST, C.xs
  1474. Message-ID: <3C3F756C.4581.2E2A938@localhost>
  1475. B::C (1.01): added B::C::InitSection, ...
  1476. Mattia Barbon <mbarbon@dsi.unive.it> 2002-01-06 12:44:30
  1477. @14104 B, B::C, perlcc, t/TEST
  1478. Message-ID: <3C38389E.7831.493570@localhost>
  1479. Jarkko Hietaniemi <jhi@iki.fi> 2001-12-21 14:42:31
  1480. @13830 packing I32 with L is not nice, need l; from Wolfgang Laun.
  1481. Jarkko Hietaniemi <jhi@iki.fi> 2001-12-19 16:59:02
  1482. @13807 One more embedded (?sx) de-embedded, from Wolfgang Laun.
  1483. Jarkko Hietaniemi <jhi@iki.fi> 2001-12-19 15:25:27
  1484. @13802 B::Assembler/B::Disassembler patches and test;
  1485. from Wolfgang Laun.
  1486. TODO: getting perlcc working.
  1487. Michael G. Schwern <schwern@pobox.com> 2001-12-14 20:59:13
  1488. @13697 BBlock: Some weak docs
  1489. Message-ID: <20011215005913.GC28596@blackrider>
  1490. Michael G. Schwern <schwern@pobox.com> 2001-12-14 20:14:14
  1491. @13695 Adding B::Asmdata docs
  1492. Message-ID: <20011215001414.GA25077@blackrider>
  1493. Jarkko Hietaniemi <jhi@iki.fi> 2001-11-29 02:22:02
  1494. @13346 Change $=, $., $*, $%, and $- to be IVs instead of longs.
  1495. Jarkko Hietaniemi <jhi@iki.fi> 2001-11-16 01:38:41
  1496. @13034 Add the fruits of Larry Shatzer's version verifying script.
  1497. (There are some straddlers, but they will be fixed in the
  1498. upcoming releases of the modules.)
  1499. (Stamped with v1.00)
  1500. Jarkko Hietaniemi <jhi@iki.fi> 2001-09-16 22:36:58
  1501. @12040 Stamp B::Assembler with v0.03
  1502. Jarkko Hietaniemi <jhi@iki.fi> 2001-07-01 17:20:38
  1503. @11061 Make 'compile' target a little less broken.
  1504. Still very broken, though: -Wall warnings from
  1505. the generated code, boot_Foo prototypes missing,
  1506. can't autoload Fcntl::SEEK_CUR et alia, ...
  1507. Jarkko Hietaniemi <jhi@iki.fi> 2001-06-27 13:36:40
  1508. @10979 "lose the looses", from Abhijit Menon-Sen
  1509. Richard Soderberg <p5-authors@crystalflame.net> 2001-06-21 09:01:22
  1510. @10780 Step 2: Use the new PM_GETRE/SETRE macros everywhere.
  1511. Message-ID: <Pine.LNX.4.21.0106210657400.1693-100000@oregonnet.com>
  1512. Gurusamy Sarathy <gsar@cpan.org> 2001-03-19 08:07:09
  1513. Subject: Re: sync sync sync: have I missed any patches?
  1514. Replace djSP with dSP.
  1515. Mark-Jason Dominus <mjd@plover.com> 2001-01-16 14:43:18
  1516. Subject: [PATCH @8436] Eliminate op_children
  1517. (Replaced by #8448) Traces of op_children (cleanup of #8442)
  1518. (Replaced by #8448) More op_children traces (cleanup of #8442).
  1519. Subject: [PATCH #3 @8436] Re: Eliminate op_children
  1520. Replace #8444 and #8445.
  1521. Gurusamy Sarathy <gsar@cpan.org> 2001-01-30 14:20:24
  1522. integrate changes#7984,7987,8010 from mainline (gets rid of
  1523. dTHR which has been a noop for a while now, except for the
  1524. compatibility definition in thread.h)
  1525. @8010 remove dTHR;
  1526. Gurusamy Sarathy <gsar@cpan.org> 2000-12-18 03:37:02
  1527. @7518 UNIVERSAL::can
  1528. Gurusamy Sarathy <gsar@cpan.org> 2000-12-18 00:03:38
  1529. Fix a couple of compiler-noted nits in #7235.
  1530. Fix of sorts for bug id 20000901.092. There seems to be no trace
  1531. of a 'pmshort' anywhere in the B, so the offending line was simply
  1532. removed.
  1533. Gurusamy Sarathy <gsar@cpan.org> 2000-12-17 22:49:13
  1534. Subject: [ID 20000928.002] perlcc & ByteCode.pm option mismatch
  1535. Did not apply cleanly, manual intervention was needed.
  1536. Subject: [ID 20001003.006] B::Debug not -w clean
  1537. Test harness update to sync with the new perlcc,
  1538. from Simon Cozens.
  1539. Gurusamy Sarathy <gsar@cpan.org> 2000-11-27 18:11:21
  1540. Bytecompiler patches from Benjamin Stuhl.
  1541. More bytecompiler.
  1542. Subject: [PATCH blead] B:: missing dependency
  1543. Byteloader 0.04
  1544. Gurusamy Sarathy <gsar@cpan.org> 2000-11-27 13:53:18
  1545. U8->U16 CvFLAGS(cv)
  1546. Jarkko Hietaniemi <jhi@iki.fi> 2001-10-25 18:07:58
  1547. * make re, Opcode, File::Glob and B threadsafe
  1548. * include XS_VERSION in MY_CXT_KEY (tweak for change#12652)
  1549. Jarkko Hietaniemi <jhi@iki.fi> 2001-04-05 04:00:33
  1550. Integrate changes #9544,9547,9549(perlio),9550,9551 from
  1551. maintperl into mainline.
  1552. "double" should be "NV"; standard typemap is missing entry
  1553. for NV
  1554. bailey <bailey@bailey_vms> 2000-02-09 09:09:45
  1555. Resync with mainline
  1556. Gurusamy Sarathy <gsar@cpan.org> 2000-02-25 02:50:04
  1557. @5250 more Compiler tweaks for useithreads
  1558. Gurusamy Sarathy <gsar@cpan.org> 2000-02-21 08:02:16
  1559. @5178 get Compiler "working" under useithreads
  1560. Gurusamy Sarathy <gsar@cpan.org> 2000-02-19 18:33:05
  1561. @5150 more B fixups to cope with empty GVs (these can only happen in pads)
  1562. Gurusamy Sarathy <gsar@cpan.org> 2000-02-18 04:57:43
  1563. @5125 Compiler fixups from Jan Dubois
  1564. Gurusamy Sarathy <gsar@cpan.org> 2000-01-27 04:56:48
  1565. @4910 various pod nits identified by installhtml (all fixed except
  1566. unresolved links)
  1567. Gurusamy Sarathy <gsar@cpan.org> 2000-01-26 20:10:26
  1568. @4905 s/STOP/CHECK/ blocks
  1569. bailey <bailey@bailey_vms> 2000-01-20 00:25:30
  1570. @4821 Quick integration of mainline changes to date
  1571. Gurusamy Sarathy <gsar@cpan.org> 2000-01-06 11:51:07
  1572. @4763 fix various C-backend shenanigans
  1573. Gurusamy Sarathy <gsar@cpan.org> 1999-12-08 00:16:21
  1574. @4662 typos in change#4546
  1575. Gurusamy Sarathy <gsar@cpan.org> 1999-12-03 07:52:50
  1576. @4631 support -a switch to append bytecode to an existing file and make
  1577. perlcc use it (from Tom Hughes <tom@compton.nu>)
  1578. Gurusamy Sarathy <gsar@cpan.org> 1999-12-01 02:00:09
  1579. @4602 more complete pseudo-fork() support for Windows
  1580. Gurusamy Sarathy <gsar@cpan.org> 1999-11-11 11:32:54
  1581. @4546 avoid stash pointers in optree under USE_ITHREADS
  1582. Gurusamy Sarathy <gsar@cpan.org> 1999-11-11 07:04:20
  1583. @4545 another change towards a shareable optree: avoid pointer to filegv
  1584. in COP; revert parts of change#4485 and s/xcv_filegv/xcv_file/
  1585. (CvFILE() may yet come in handy somewhere); adjust compiler doodads
  1586. to suit
  1587. Gurusamy Sarathy <gsar@cpan.org> 1999-11-04 19:25:45
  1588. @4516 change#4485 didn't do the right thing for B::Bytecode
  1589. Gurusamy Sarathy <gsar@cpan.org> 1999-11-04 18:28:29
  1590. @4515 implement STOP blocks and fix compiler to use them (minimally
  1591. tested)
  1592. Gurusamy Sarathy <gsar@cpan.org> 1999-10-29 08:08:50
  1593. @4485 more cleanup: avoid unused knowledge of "file GV" notion in CV and GV
  1594. Gurusamy Sarathy <gsar@cpan.org> 1999-10-29 05:00:21
  1595. @4484 usurp GVOP slot for new PADOP (one small step to making optree
  1596. shareable across interpreters)
  1597. Vishal Bhatia <vishal@deja.com> 1999-09-30 01:27:28
  1598. @4254 [patch _61] Minor corrections in C.pm
  1599. Message-ID: <Pine.LNX.4.10.9909292326280.5599-100000@localhost.localdomain>
  1600. Charles Bailey <bailey@newman.upenn.edu> 1999-09-29 04:21:31
  1601. @4249 resync with mainline 5.05_61
  1602. ($handle_VC_problem, @4198: $sv->REFCNT - 1)
  1603. Vishal Bhatia <vishal@deja.com> 1999-08-25 02:31:33
  1604. @4198 add arenas for managing allocations of remaining xpv*v structures
  1605. Message-ID: <Pine.LNX.4.10.9908250031000.11727-100000@localhost.localdomain>
  1606. Subject: [PATCH 5.005_60] removing extra ref count (compiler)
  1607. Doug MacEachern <dougm@covalent.net> 1999-07-25 17:49:00
  1608. @4129 B::clearsym
  1609. Vishal Bhatia <vishal@deja.com> 1999-08-11 03:43:28
  1610. @4095 applied suggested patch with suitable test to detect MSVC
  1611. Message-ID: <GFCJELIOGEENAAAA@my-deja.com>
  1612. Subject: compiler on win32
  1613. Gurusamy Sarathy <gsar@cpan.org> 1999-09-06 22:16:58
  1614. @4092 support bytecode and C backends in perlcc (patch suggested
  1615. by Tom Hughes <tom@compton.au>); s/-opt/-noopt/ and make the
  1616. C backend the default; describe new switches in pod; introduce
  1617. PERLCC_OPTS and s/COMPILE_TIMEOUT/PERLCC_TIMEOUT/;
  1618. s/COMPILE_TEST/HARNESS_COMPILE_TEST/; document these %ENV
  1619. entries
  1620. Nick Ing-Simmons <nik@tiuk.ti.com> 1999-08-08 15:53:57
  1621. @3925 Will now correctly re-call
  1622. bootstrap "Foo";
  1623. if requested. This should allow build on Win32 and other
  1624. platforms where you cannot link to loadables directly.
  1625. Nick Ing-Simmons <nik@tiuk.ti.com> 1999-08-07 14:23:55
  1626. @3934 Vishal Bhatia <vishalb@my-deja.com>
  1627. [PATCH 5.005_60] fix for some obscure bugs (compiler)
  1628. Message-ID: <HLPEBPHPAKHKAAAA@my-deja.com>
  1629. Nick Ing-Simmons <nik@tiuk.ti.com> 1999-08-07 14:19:46
  1630. @3933 B::C changes to get simple Tk app. compiling again
  1631. Nathan Torkington <gnat@frii.com> 1999-08-05 23:25:47
  1632. @3927 Fix for Nathan's fix (#3920) from Guy Decoux.
  1633. Subject: Bugfix for my bugfix
  1634. Message-ID: <14250.21947.765134.940583@localhost.frii.com>
  1635. Nathan Torkington <gnat@frii.com> 1999-08-04 13:24:56
  1636. @3920 [5.005_60 PATCH] Make B::Bytecode work
  1637. Vishal Bhatia <vishal@deja.com> 1999-07-31 21:08:33
  1638. @3869 "use constant" in the compiler
  1639. Nathan Torkington <gnat@frii.com> 1999-08-01 11:23:35
  1640. @3859 ext/B/B/Disassembler.pm patch
  1641. Message-ID: <14244.33431.739419.806927@localhost.frii.com>
  1642. Gurusamy Sarathy <gsar@cpan.org> 1999-08-01 20:34:41
  1643. @3848 fix defined(@foo) encarpments
  1644. Gurusamy Sarathy <gsar@cpan.org> 1999-07-27 05:56:17
  1645. @3784 change#3762 wasn't needed
  1646. Gurusamy Sarathy <gsar@cpan.org> 1999-07-26 10:59:47
  1647. @3762 setstate stop-gap from Vishal Bhatia
  1648. Gurusamy Sarathy <gsar@cpan.org> 1999-07-26 10:06:39
  1649. @3761 patch for pp_foo -> Perl_pp_foo changes from Vishal Bhatia
  1650. Gurusamy Sarathy <gsar@cpan.org> 1999-07-17 22:43:27
  1651. @3687 make CC.pm use a distinct CCPP() macro rather than PP()
  1652. (suggested by Vishal Bhatia <vishalb@my-deja.com>)
  1653. Vishal Bhatia <vishal@deja.com> 1999-06-30 16:02:42
  1654. @3644 Compiler and XSUBS
  1655. Stephen McCamant <smcc@mit.edu> 1999-06-25 15:38:44
  1656. @3637 Eliminate CONDOPs
  1657. Vishal Bhatia <vishal@deja.com> 1999-06-20 19:17:17
  1658. @3630 Minor bug fix in pp_require
  1659. Vishal Bhatia <vishal@deja.com> 1999-06-12 10:23:59
  1660. @3622 applied patch after demunging headers with appropriate paths
  1661. Message-ID: <JIHEJPFDFKIBDAAA@my-deja.com>
  1662. Subject: [Patch 5.005_57] unsigned arithmetic (Compiler)
  1663. Vishal Bhatia <vishal@deja.com> 1999-06-05 10:42:17
  1664. @3593 applied parts not duplicated by previous patches
  1665. Message-ID: <JAMCAJKJEJDPAAAA@my-deja.com>
  1666. Subject: Fwd: [PATCH 5.005_57] consolidated compiler changes
  1667. Vishal Bhatia <vishal@deja.com> 1999-06-03 02:57:48
  1668. @3584 [PATCH 5.005_57] pp_sort sorted out
  1669. Gurusamy Sarathy <gsar@cpan.org> 1999-06-10 10:38:00
  1670. @3526 fix small nits (ARGS => aTHX)
  1671. Gurusamy Sarathy <gsar@cpan.org> 1999-06-02 06:47:10
  1672. @3518 remove _() non-ansism
  1673. Tom Hughes <tom@compton.nu> 1999-05-27 01:59:49
  1674. @3499 ByteLoader mark 2
  1675. To: perl5-porters@perl.org
  1676. Message-ID: <bf337a0849.tom@compton.compton.nu>
  1677. plus resolve tiny conflict with #3479
  1678. plus regen_headers.
  1679. Gurusamy Sarathy <gsar@cpan.org> 1999-05-11 11:34:13
  1680. @3367 various fixes for clean build and test on win32; configpm broken,
  1681. needed to open myconfig.SH rather than myconfig; sundry adjustments
  1682. to bytecode stuff; tweaks to DYNAMIC_ENV_FETCH code to make it
  1683. work under win32; getenv_sv() changed to getenv_len() since SVs
  1684. aren't visible in the lower echelons; remove bogus exports from
  1685. config.sym; PERL_OBJECT-ness for C++ exception support; null out
  1686. IoDIRP in filter_del() or sv_free() will attempt to close it
  1687. Gurusamy Sarathy <gsar@cpan.org> 1999-05-10 09:49:26
  1688. @3359 more Compiler patches from Vishal Bhatia <vishalb@my-dejanews.com>
  1689. Date: Tue, 27 Apr 1999 23:47:24 PDT
  1690. Message-ID: <19990428064724.95244.qmail@hotmail.com>
  1691. Subject: [PATCH 5.005_56] Saving Tied hashes ( C.pm)
  1692. --
  1693. Date: Thu, 29 Apr 1999 18:21:06 -0700
  1694. Message-ID: <GEFPBFDJADFJBAAA@my-dejanews.com>
  1695. Subject: [PATCH 5.005_56] double constants ( C.pm)
  1696. --
  1697. Date: Mon, 03 May 1999 20:21:31 PDT
  1698. Message-ID: <19990504032131.81113.qmail@hotmail.com>
  1699. Subject: [PATCH 5.005_56] Overloading implementation ( Compiler)
  1700. --
  1701. Date: Thu, 06 May 1999 17:57:09 -0700
  1702. Message-ID: <FCJELBLAJBOBAAAA@my-dejanews.com>
  1703. Subject: Stash.pm
  1704. Tom Hughes <tom@compton.nu> 1999-04-24 20:11:59
  1705. @3356 applied suggested patch, with win32 and PERL_OBJECT additions
  1706. Message-ID: <609bdff748.tom@compton.compton.nu>
  1707. Subject: ByteLoader patch
  1708. Gurusamy Sarathy <gsar@cpan.org> 1999-05-06 10:01:23
  1709. @3314 compiler fixes from Vishal Bhatia <vishalb@hotmail.com>
  1710. Date: Tue, 30 Mar 1999 23:40:34 PST
  1711. Message-ID: <19990331074034.6117.qmail@hotmail.com>
  1712. Subject: [PATCH 5.005_56] pp_entersub and pp_leavewrite(CC.pm)
  1713. --
  1714. Date: Wed, 07 Apr 1999 00:28:23 -0800
  1715. Message-ID: <FGBNLNPOEELFAAAA@my-dejanews.com>
  1716. Subject: [PATCH 5.005_56] function prototypes(B.pm)
  1717. --
  1718. Date: Thu, 22 Apr 1999 23:40:52 -0700
  1719. Message-ID: <OEAOMKBMLDADCAAA@my-dejanews.com>
  1720. Subject: [PATCH 5.005_56 ] discarding worthless padsvs
  1721. --
  1722. Date: Tue, 27 Apr 1999 01:14:49 PDT
  1723. Message-ID: <19990427081449.28615.qmail@hotmail.com>
  1724. Subject: [PATCH 5.005_56] pp_ncmp implementation ( CC.pm)
  1725. Vishal Bhatia <vishal@deja.com> 1999-03-23 17:21:43
  1726. @3168 applied needful parts of suggested patch
  1727. Message-ID: <OOOKJGFMLFLHBAAA@my-dejanews.com>
  1728. Subject: [PATCH 5.005_56] pp_formline correction
  1729. Gurusamy Sarathy <gsar@cpan.org> 1999-03-25 07:21:05
  1730. @3165 fix refcnt on PL_main_cv (variant of suggestion by Vishal Bhatia
  1731. <vishalb@hotmail.com>)
  1732. Vishal Bhatia <vishal@deja.com> 1999-03-11 08:40:27
  1733. @3142 applied suggested patch, modulo bogus hunk
  1734. Message-ID: <19990311154027.25891.qmail@hotmail.com>
  1735. Subject: [PATCH 5.005_56] Minor fixes in perlcc
  1736. Vishal Bhatia <vishal@deja.com> 1999-03-03 00:27:25
  1737. @3066 updates to compiler modules
  1738. Message-ID: <19990303072725.779.qmail@hotmail.com>
  1739. Subject: PATCH 5.005_56 + Test procedure
  1740. Vishal Bhatia <vishal@deja.com> 1999-02-08 02:14:41
  1741. @2940 enable dynaloading in C.pm-compiled programs (non-conflicting part
  1742. of suggested patch)
  1743. Message-ID: <DHIDFFOPMEFDBAAA@my-dejanews.com>
  1744. Subject: [PATCH 5.005_54] some pending C.pm stuff
  1745. Gurusamy Sarathy <gsar@cpan.org> 1999-02-12 12:09:27
  1746. @2894 add missing hunk in change#2657 from Vishal Bhatia <vishal@deja.com>
  1747. Vishal Bhatia <vishal@deja.com> 1999-01-18 02:32:31
  1748. @2657 pp_mapstart & pp_grepstart return val (CC.pm)
  1749. To: perl5-porters@perl.org
  1750. Message-ID: <19990118093231.18443.qmail@hotmail.com>
  1751. Vishal Bhatia <vishal@deja.com> 1999-01-17 17:41:10
  1752. @2639 Duplicate saved ops (CC.pm)
  1753. Message-Id: <19990118004111.29667.qmail@hotmail.com>
  1754. Gurusamy Sarathy <gsar@cpan.org> 1999-01-17 10:12:42
  1755. @2621 fix change#2602 to not used hard coded constants
  1756. Vishal Bhatia <vishal@deja.com> 1999-01-11 09:02:41
  1757. @2602 B::MAGIC::PTR doesnot check for valid length.
  1758. Lines: 134
  1759. Message-ID: <MLIST_19990111052126.27966.qmail@hotmail.com>
  1760. Vishal Bhatia <vishal@deja.com> 1999-01-08 13:43:36
  1761. @2600 B::CC::pp_rv2cv problem
  1762. To: perl5-porters@perl.org
  1763. Message-ID: <MLIST_19990108101557.4481.qmail@hotmail.com>
  1764. Vishal Bhatia <vishal@deja.com> 1998-12-16 04:17:03
  1765. @2525 More minor Fixes in CC.pm/C.pm
  1766. To: perl5-porters@perl.org
  1767. Message-ID: <MLIST_199812160055.QAA06272@f10.hotmail.com>
  1768. Vishal Bhatia <vishal@deja.com> 1998-12-10 09:30:02
  1769. @2524 Re:perlcc -e 'my $x = shift; print +($x ?...' failure
  1770. To: perl5-porters@perl.org
  1771. Cc: rmb1@cise.npl.co.uk, nick@ni-s.u-net.com
  1772. Message-ID: <MLIST_19981210061651.29891.qmail@hotmail.com>
  1773. (Nick's part was applied earlier, in change #2460)
  1774. Vishal Bhatia <vishal@deja.com> 1998-12-09 07:50:30
  1775. @2523 return value of perlcc/B::CC generated functions.
  1776. To: nick@ni-s.u-net.com
  1777. Cc: perl5-porters@perl.org
  1778. Message-ID: <MLIST_19981209043146.16829.qmail@hotmail.com>
  1779. Vishal Bhatia <vishal@deja.com> 1998-12-20 20:03:25
  1780. @2492 pp_next/pp_last/pp_redo problems
  1781. To: perl5-porters@perl.org
  1782. Message-ID: <19981221030326.27660.qmail@hotmail.com>
  1783. (slightly reformatted)
  1784. Nick Ing-Simmons <nick@ing-simmons.net> 1999-01-02 14:06:30
  1785. @2551 Export constant subs from B.xs for op.h, cop.h and a few others.
  1786. Use them in various B::* rather than have local defs.
  1787. Nick Ing-Simmons <nick@ing-simmons.net> 1999-01-02 10:04:02
  1788. @2550 Integrate ext/B changes from //depot/cfgperl
  1789. 'copy in' ext/B/B.xs
  1790. (@2460..) 'merge in' ext/B/B/C.pm ext/B/B/CC.pm
  1791. ext/B/B/Stackobj.pm (@2524..)
  1792. Nick Ing-Simmons <nick@ing-simmons.net> 1999-01-02 10:04:02
  1793. @2491 Integrate ext/B changes from //depot/cfgperl
  1794. Gurusamy Sarathy <gsar@cpan.org> 1998-09-23 09:52:46
  1795. B::Asmdata define PUT_svindex(), PUT_opindex()
  1796. Nick Ing-Simmons <nick@ing-simmons.net> 1998-12-20 14:21:29
  1797. @2491 Save _all_ GV's which have SV, AV or HV set.
  1798. Vishal Bhatia <vishal@deja.com> 1998-12-09 23:16:50
  1799. @2461 1. Fixes the bug reported by Robin Barker <rmb1@cise.npl.co.uk>
  1800. 2. Fixes the bug regarding return value of c-functions generated out
  1801. of perl subs. ( Just includes the patch I sent earlier)
  1802. 3. Incorporates the other changes that need to be done to get CC.pm
  1803. use ISA search for packages and methods on the same lines as C.pm
  1804. Vishal would appreciate comments about B::Stackobj changes from
  1805. someone knowing that module well.
  1806. Nick Ing-Simmons <nik@tiuk.ti.com> 1998-12-05 17:14:42
  1807. @2453 Avoid hard-coding op numbers
  1808. Update CC.pm to save %INC, and to co-exist with new C.pm
  1809. Nick Ing-Simmons <nik@tiuk.ti.com> 1998-12-05 11:44:28
  1810. @2452 B.xs had its own code to calculate hash() which differed from
  1811. PERL_HASH in hv.h - so all saved HV's were mangled - including %INC
  1812. which meant that run-time require was re-done.
  1813. Removed some debug from C.pm
  1814. Nick Ing-Simmons <nik@tiuk.ti.com> 1998-12-04 22:58:49
  1815. @2451 Snapshot of re-worked B::C which compiles Tk apps at least as
  1816. well as _54, but with pre-scan for classes and save the ISA scheme.
  1817. Vishal Bhatia <vishal@deja.com> 1998-12-04 18:58:44
  1818. @2450 Vishal Bhatia's patch as a basis.
  1819. Nick Ing-Simmons <nik@tiuk.ti.com> 1998-11-28 23:46:57
  1820. @2378 More C.pm tweaks
  1821. Save globs even if we have saved cv itself before - may be imported.
  1822. While we don't save "bootstrap" CV we need to provide a stub,
  1823. so that if we require it later we don't fall through and attempt
  1824. to DynaLoad module again.
  1825. Attempt to save %INC so that "require" does not reload things
  1826. we have compiled-in (does not work right yet - seems to be due
  1827. to PL_incgv being created in perl_parse() current scheme setting
  1828. GvHV() is "better" than saving the glob, but still does not
  1829. work as I expect).
  1830. Nick Ing-Simmons <nik@tiuk.ti.com> 1998-11-27 22:10:27
  1831. @2332 Handle INIT list in C.pm
  1832. 1. Provide init_av() from B.xs
  1833. 2. Export it in B.pm
  1834. 3. Use it in C.pm
  1835. Also disable some pruning in savecv() which seems to undo
  1836. my previous patch.
  1837. Experimental feature - save pathnames of .so files in easily
  1838. grep-able form for use in wrapper to feed to linker.
  1839. Gurusamy Sarathy <gsar@cpan.org> 1998-11-27 15:41:38
  1840. @2324 B::C tweaks to allow Tk compiles from Nick Ing-Simmons
  1841. Vishal Bhatia <vishal@deja.com> 1998-10-29 00:45:32
  1842. @2146 hand-apply whitespace-mutiliated patch
  1843. Message-ID: <19981029074534.2334.qmail@hotmail.com>
  1844. Subject: [PATCH 5.005_52]Compiling modules,more bugfixes for B
  1845. Vishal Bhatia <vishal@deja.com> 1998-10-22 00:59:03
  1846. @2072 implement C<goto &func> and other fixes (via private mail)
  1847. Message-Id: <19981022055904.20083.qmail@hotmail.com>
  1848. Subject: [PATCH 5.005_52] More fixes for B
  1849. Vishal Bhatia <vishal@deja.com> 1998-10-11 20:41:38
  1850. @1993 fix bug in B::CC::pp_sassign()
  1851. Message-ID: <19981012014139.19614.qmail@hotmail.com>
  1852. Subject: B::CC problems with pp_sassign routine
  1853. Jarkko Hietaniemi <jhi@iki.fi> 1998-10-17 15:17:19
  1854. @2005 Integrate mainperl.
  1855. Gurusamy Sarathy <gsar@cpan.org> 1998-09-23 11:52:46
  1856. @1842 define PUT_svindex(), PUT_opindex()
  1857. Gurusamy Sarathy <gsar@cpan.org> 1998-08-02 07:09:35
  1858. @1708 fixes for pod noises
  1859. Gurusamy Sarathy <gsar@cpan.org> 1998-07-22 02:08:00
  1860. @1618 fix up B modules for PL_* changes
  1861. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-07-21 18:13:16
  1862. @1617 Compiler docs for 5.005
  1863. Message-Id: <199807211713.SAA20735@sable.ox.ac.uk>
  1864. Gurusamy Sarathy <gsar@cpan.org> 1998-07-22 01:29:09
  1865. @1616 s/PL_sv/PL_bytecode_sv/ etc., so we have unique, case-insensitive
  1866. names
  1867. Gurusamy Sarathy <gsar@cpan.org> 1998-07-21 07:12:00
  1868. @1611 fix bytecode.pl with moved var names
  1869. Gurusamy Sarathy <gsar@cpan.org> 1998-07-21 05:31:13
  1870. @1608 part 2 of PERL_OBJECT fixes (globals in bytecode.h moved to intrpvar.h)
  1871. Gurusamy Sarathy <gsar@cpan.org> 1998-07-21 05:29:10
  1872. @1607 part 1 of PERL_OBJECT fixes for new var names
  1873. Gurusamy Sarathy <gsar@cpan.org> 1998-07-20 09:38:39
  1874. @1578 complete s/foo/PL_foo/ changes (all escaped cases identified with
  1875. brute force search script). Result builds and passes all tests on
  1876. Solaris. win32 and PERL_OBJECT are still untested.
  1877. Nick Ing-Simmons <nick@ing-simmons.net> 1998-07-18 13:53:03
  1878. PL_ prefix to all perlvars, part1
  1879. Builds and passes all tests at one limit i.e. -DPERL_GLOBAL_STRUCT
  1880. Ilya Zakharevich <ilya@math.ohio-state.edu> 1998-07-15 06:10:36
  1881. @1548 Minor improvements to perlcc
  1882. Message-Id: <199807151010.GAA11270@monk.mps.ohio-state.edu>
  1883. Gurusamy Sarathy <gsar@cpan.org> 1998-07-15 10:01:41
  1884. @1516 add stub docs for ext/B, other minor tweaks
  1885. Gurusamy Sarathy <gsar@cpan.org> 1998-07-09 05:37:48
  1886. get it building again on win32
  1887. Gurusamy Sarathy <gsar@cpan.org> 1998-07-04 05:02:01
  1888. @1292 fix perlcc to not rm output file, and other -w(arts)
  1889. Stephen McCamant <alias@mcs.com> 1998-06-22 21:19:43
  1890. @1200 Inheritance of B:: classes
  1891. Message-Id: <m0yoIgR-000EP2C@alias-2.pr.mcs.net>
  1892. Gurusamy Sarathy <gsar@cpan.org> 1998-06-19 17:22:23
  1893. update repository copy of Asmdata.pm after `perl bytecode.pl`
  1894. Gurusamy Sarathy <gsar@cpan.org> 1998-06-11 02:59:23
  1895. @1113 fix outdated bytecode.pl
  1896. Nick Ing-Simmons <nick@ing-simmons.net> 1998-05-14 18:09:01
  1897. @972 Changes to allow compiler with gcc-2.8.1 in C++ mode,
  1898. Remove K&R style functions, avoid struct/typedef clash.
  1899. Ed Peschko <epeschko@den-mdev1> 1998-04-29 21:02:36
  1900. @963 [ PATCH 5.004_64 ] Integrated regression tests for compiler
  1901. added perlcc.PL
  1902. Ilya Zakharevich <ilya@math.ohio-state.edu> 1998-04-08 03:21:03
  1903. @942 Subject: [PATCH 5.004_64] Cryptic error from B::CC
  1904. Date: Sat, 11 Apr 1998 19:52:25 -0400 (EDT)
  1905. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-04-14 16:22:51
  1906. @888 [compiler] CC did "<<" instead of ">>" for right-shift on ints.
  1907. Charles Bailey <bailey@newman.upenn.edu> 1998-03-02 01:48:27
  1908. Miscellaneous minor fixes
  1909. Spider Boardman <spider@orb.nashua.nh.us> 1998-03-01 02:02:47
  1910. Almost OK: 5.004_61 (threads, perlio)
  1911. Andrew Cohen <cohen@andy.bu.edu> 1998-02-27 20:03:29
  1912. Change getc/fread to PerlIO_getc/fread in bytecode.h:
  1913. Subject: [PATCH 5.004_61] bunch of small patches
  1914. Nick Ing-Simmons <nick@ing-simmons.net> 1998-02-28 11:31:15
  1915. Missed FREAD in bytecode.h
  1916. Cannot export svref_mutex in non-threaded perl
  1917. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-27 18:35:27
  1918. Change FREAD/FGETC to BGET_FREAD/BGET_FGETC to avoid clash with
  1919. preprocessor symbol on Digital UNIX.
  1920. Gurusamy Sarathy <gsar@cpan.org> 1998-02-26 03:56:19
  1921. @589 [win32] various cleanups so that B can be built as "just another extension"
  1922. - export symbols needed for building B
  1923. - bset_obj_store() is needed by byterun(), so define it there instead
  1924. of at B.xs, and export it
  1925. - freadpv() is only used in B.xs, so move it there
  1926. - byte*.h are now included by perl.h
  1927. - regenerate embed*.h
  1928. Gurusamy Sarathy <gsar@cpan.org> 1998-02-22 02:40:56
  1929. @568 [win32] get compiler building under win32 (needed Makefile.PL
  1930. hacks that could be applicable to other platforms)
  1931. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-25 17:44:34
  1932. @585 More compiler tweaks.
  1933. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-20 18:23:47
  1934. @565 Remove compiler files from their old lib/B locations. The compiler
  1935. now builds by default (without the byteperl executable so far) and
  1936. seems to work at least minimally.
  1937. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-20 18:05:33
  1938. @564 Move lib/B/... and lib/[BO].pm over to where they should be,
  1939. under ext/B.
  1940. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-20 17:54:58
  1941. @563 Start getting compiler to work when built with the core.
  1942. [Still won't work as of this change.]
  1943. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-20 16:42:13
  1944. * Merge perlext/Compiler/... into mainline. Some files move to
  1945. ext/B/..., some to lib/B/..., O.pm and B.pm go in lib and some
  1946. move to the base perl directory (e.g. headers). Will need some
  1947. cleaning up before it builds properly, I would guess.
  1948. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-20 16:39:38
  1949. * [compiler] Win32 changes from Sarathy, tweaked slightly by me.
  1950. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1998-02-17 17:50:50
  1951. * Assorted changes to the compiler
  1952. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1997-12-17 10:59:40
  1953. * Fix typo in compiler B/C.pm.
  1954. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1997-12-10 18:33:53
  1955. Alpha5
  1956. * Start overhauling compiler. It was working at least minimally
  1957. right up until the final tweak of B.xs to add threadsv_names
  1958. at which point building it provokes a seg fault in perl while
  1959. doing the xsubpp :-(.
  1960. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1997-09-03 12:31:48
  1961. * Make compiler build/work with devel 5.005
  1962. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1997-07-05 11:58:05
  1963. * Change %lx to %x in B::CV::save to prevent some CV
  1964. fields becoming 0 in the init section. Add missing
  1965. write_back in B::Stackobj::Padsv::load_double to fix
  1966. test 22 of op/my.t.
  1967. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1997-07-05 11:58:05
  1968. * B::CC::pp_padsv must cope with vivify_ref (5.004)
  1969. as well as provide_ref (5.003)
  1970. Malcolm Beattie <mbeattie@sable.ox.ac.uk> 1997-05-03 14:47:06
  1971. Alpha 4
  1972. * initial check in of compiler
  1973. from version Alpha a3 to a4