📄 nrv2b_d.s
字号:
/* ppc_d_nrv2b.S -- PowerPC decompressor for NRV2B This file is part of the UPX executable compressor. Copyright (C) 1996-2007 Markus Franz Xaver Johannes Oberhumer Copyright (C) 1996-2007 Laszlo Molnar Copyright (C) 2000-2007 John F. Reiser All Rights Reserved. UPX and the UCL library are free software; you can redistribute them and/or modify them under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. Markus F.X.J. Oberhumer Laszlo Molnar <mfx@users.sourceforge.net> <ml1050@users.sourceforge.net> John F. Reiser <jreiser@users.sourceforge.net>*/#define M_NRV2B_LE32 2 dcbtst 0,dst // prime dcache for store mflr t3 // return address cmpli cr0,meth,M_NRV2B_LE32 bne cr0,not_nrv2b stw dst,0(ldst) // original dst add lsrc,lsrc,src // input eof lis hibit,0x8000 // 0x80000000 for detecting next bit lis bits,0x8000 // prepare for first load addi src,src,-1 // prepare for 'lbzu' addi dst,dst,-1 // prepare for 'stbu' li disp,-1 // initial displacement b bot_n2b#undef jnextb0y#undef jnextb0n#undef jnextb1y#undef jnextb1n/* jump on next bit, with branch prediction: y==>likely; n==>unlikely cr0 is set by the cmpl ["compare logical"==>unsigned]: lt next bit is 0 gt next bit is 1 eq must load next 32 bits from memory*/#define jnextb0y call get1; blt+ cr0,#define jnextb0n call get1; blt- cr0,#define jnextb1y call get1; bgt+ cr0,#define jnextb1n call get1; bgt- cr0,#undef getnextb/* rotate next bit into bottom bit of reg; set cr0 based on entire result reg */#define getnextb(reg) call get1; adde. reg,reg,regget1: cmpl cr0,bits,hibit // cr0 for jnextb addc bits,bits,bits // CArry for getnextb bnelr+ cr0 // return if reload not needed; likely 31/32/* CArry has been set from adding 0x80000000 to itself; preserve for 'adde' */ // fetch 4 bytes unaligned and LITTLE ENDIAN#if 0 /*{ clean; but 4 instr larger, and 3 cycles longer */ lbz bits,1(src) // lo8 lbz t0,2(src); rlwimi bits,t0, 8,16,23 lbz t0,3(src); rlwimi bits,t0,16, 8,15 lbzu t0,4(src); rlwimi bits,t0,24, 0, 7#else /*}{ pray for no unalignment trap or slowdown */ li bits,1 // compensate for 'lbzu' lwbrx bits,bits,src // bits= fetch_le32(bits+src) addi src,src,4#endif /*}*/ cmpl cr0,bits,hibit // cr0 for jnextb adde bits,bits,bits // CArry for getnextb; set lo bit from CarryIn retlit_n2b:#define tmp len lbzu tmp,1(src) // tmp= *++src; stbu tmp,1(dst) // *++dst= tmp;#undef tmptop_n2b: jnextb1y lit_n2b li off,1 // "the msb"offmore_n2b: getnextb(off) jnextb0n offmore_n2b addic. off,off,-3 // CArry set [and ignored], but no 'addi.' li len,0 blt- offprev_n2b lbzu t0,1(src) rlwinm off,off,8,0,31-8 // off<<=8; nor. disp,off,t0 // disp = -(1+ (off|t0)); beq- eof_nrvoffprev_n2b: // In: 0==len getnextb(len); getnextb(len) // two bits; cr0 set on result li off,1; bne- gotlen_n2b // raw 1,2,3 ==> 2,3,4 li off,3 // raw 2.. ==> 5.. li len,1 // "the msb"lenmore_n2b: getnextb(len) jnextb0n lenmore_n2bgotlen_n2b: subfic t0,disp,(~0)+(-0xd00) // want CArry only adde len,len,off // len += off + (disp < -0xd00);copy:#define back off add back,disp,dst // point back to match in dst mtctr lenshort_n2b:#define tmp len lbzu tmp,1(back) stbu tmp,1(dst)#undef tmp bdnz+ short_n2b/* This "prefetch for store" is simple, small, and effective. Matches usually occur more frequently than once per 128 bytes, but G4 line size is only 32 bytes anyway. Assume that an 'unnecessary' dcbtst costs only about as much as a hit. The counter register is free at top_n2b, so we could pace the dcbtst optimally; but that takes 7 or 8 instructions of space.*/bot_n2b: li back,2*SZ_DLINE dcbtst back,dst // 2 lines ahead [-1 for stbu] dcbt back,src // jump start auto prefetch at page boundary/* Auto prefetch for Read quits at page boundary; needs 2 misses to restart. */#undef back b top_n2bnot_nrv2b:// vi:ts=8:et
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -