1*dfc6aa5cSAndroid Build Coastguard Worker; 2*dfc6aa5cSAndroid Build Coastguard Worker; jfdctint.asm - accurate integer FDCT (SSE2) 3*dfc6aa5cSAndroid Build Coastguard Worker; 4*dfc6aa5cSAndroid Build Coastguard Worker; Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB 5*dfc6aa5cSAndroid Build Coastguard Worker; Copyright (C) 2016, 2020, D. R. Commander. 6*dfc6aa5cSAndroid Build Coastguard Worker; 7*dfc6aa5cSAndroid Build Coastguard Worker; Based on the x86 SIMD extension for IJG JPEG library 8*dfc6aa5cSAndroid Build Coastguard Worker; Copyright (C) 1999-2006, MIYASAKA Masaru. 9*dfc6aa5cSAndroid Build Coastguard Worker; For conditions of distribution and use, see copyright notice in jsimdext.inc 10*dfc6aa5cSAndroid Build Coastguard Worker; 11*dfc6aa5cSAndroid Build Coastguard Worker; This file should be assembled with NASM (Netwide Assembler), 12*dfc6aa5cSAndroid Build Coastguard Worker; can *not* be assembled with Microsoft's MASM or any compatible 13*dfc6aa5cSAndroid Build Coastguard Worker; assembler (including Borland's Turbo Assembler). 14*dfc6aa5cSAndroid Build Coastguard Worker; NASM is available from http://nasm.sourceforge.net/ or 15*dfc6aa5cSAndroid Build Coastguard Worker; http://sourceforge.net/project/showfiles.php?group_id=6208 16*dfc6aa5cSAndroid Build Coastguard Worker; 17*dfc6aa5cSAndroid Build Coastguard Worker; This file contains a slower but more accurate integer implementation of the 18*dfc6aa5cSAndroid Build Coastguard Worker; forward DCT (Discrete Cosine Transform). The following code is based 19*dfc6aa5cSAndroid Build Coastguard Worker; directly on the IJG's original jfdctint.c; see the jfdctint.c for 20*dfc6aa5cSAndroid Build Coastguard Worker; more details. 21*dfc6aa5cSAndroid Build Coastguard Worker 22*dfc6aa5cSAndroid Build Coastguard Worker%include "jsimdext.inc" 23*dfc6aa5cSAndroid Build Coastguard Worker%include "jdct.inc" 24*dfc6aa5cSAndroid Build Coastguard Worker 25*dfc6aa5cSAndroid Build Coastguard Worker; -------------------------------------------------------------------------- 26*dfc6aa5cSAndroid Build Coastguard Worker 27*dfc6aa5cSAndroid Build Coastguard Worker%define CONST_BITS 13 28*dfc6aa5cSAndroid Build Coastguard Worker%define PASS1_BITS 2 29*dfc6aa5cSAndroid Build Coastguard Worker 30*dfc6aa5cSAndroid Build Coastguard Worker%define DESCALE_P1 (CONST_BITS - PASS1_BITS) 31*dfc6aa5cSAndroid Build Coastguard Worker%define DESCALE_P2 (CONST_BITS + PASS1_BITS) 32*dfc6aa5cSAndroid Build Coastguard Worker 33*dfc6aa5cSAndroid Build Coastguard Worker%if CONST_BITS == 13 34*dfc6aa5cSAndroid Build Coastguard WorkerF_0_298 equ 2446 ; FIX(0.298631336) 35*dfc6aa5cSAndroid Build Coastguard WorkerF_0_390 equ 3196 ; FIX(0.390180644) 36*dfc6aa5cSAndroid Build Coastguard WorkerF_0_541 equ 4433 ; FIX(0.541196100) 37*dfc6aa5cSAndroid Build Coastguard WorkerF_0_765 equ 6270 ; FIX(0.765366865) 38*dfc6aa5cSAndroid Build Coastguard WorkerF_0_899 equ 7373 ; FIX(0.899976223) 39*dfc6aa5cSAndroid Build Coastguard WorkerF_1_175 equ 9633 ; FIX(1.175875602) 40*dfc6aa5cSAndroid Build Coastguard WorkerF_1_501 equ 12299 ; FIX(1.501321110) 41*dfc6aa5cSAndroid Build Coastguard WorkerF_1_847 equ 15137 ; FIX(1.847759065) 42*dfc6aa5cSAndroid Build Coastguard WorkerF_1_961 equ 16069 ; FIX(1.961570560) 43*dfc6aa5cSAndroid Build Coastguard WorkerF_2_053 equ 16819 ; FIX(2.053119869) 44*dfc6aa5cSAndroid Build Coastguard WorkerF_2_562 equ 20995 ; FIX(2.562915447) 45*dfc6aa5cSAndroid Build Coastguard WorkerF_3_072 equ 25172 ; FIX(3.072711026) 46*dfc6aa5cSAndroid Build Coastguard Worker%else 47*dfc6aa5cSAndroid Build Coastguard Worker; NASM cannot do compile-time arithmetic on floating-point constants. 48*dfc6aa5cSAndroid Build Coastguard Worker%define DESCALE(x, n) (((x) + (1 << ((n) - 1))) >> (n)) 49*dfc6aa5cSAndroid Build Coastguard WorkerF_0_298 equ DESCALE( 320652955, 30 - CONST_BITS) ; FIX(0.298631336) 50*dfc6aa5cSAndroid Build Coastguard WorkerF_0_390 equ DESCALE( 418953276, 30 - CONST_BITS) ; FIX(0.390180644) 51*dfc6aa5cSAndroid Build Coastguard WorkerF_0_541 equ DESCALE( 581104887, 30 - CONST_BITS) ; FIX(0.541196100) 52*dfc6aa5cSAndroid Build Coastguard WorkerF_0_765 equ DESCALE( 821806413, 30 - CONST_BITS) ; FIX(0.765366865) 53*dfc6aa5cSAndroid Build Coastguard WorkerF_0_899 equ DESCALE( 966342111, 30 - CONST_BITS) ; FIX(0.899976223) 54*dfc6aa5cSAndroid Build Coastguard WorkerF_1_175 equ DESCALE(1262586813, 30 - CONST_BITS) ; FIX(1.175875602) 55*dfc6aa5cSAndroid Build Coastguard WorkerF_1_501 equ DESCALE(1612031267, 30 - CONST_BITS) ; FIX(1.501321110) 56*dfc6aa5cSAndroid Build Coastguard WorkerF_1_847 equ DESCALE(1984016188, 30 - CONST_BITS) ; FIX(1.847759065) 57*dfc6aa5cSAndroid Build Coastguard WorkerF_1_961 equ DESCALE(2106220350, 30 - CONST_BITS) ; FIX(1.961570560) 58*dfc6aa5cSAndroid Build Coastguard WorkerF_2_053 equ DESCALE(2204520673, 30 - CONST_BITS) ; FIX(2.053119869) 59*dfc6aa5cSAndroid Build Coastguard WorkerF_2_562 equ DESCALE(2751909506, 30 - CONST_BITS) ; FIX(2.562915447) 60*dfc6aa5cSAndroid Build Coastguard WorkerF_3_072 equ DESCALE(3299298341, 30 - CONST_BITS) ; FIX(3.072711026) 61*dfc6aa5cSAndroid Build Coastguard Worker%endif 62*dfc6aa5cSAndroid Build Coastguard Worker 63*dfc6aa5cSAndroid Build Coastguard Worker; -------------------------------------------------------------------------- 64*dfc6aa5cSAndroid Build Coastguard Worker SECTION SEG_CONST 65*dfc6aa5cSAndroid Build Coastguard Worker 66*dfc6aa5cSAndroid Build Coastguard Worker alignz 32 67*dfc6aa5cSAndroid Build Coastguard Worker GLOBAL_DATA(jconst_fdct_islow_sse2) 68*dfc6aa5cSAndroid Build Coastguard Worker 69*dfc6aa5cSAndroid Build Coastguard WorkerEXTN(jconst_fdct_islow_sse2): 70*dfc6aa5cSAndroid Build Coastguard Worker 71*dfc6aa5cSAndroid Build Coastguard WorkerPW_F130_F054 times 4 dw (F_0_541 + F_0_765), F_0_541 72*dfc6aa5cSAndroid Build Coastguard WorkerPW_F054_MF130 times 4 dw F_0_541, (F_0_541 - F_1_847) 73*dfc6aa5cSAndroid Build Coastguard WorkerPW_MF078_F117 times 4 dw (F_1_175 - F_1_961), F_1_175 74*dfc6aa5cSAndroid Build Coastguard WorkerPW_F117_F078 times 4 dw F_1_175, (F_1_175 - F_0_390) 75*dfc6aa5cSAndroid Build Coastguard WorkerPW_MF060_MF089 times 4 dw (F_0_298 - F_0_899), -F_0_899 76*dfc6aa5cSAndroid Build Coastguard WorkerPW_MF089_F060 times 4 dw -F_0_899, (F_1_501 - F_0_899) 77*dfc6aa5cSAndroid Build Coastguard WorkerPW_MF050_MF256 times 4 dw (F_2_053 - F_2_562), -F_2_562 78*dfc6aa5cSAndroid Build Coastguard WorkerPW_MF256_F050 times 4 dw -F_2_562, (F_3_072 - F_2_562) 79*dfc6aa5cSAndroid Build Coastguard WorkerPD_DESCALE_P1 times 4 dd 1 << (DESCALE_P1 - 1) 80*dfc6aa5cSAndroid Build Coastguard WorkerPD_DESCALE_P2 times 4 dd 1 << (DESCALE_P2 - 1) 81*dfc6aa5cSAndroid Build Coastguard WorkerPW_DESCALE_P2X times 8 dw 1 << (PASS1_BITS - 1) 82*dfc6aa5cSAndroid Build Coastguard Worker 83*dfc6aa5cSAndroid Build Coastguard Worker alignz 32 84*dfc6aa5cSAndroid Build Coastguard Worker 85*dfc6aa5cSAndroid Build Coastguard Worker; -------------------------------------------------------------------------- 86*dfc6aa5cSAndroid Build Coastguard Worker SECTION SEG_TEXT 87*dfc6aa5cSAndroid Build Coastguard Worker BITS 32 88*dfc6aa5cSAndroid Build Coastguard Worker; 89*dfc6aa5cSAndroid Build Coastguard Worker; Perform the forward DCT on one block of samples. 90*dfc6aa5cSAndroid Build Coastguard Worker; 91*dfc6aa5cSAndroid Build Coastguard Worker; GLOBAL(void) 92*dfc6aa5cSAndroid Build Coastguard Worker; jsimd_fdct_islow_sse2(DCTELEM *data) 93*dfc6aa5cSAndroid Build Coastguard Worker; 94*dfc6aa5cSAndroid Build Coastguard Worker 95*dfc6aa5cSAndroid Build Coastguard Worker%define data(b) (b) + 8 ; DCTELEM *data 96*dfc6aa5cSAndroid Build Coastguard Worker 97*dfc6aa5cSAndroid Build Coastguard Worker%define original_ebp ebp + 0 98*dfc6aa5cSAndroid Build Coastguard Worker%define wk(i) ebp - (WK_NUM - (i)) * SIZEOF_XMMWORD 99*dfc6aa5cSAndroid Build Coastguard Worker ; xmmword wk[WK_NUM] 100*dfc6aa5cSAndroid Build Coastguard Worker%define WK_NUM 6 101*dfc6aa5cSAndroid Build Coastguard Worker 102*dfc6aa5cSAndroid Build Coastguard Worker align 32 103*dfc6aa5cSAndroid Build Coastguard Worker GLOBAL_FUNCTION(jsimd_fdct_islow_sse2) 104*dfc6aa5cSAndroid Build Coastguard Worker 105*dfc6aa5cSAndroid Build Coastguard WorkerEXTN(jsimd_fdct_islow_sse2): 106*dfc6aa5cSAndroid Build Coastguard Worker push ebp 107*dfc6aa5cSAndroid Build Coastguard Worker mov eax, esp ; eax = original ebp 108*dfc6aa5cSAndroid Build Coastguard Worker sub esp, byte 4 109*dfc6aa5cSAndroid Build Coastguard Worker and esp, byte (-SIZEOF_XMMWORD) ; align to 128 bits 110*dfc6aa5cSAndroid Build Coastguard Worker mov [esp], eax 111*dfc6aa5cSAndroid Build Coastguard Worker mov ebp, esp ; ebp = aligned ebp 112*dfc6aa5cSAndroid Build Coastguard Worker lea esp, [wk(0)] 113*dfc6aa5cSAndroid Build Coastguard Worker pushpic ebx 114*dfc6aa5cSAndroid Build Coastguard Worker; push ecx ; unused 115*dfc6aa5cSAndroid Build Coastguard Worker; push edx ; need not be preserved 116*dfc6aa5cSAndroid Build Coastguard Worker; push esi ; unused 117*dfc6aa5cSAndroid Build Coastguard Worker; push edi ; unused 118*dfc6aa5cSAndroid Build Coastguard Worker 119*dfc6aa5cSAndroid Build Coastguard Worker get_GOT ebx ; get GOT address 120*dfc6aa5cSAndroid Build Coastguard Worker 121*dfc6aa5cSAndroid Build Coastguard Worker ; ---- Pass 1: process rows. 122*dfc6aa5cSAndroid Build Coastguard Worker 123*dfc6aa5cSAndroid Build Coastguard Worker mov edx, POINTER [data(eax)] ; (DCTELEM *) 124*dfc6aa5cSAndroid Build Coastguard Worker 125*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, XMMWORD [XMMBLOCK(0,0,edx,SIZEOF_DCTELEM)] 126*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, XMMWORD [XMMBLOCK(1,0,edx,SIZEOF_DCTELEM)] 127*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, XMMWORD [XMMBLOCK(2,0,edx,SIZEOF_DCTELEM)] 128*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, XMMWORD [XMMBLOCK(3,0,edx,SIZEOF_DCTELEM)] 129*dfc6aa5cSAndroid Build Coastguard Worker 130*dfc6aa5cSAndroid Build Coastguard Worker ; xmm0=(00 01 02 03 04 05 06 07), xmm2=(20 21 22 23 24 25 26 27) 131*dfc6aa5cSAndroid Build Coastguard Worker ; xmm1=(10 11 12 13 14 15 16 17), xmm3=(30 31 32 33 34 35 36 37) 132*dfc6aa5cSAndroid Build Coastguard Worker 133*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm0 ; transpose coefficients(phase 1) 134*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm0, xmm1 ; xmm0=(00 10 01 11 02 12 03 13) 135*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm4, xmm1 ; xmm4=(04 14 05 15 06 16 07 17) 136*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm2 ; transpose coefficients(phase 1) 137*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm2, xmm3 ; xmm2=(20 30 21 31 22 32 23 33) 138*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm5, xmm3 ; xmm5=(24 34 25 35 26 36 27 37) 139*dfc6aa5cSAndroid Build Coastguard Worker 140*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, XMMWORD [XMMBLOCK(4,0,edx,SIZEOF_DCTELEM)] 141*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, XMMWORD [XMMBLOCK(5,0,edx,SIZEOF_DCTELEM)] 142*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, XMMWORD [XMMBLOCK(6,0,edx,SIZEOF_DCTELEM)] 143*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, XMMWORD [XMMBLOCK(7,0,edx,SIZEOF_DCTELEM)] 144*dfc6aa5cSAndroid Build Coastguard Worker 145*dfc6aa5cSAndroid Build Coastguard Worker ; xmm6=( 4 12 20 28 36 44 52 60), xmm1=( 6 14 22 30 38 46 54 62) 146*dfc6aa5cSAndroid Build Coastguard Worker ; xmm7=( 5 13 21 29 37 45 53 61), xmm3=( 7 15 23 31 39 47 55 63) 147*dfc6aa5cSAndroid Build Coastguard Worker 148*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(0)], xmm2 ; wk(0)=(20 30 21 31 22 32 23 33) 149*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(1)], xmm5 ; wk(1)=(24 34 25 35 26 36 27 37) 150*dfc6aa5cSAndroid Build Coastguard Worker 151*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm6 ; transpose coefficients(phase 1) 152*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm6, xmm7 ; xmm6=(40 50 41 51 42 52 43 53) 153*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm2, xmm7 ; xmm2=(44 54 45 55 46 56 47 57) 154*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm1 ; transpose coefficients(phase 1) 155*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm1, xmm3 ; xmm1=(60 70 61 71 62 72 63 73) 156*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm5, xmm3 ; xmm5=(64 74 65 75 66 76 67 77) 157*dfc6aa5cSAndroid Build Coastguard Worker 158*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm6 ; transpose coefficients(phase 2) 159*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm6, xmm1 ; xmm6=(40 50 60 70 41 51 61 71) 160*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm7, xmm1 ; xmm7=(42 52 62 72 43 53 63 73) 161*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm2 ; transpose coefficients(phase 2) 162*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm2, xmm5 ; xmm2=(44 54 64 74 45 55 65 75) 163*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm3, xmm5 ; xmm3=(46 56 66 76 47 57 67 77) 164*dfc6aa5cSAndroid Build Coastguard Worker 165*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, XMMWORD [wk(0)] ; xmm1=(20 30 21 31 22 32 23 33) 166*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, XMMWORD [wk(1)] ; xmm5=(24 34 25 35 26 36 27 37) 167*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(2)], xmm7 ; wk(2)=(42 52 62 72 43 53 63 73) 168*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(3)], xmm2 ; wk(3)=(44 54 64 74 45 55 65 75) 169*dfc6aa5cSAndroid Build Coastguard Worker 170*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm0 ; transpose coefficients(phase 2) 171*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm0, xmm1 ; xmm0=(00 10 20 30 01 11 21 31) 172*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm7, xmm1 ; xmm7=(02 12 22 32 03 13 23 33) 173*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm4 ; transpose coefficients(phase 2) 174*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm4, xmm5 ; xmm4=(04 14 24 34 05 15 25 35) 175*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm2, xmm5 ; xmm2=(06 16 26 36 07 17 27 37) 176*dfc6aa5cSAndroid Build Coastguard Worker 177*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm0 ; transpose coefficients(phase 3) 178*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm0, xmm6 ; xmm0=(00 10 20 30 40 50 60 70)=data0 179*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm1, xmm6 ; xmm1=(01 11 21 31 41 51 61 71)=data1 180*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm2 ; transpose coefficients(phase 3) 181*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm2, xmm3 ; xmm2=(06 16 26 36 46 56 66 76)=data6 182*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm5, xmm3 ; xmm5=(07 17 27 37 47 57 67 77)=data7 183*dfc6aa5cSAndroid Build Coastguard Worker 184*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm1 185*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm0 186*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm1, xmm2 ; xmm1=data1-data6=tmp6 187*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm0, xmm5 ; xmm0=data0-data7=tmp7 188*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm6, xmm2 ; xmm6=data1+data6=tmp1 189*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm3, xmm5 ; xmm3=data0+data7=tmp0 190*dfc6aa5cSAndroid Build Coastguard Worker 191*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, XMMWORD [wk(2)] ; xmm2=(42 52 62 72 43 53 63 73) 192*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, XMMWORD [wk(3)] ; xmm5=(44 54 64 74 45 55 65 75) 193*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(0)], xmm1 ; wk(0)=tmp6 194*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(1)], xmm0 ; wk(1)=tmp7 195*dfc6aa5cSAndroid Build Coastguard Worker 196*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm7 ; transpose coefficients(phase 3) 197*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm7, xmm2 ; xmm7=(02 12 22 32 42 52 62 72)=data2 198*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm1, xmm2 ; xmm1=(03 13 23 33 43 53 63 73)=data3 199*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm4 ; transpose coefficients(phase 3) 200*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm4, xmm5 ; xmm4=(04 14 24 34 44 54 64 74)=data4 201*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm0, xmm5 ; xmm0=(05 15 25 35 45 55 65 75)=data5 202*dfc6aa5cSAndroid Build Coastguard Worker 203*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm1 204*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm7 205*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm1, xmm4 ; xmm1=data3+data4=tmp3 206*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm7, xmm0 ; xmm7=data2+data5=tmp2 207*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm2, xmm4 ; xmm2=data3-data4=tmp4 208*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm5, xmm0 ; xmm5=data2-data5=tmp5 209*dfc6aa5cSAndroid Build Coastguard Worker 210*dfc6aa5cSAndroid Build Coastguard Worker ; -- Even part 211*dfc6aa5cSAndroid Build Coastguard Worker 212*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm3 213*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm6 214*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm3, xmm1 ; xmm3=tmp10 215*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm6, xmm7 ; xmm6=tmp11 216*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm4, xmm1 ; xmm4=tmp13 217*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm0, xmm7 ; xmm0=tmp12 218*dfc6aa5cSAndroid Build Coastguard Worker 219*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm3 220*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm3, xmm6 ; xmm3=tmp10+tmp11 221*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm1, xmm6 ; xmm1=tmp10-tmp11 222*dfc6aa5cSAndroid Build Coastguard Worker 223*dfc6aa5cSAndroid Build Coastguard Worker psllw xmm3, PASS1_BITS ; xmm3=data0 224*dfc6aa5cSAndroid Build Coastguard Worker psllw xmm1, PASS1_BITS ; xmm1=data4 225*dfc6aa5cSAndroid Build Coastguard Worker 226*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(2)], xmm3 ; wk(2)=data0 227*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(3)], xmm1 ; wk(3)=data4 228*dfc6aa5cSAndroid Build Coastguard Worker 229*dfc6aa5cSAndroid Build Coastguard Worker ; (Original) 230*dfc6aa5cSAndroid Build Coastguard Worker ; z1 = (tmp12 + tmp13) * 0.541196100; 231*dfc6aa5cSAndroid Build Coastguard Worker ; data2 = z1 + tmp13 * 0.765366865; 232*dfc6aa5cSAndroid Build Coastguard Worker ; data6 = z1 + tmp12 * -1.847759065; 233*dfc6aa5cSAndroid Build Coastguard Worker ; 234*dfc6aa5cSAndroid Build Coastguard Worker ; (This implementation) 235*dfc6aa5cSAndroid Build Coastguard Worker ; data2 = tmp13 * (0.541196100 + 0.765366865) + tmp12 * 0.541196100; 236*dfc6aa5cSAndroid Build Coastguard Worker ; data6 = tmp13 * 0.541196100 + tmp12 * (0.541196100 - 1.847759065); 237*dfc6aa5cSAndroid Build Coastguard Worker 238*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm4 ; xmm4=tmp13 239*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm4 240*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm7, xmm0 ; xmm0=tmp12 241*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm6, xmm0 242*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm7 243*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm6 244*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm7, [GOTOFF(ebx,PW_F130_F054)] ; xmm7=data2L 245*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm6, [GOTOFF(ebx,PW_F130_F054)] ; xmm6=data2H 246*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm4, [GOTOFF(ebx,PW_F054_MF130)] ; xmm4=data6L 247*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm0, [GOTOFF(ebx,PW_F054_MF130)] ; xmm0=data6H 248*dfc6aa5cSAndroid Build Coastguard Worker 249*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm7, [GOTOFF(ebx,PD_DESCALE_P1)] 250*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm6, [GOTOFF(ebx,PD_DESCALE_P1)] 251*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm7, DESCALE_P1 252*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm6, DESCALE_P1 253*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, [GOTOFF(ebx,PD_DESCALE_P1)] 254*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm0, [GOTOFF(ebx,PD_DESCALE_P1)] 255*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm4, DESCALE_P1 256*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm0, DESCALE_P1 257*dfc6aa5cSAndroid Build Coastguard Worker 258*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm7, xmm6 ; xmm7=data2 259*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm4, xmm0 ; xmm4=data6 260*dfc6aa5cSAndroid Build Coastguard Worker 261*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(4)], xmm7 ; wk(4)=data2 262*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(5)], xmm4 ; wk(5)=data6 263*dfc6aa5cSAndroid Build Coastguard Worker 264*dfc6aa5cSAndroid Build Coastguard Worker ; -- Odd part 265*dfc6aa5cSAndroid Build Coastguard Worker 266*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, XMMWORD [wk(0)] ; xmm3=tmp6 267*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, XMMWORD [wk(1)] ; xmm1=tmp7 268*dfc6aa5cSAndroid Build Coastguard Worker 269*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm2 ; xmm2=tmp4 270*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm5 ; xmm5=tmp5 271*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm6, xmm3 ; xmm6=z3 272*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm0, xmm1 ; xmm0=z4 273*dfc6aa5cSAndroid Build Coastguard Worker 274*dfc6aa5cSAndroid Build Coastguard Worker ; (Original) 275*dfc6aa5cSAndroid Build Coastguard Worker ; z5 = (z3 + z4) * 1.175875602; 276*dfc6aa5cSAndroid Build Coastguard Worker ; z3 = z3 * -1.961570560; z4 = z4 * -0.390180644; 277*dfc6aa5cSAndroid Build Coastguard Worker ; z3 += z5; z4 += z5; 278*dfc6aa5cSAndroid Build Coastguard Worker ; 279*dfc6aa5cSAndroid Build Coastguard Worker ; (This implementation) 280*dfc6aa5cSAndroid Build Coastguard Worker ; z3 = z3 * (1.175875602 - 1.961570560) + z4 * 1.175875602; 281*dfc6aa5cSAndroid Build Coastguard Worker ; z4 = z3 * 1.175875602 + z4 * (1.175875602 - 0.390180644); 282*dfc6aa5cSAndroid Build Coastguard Worker 283*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm6 284*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm6 285*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm7, xmm0 286*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm4, xmm0 287*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm7 288*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm4 289*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm7, [GOTOFF(ebx,PW_MF078_F117)] ; xmm7=z3L 290*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm4, [GOTOFF(ebx,PW_MF078_F117)] ; xmm4=z3H 291*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm6, [GOTOFF(ebx,PW_F117_F078)] ; xmm6=z4L 292*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm0, [GOTOFF(ebx,PW_F117_F078)] ; xmm0=z4H 293*dfc6aa5cSAndroid Build Coastguard Worker 294*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(0)], xmm7 ; wk(0)=z3L 295*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(1)], xmm4 ; wk(1)=z3H 296*dfc6aa5cSAndroid Build Coastguard Worker 297*dfc6aa5cSAndroid Build Coastguard Worker ; (Original) 298*dfc6aa5cSAndroid Build Coastguard Worker ; z1 = tmp4 + tmp7; z2 = tmp5 + tmp6; 299*dfc6aa5cSAndroid Build Coastguard Worker ; tmp4 = tmp4 * 0.298631336; tmp5 = tmp5 * 2.053119869; 300*dfc6aa5cSAndroid Build Coastguard Worker ; tmp6 = tmp6 * 3.072711026; tmp7 = tmp7 * 1.501321110; 301*dfc6aa5cSAndroid Build Coastguard Worker ; z1 = z1 * -0.899976223; z2 = z2 * -2.562915447; 302*dfc6aa5cSAndroid Build Coastguard Worker ; data7 = tmp4 + z1 + z3; data5 = tmp5 + z2 + z4; 303*dfc6aa5cSAndroid Build Coastguard Worker ; data3 = tmp6 + z2 + z3; data1 = tmp7 + z1 + z4; 304*dfc6aa5cSAndroid Build Coastguard Worker ; 305*dfc6aa5cSAndroid Build Coastguard Worker ; (This implementation) 306*dfc6aa5cSAndroid Build Coastguard Worker ; tmp4 = tmp4 * (0.298631336 - 0.899976223) + tmp7 * -0.899976223; 307*dfc6aa5cSAndroid Build Coastguard Worker ; tmp5 = tmp5 * (2.053119869 - 2.562915447) + tmp6 * -2.562915447; 308*dfc6aa5cSAndroid Build Coastguard Worker ; tmp6 = tmp5 * -2.562915447 + tmp6 * (3.072711026 - 2.562915447); 309*dfc6aa5cSAndroid Build Coastguard Worker ; tmp7 = tmp4 * -0.899976223 + tmp7 * (1.501321110 - 0.899976223); 310*dfc6aa5cSAndroid Build Coastguard Worker ; data7 = tmp4 + z3; data5 = tmp5 + z4; 311*dfc6aa5cSAndroid Build Coastguard Worker ; data3 = tmp6 + z3; data1 = tmp7 + z4; 312*dfc6aa5cSAndroid Build Coastguard Worker 313*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm2 314*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm2 315*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm7, xmm1 316*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm4, xmm1 317*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm7 318*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm4 319*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm7, [GOTOFF(ebx,PW_MF060_MF089)] ; xmm7=tmp4L 320*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm4, [GOTOFF(ebx,PW_MF060_MF089)] ; xmm4=tmp4H 321*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm2, [GOTOFF(ebx,PW_MF089_F060)] ; xmm2=tmp7L 322*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm1, [GOTOFF(ebx,PW_MF089_F060)] ; xmm1=tmp7H 323*dfc6aa5cSAndroid Build Coastguard Worker 324*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm7, XMMWORD [wk(0)] ; xmm7=data7L 325*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, XMMWORD [wk(1)] ; xmm4=data7H 326*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm2, xmm6 ; xmm2=data1L 327*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, xmm0 ; xmm1=data1H 328*dfc6aa5cSAndroid Build Coastguard Worker 329*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm7, [GOTOFF(ebx,PD_DESCALE_P1)] 330*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, [GOTOFF(ebx,PD_DESCALE_P1)] 331*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm7, DESCALE_P1 332*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm4, DESCALE_P1 333*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm2, [GOTOFF(ebx,PD_DESCALE_P1)] 334*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, [GOTOFF(ebx,PD_DESCALE_P1)] 335*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm2, DESCALE_P1 336*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm1, DESCALE_P1 337*dfc6aa5cSAndroid Build Coastguard Worker 338*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm7, xmm4 ; xmm7=data7 339*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm2, xmm1 ; xmm2=data1 340*dfc6aa5cSAndroid Build Coastguard Worker 341*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm5 342*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm5 343*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm4, xmm3 344*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm1, xmm3 345*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm4 346*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm1 347*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm4, [GOTOFF(ebx,PW_MF050_MF256)] ; xmm4=tmp5L 348*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm1, [GOTOFF(ebx,PW_MF050_MF256)] ; xmm1=tmp5H 349*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm5, [GOTOFF(ebx,PW_MF256_F050)] ; xmm5=tmp6L 350*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm3, [GOTOFF(ebx,PW_MF256_F050)] ; xmm3=tmp6H 351*dfc6aa5cSAndroid Build Coastguard Worker 352*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, xmm6 ; xmm4=data5L 353*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, xmm0 ; xmm1=data5H 354*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm5, XMMWORD [wk(0)] ; xmm5=data3L 355*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm3, XMMWORD [wk(1)] ; xmm3=data3H 356*dfc6aa5cSAndroid Build Coastguard Worker 357*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, [GOTOFF(ebx,PD_DESCALE_P1)] 358*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, [GOTOFF(ebx,PD_DESCALE_P1)] 359*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm4, DESCALE_P1 360*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm1, DESCALE_P1 361*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm5, [GOTOFF(ebx,PD_DESCALE_P1)] 362*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm3, [GOTOFF(ebx,PD_DESCALE_P1)] 363*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm5, DESCALE_P1 364*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm3, DESCALE_P1 365*dfc6aa5cSAndroid Build Coastguard Worker 366*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm4, xmm1 ; xmm4=data5 367*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm5, xmm3 ; xmm5=data3 368*dfc6aa5cSAndroid Build Coastguard Worker 369*dfc6aa5cSAndroid Build Coastguard Worker ; ---- Pass 2: process columns. 370*dfc6aa5cSAndroid Build Coastguard Worker 371*dfc6aa5cSAndroid Build Coastguard Worker; mov edx, POINTER [data(eax)] ; (DCTELEM *) 372*dfc6aa5cSAndroid Build Coastguard Worker 373*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, XMMWORD [wk(2)] ; xmm6=col0 374*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, XMMWORD [wk(4)] ; xmm0=col2 375*dfc6aa5cSAndroid Build Coastguard Worker 376*dfc6aa5cSAndroid Build Coastguard Worker ; xmm6=(00 10 20 30 40 50 60 70), xmm0=(02 12 22 32 42 52 62 72) 377*dfc6aa5cSAndroid Build Coastguard Worker ; xmm2=(01 11 21 31 41 51 61 71), xmm5=(03 13 23 33 43 53 63 73) 378*dfc6aa5cSAndroid Build Coastguard Worker 379*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm6 ; transpose coefficients(phase 1) 380*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm6, xmm2 ; xmm6=(00 01 10 11 20 21 30 31) 381*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm1, xmm2 ; xmm1=(40 41 50 51 60 61 70 71) 382*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm0 ; transpose coefficients(phase 1) 383*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm0, xmm5 ; xmm0=(02 03 12 13 22 23 32 33) 384*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm3, xmm5 ; xmm3=(42 43 52 53 62 63 72 73) 385*dfc6aa5cSAndroid Build Coastguard Worker 386*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, XMMWORD [wk(3)] ; xmm2=col4 387*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, XMMWORD [wk(5)] ; xmm5=col6 388*dfc6aa5cSAndroid Build Coastguard Worker 389*dfc6aa5cSAndroid Build Coastguard Worker ; xmm2=(04 14 24 34 44 54 64 74), xmm5=(06 16 26 36 46 56 66 76) 390*dfc6aa5cSAndroid Build Coastguard Worker ; xmm4=(05 15 25 35 45 55 65 75), xmm7=(07 17 27 37 47 57 67 77) 391*dfc6aa5cSAndroid Build Coastguard Worker 392*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(0)], xmm0 ; wk(0)=(02 03 12 13 22 23 32 33) 393*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(1)], xmm3 ; wk(1)=(42 43 52 53 62 63 72 73) 394*dfc6aa5cSAndroid Build Coastguard Worker 395*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm2 ; transpose coefficients(phase 1) 396*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm2, xmm4 ; xmm2=(04 05 14 15 24 25 34 35) 397*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm0, xmm4 ; xmm0=(44 45 54 55 64 65 74 75) 398*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm5 ; transpose coefficients(phase 1) 399*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm5, xmm7 ; xmm5=(06 07 16 17 26 27 36 37) 400*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm3, xmm7 ; xmm3=(46 47 56 57 66 67 76 77) 401*dfc6aa5cSAndroid Build Coastguard Worker 402*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm2 ; transpose coefficients(phase 2) 403*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm2, xmm5 ; xmm2=(04 05 06 07 14 15 16 17) 404*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm4, xmm5 ; xmm4=(24 25 26 27 34 35 36 37) 405*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm0 ; transpose coefficients(phase 2) 406*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm0, xmm3 ; xmm0=(44 45 46 47 54 55 56 57) 407*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm7, xmm3 ; xmm7=(64 65 66 67 74 75 76 77) 408*dfc6aa5cSAndroid Build Coastguard Worker 409*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, XMMWORD [wk(0)] ; xmm5=(02 03 12 13 22 23 32 33) 410*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, XMMWORD [wk(1)] ; xmm3=(42 43 52 53 62 63 72 73) 411*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(2)], xmm4 ; wk(2)=(24 25 26 27 34 35 36 37) 412*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(3)], xmm0 ; wk(3)=(44 45 46 47 54 55 56 57) 413*dfc6aa5cSAndroid Build Coastguard Worker 414*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm6 ; transpose coefficients(phase 2) 415*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm6, xmm5 ; xmm6=(00 01 02 03 10 11 12 13) 416*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm4, xmm5 ; xmm4=(20 21 22 23 30 31 32 33) 417*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm1 ; transpose coefficients(phase 2) 418*dfc6aa5cSAndroid Build Coastguard Worker punpckldq xmm1, xmm3 ; xmm1=(40 41 42 43 50 51 52 53) 419*dfc6aa5cSAndroid Build Coastguard Worker punpckhdq xmm0, xmm3 ; xmm0=(60 61 62 63 70 71 72 73) 420*dfc6aa5cSAndroid Build Coastguard Worker 421*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm6 ; transpose coefficients(phase 3) 422*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm6, xmm2 ; xmm6=(00 01 02 03 04 05 06 07)=data0 423*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm5, xmm2 ; xmm5=(10 11 12 13 14 15 16 17)=data1 424*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm0 ; transpose coefficients(phase 3) 425*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm0, xmm7 ; xmm0=(60 61 62 63 64 65 66 67)=data6 426*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm3, xmm7 ; xmm3=(70 71 72 73 74 75 76 77)=data7 427*dfc6aa5cSAndroid Build Coastguard Worker 428*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm5 429*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm6 430*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm5, xmm0 ; xmm5=data1-data6=tmp6 431*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm6, xmm3 ; xmm6=data0-data7=tmp7 432*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm2, xmm0 ; xmm2=data1+data6=tmp1 433*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm7, xmm3 ; xmm7=data0+data7=tmp0 434*dfc6aa5cSAndroid Build Coastguard Worker 435*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, XMMWORD [wk(2)] ; xmm0=(24 25 26 27 34 35 36 37) 436*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, XMMWORD [wk(3)] ; xmm3=(44 45 46 47 54 55 56 57) 437*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(0)], xmm5 ; wk(0)=tmp6 438*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(1)], xmm6 ; wk(1)=tmp7 439*dfc6aa5cSAndroid Build Coastguard Worker 440*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm4 ; transpose coefficients(phase 3) 441*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm4, xmm0 ; xmm4=(20 21 22 23 24 25 26 27)=data2 442*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm5, xmm0 ; xmm5=(30 31 32 33 34 35 36 37)=data3 443*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm1 ; transpose coefficients(phase 3) 444*dfc6aa5cSAndroid Build Coastguard Worker punpcklqdq xmm1, xmm3 ; xmm1=(40 41 42 43 44 45 46 47)=data4 445*dfc6aa5cSAndroid Build Coastguard Worker punpckhqdq xmm6, xmm3 ; xmm6=(50 51 52 53 54 55 56 57)=data5 446*dfc6aa5cSAndroid Build Coastguard Worker 447*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm5 448*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm4 449*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm5, xmm1 ; xmm5=data3+data4=tmp3 450*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm4, xmm6 ; xmm4=data2+data5=tmp2 451*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm0, xmm1 ; xmm0=data3-data4=tmp4 452*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm3, xmm6 ; xmm3=data2-data5=tmp5 453*dfc6aa5cSAndroid Build Coastguard Worker 454*dfc6aa5cSAndroid Build Coastguard Worker ; -- Even part 455*dfc6aa5cSAndroid Build Coastguard Worker 456*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm7 457*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm2 458*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm7, xmm5 ; xmm7=tmp10 459*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm2, xmm4 ; xmm2=tmp11 460*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm1, xmm5 ; xmm1=tmp13 461*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm6, xmm4 ; xmm6=tmp12 462*dfc6aa5cSAndroid Build Coastguard Worker 463*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm7 464*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm7, xmm2 ; xmm7=tmp10+tmp11 465*dfc6aa5cSAndroid Build Coastguard Worker psubw xmm5, xmm2 ; xmm5=tmp10-tmp11 466*dfc6aa5cSAndroid Build Coastguard Worker 467*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm7, [GOTOFF(ebx,PW_DESCALE_P2X)] 468*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm5, [GOTOFF(ebx,PW_DESCALE_P2X)] 469*dfc6aa5cSAndroid Build Coastguard Worker psraw xmm7, PASS1_BITS ; xmm7=data0 470*dfc6aa5cSAndroid Build Coastguard Worker psraw xmm5, PASS1_BITS ; xmm5=data4 471*dfc6aa5cSAndroid Build Coastguard Worker 472*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(0,0,edx,SIZEOF_DCTELEM)], xmm7 473*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(4,0,edx,SIZEOF_DCTELEM)], xmm5 474*dfc6aa5cSAndroid Build Coastguard Worker 475*dfc6aa5cSAndroid Build Coastguard Worker ; (Original) 476*dfc6aa5cSAndroid Build Coastguard Worker ; z1 = (tmp12 + tmp13) * 0.541196100; 477*dfc6aa5cSAndroid Build Coastguard Worker ; data2 = z1 + tmp13 * 0.765366865; 478*dfc6aa5cSAndroid Build Coastguard Worker ; data6 = z1 + tmp12 * -1.847759065; 479*dfc6aa5cSAndroid Build Coastguard Worker ; 480*dfc6aa5cSAndroid Build Coastguard Worker ; (This implementation) 481*dfc6aa5cSAndroid Build Coastguard Worker ; data2 = tmp13 * (0.541196100 + 0.765366865) + tmp12 * 0.541196100; 482*dfc6aa5cSAndroid Build Coastguard Worker ; data6 = tmp13 * 0.541196100 + tmp12 * (0.541196100 - 1.847759065); 483*dfc6aa5cSAndroid Build Coastguard Worker 484*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm1 ; xmm1=tmp13 485*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm1 486*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm4, xmm6 ; xmm6=tmp12 487*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm2, xmm6 488*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm4 489*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm2 490*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm4, [GOTOFF(ebx,PW_F130_F054)] ; xmm4=data2L 491*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm2, [GOTOFF(ebx,PW_F130_F054)] ; xmm2=data2H 492*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm1, [GOTOFF(ebx,PW_F054_MF130)] ; xmm1=data6L 493*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm6, [GOTOFF(ebx,PW_F054_MF130)] ; xmm6=data6H 494*dfc6aa5cSAndroid Build Coastguard Worker 495*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, [GOTOFF(ebx,PD_DESCALE_P2)] 496*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm2, [GOTOFF(ebx,PD_DESCALE_P2)] 497*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm4, DESCALE_P2 498*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm2, DESCALE_P2 499*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, [GOTOFF(ebx,PD_DESCALE_P2)] 500*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm6, [GOTOFF(ebx,PD_DESCALE_P2)] 501*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm1, DESCALE_P2 502*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm6, DESCALE_P2 503*dfc6aa5cSAndroid Build Coastguard Worker 504*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm4, xmm2 ; xmm4=data2 505*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm1, xmm6 ; xmm1=data6 506*dfc6aa5cSAndroid Build Coastguard Worker 507*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(2,0,edx,SIZEOF_DCTELEM)], xmm4 508*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(6,0,edx,SIZEOF_DCTELEM)], xmm1 509*dfc6aa5cSAndroid Build Coastguard Worker 510*dfc6aa5cSAndroid Build Coastguard Worker ; -- Odd part 511*dfc6aa5cSAndroid Build Coastguard Worker 512*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, XMMWORD [wk(0)] ; xmm7=tmp6 513*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, XMMWORD [wk(1)] ; xmm5=tmp7 514*dfc6aa5cSAndroid Build Coastguard Worker 515*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm0 ; xmm0=tmp4 516*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm3 ; xmm3=tmp5 517*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm2, xmm7 ; xmm2=z3 518*dfc6aa5cSAndroid Build Coastguard Worker paddw xmm6, xmm5 ; xmm6=z4 519*dfc6aa5cSAndroid Build Coastguard Worker 520*dfc6aa5cSAndroid Build Coastguard Worker ; (Original) 521*dfc6aa5cSAndroid Build Coastguard Worker ; z5 = (z3 + z4) * 1.175875602; 522*dfc6aa5cSAndroid Build Coastguard Worker ; z3 = z3 * -1.961570560; z4 = z4 * -0.390180644; 523*dfc6aa5cSAndroid Build Coastguard Worker ; z3 += z5; z4 += z5; 524*dfc6aa5cSAndroid Build Coastguard Worker ; 525*dfc6aa5cSAndroid Build Coastguard Worker ; (This implementation) 526*dfc6aa5cSAndroid Build Coastguard Worker ; z3 = z3 * (1.175875602 - 1.961570560) + z4 * 1.175875602; 527*dfc6aa5cSAndroid Build Coastguard Worker ; z4 = z3 * 1.175875602 + z4 * (1.175875602 - 0.390180644); 528*dfc6aa5cSAndroid Build Coastguard Worker 529*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm2 530*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm2 531*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm4, xmm6 532*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm1, xmm6 533*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm2, xmm4 534*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm6, xmm1 535*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm4, [GOTOFF(ebx,PW_MF078_F117)] ; xmm4=z3L 536*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm1, [GOTOFF(ebx,PW_MF078_F117)] ; xmm1=z3H 537*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm2, [GOTOFF(ebx,PW_F117_F078)] ; xmm2=z4L 538*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm6, [GOTOFF(ebx,PW_F117_F078)] ; xmm6=z4H 539*dfc6aa5cSAndroid Build Coastguard Worker 540*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(0)], xmm4 ; wk(0)=z3L 541*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [wk(1)], xmm1 ; wk(1)=z3H 542*dfc6aa5cSAndroid Build Coastguard Worker 543*dfc6aa5cSAndroid Build Coastguard Worker ; (Original) 544*dfc6aa5cSAndroid Build Coastguard Worker ; z1 = tmp4 + tmp7; z2 = tmp5 + tmp6; 545*dfc6aa5cSAndroid Build Coastguard Worker ; tmp4 = tmp4 * 0.298631336; tmp5 = tmp5 * 2.053119869; 546*dfc6aa5cSAndroid Build Coastguard Worker ; tmp6 = tmp6 * 3.072711026; tmp7 = tmp7 * 1.501321110; 547*dfc6aa5cSAndroid Build Coastguard Worker ; z1 = z1 * -0.899976223; z2 = z2 * -2.562915447; 548*dfc6aa5cSAndroid Build Coastguard Worker ; data7 = tmp4 + z1 + z3; data5 = tmp5 + z2 + z4; 549*dfc6aa5cSAndroid Build Coastguard Worker ; data3 = tmp6 + z2 + z3; data1 = tmp7 + z1 + z4; 550*dfc6aa5cSAndroid Build Coastguard Worker ; 551*dfc6aa5cSAndroid Build Coastguard Worker ; (This implementation) 552*dfc6aa5cSAndroid Build Coastguard Worker ; tmp4 = tmp4 * (0.298631336 - 0.899976223) + tmp7 * -0.899976223; 553*dfc6aa5cSAndroid Build Coastguard Worker ; tmp5 = tmp5 * (2.053119869 - 2.562915447) + tmp6 * -2.562915447; 554*dfc6aa5cSAndroid Build Coastguard Worker ; tmp6 = tmp5 * -2.562915447 + tmp6 * (3.072711026 - 2.562915447); 555*dfc6aa5cSAndroid Build Coastguard Worker ; tmp7 = tmp4 * -0.899976223 + tmp7 * (1.501321110 - 0.899976223); 556*dfc6aa5cSAndroid Build Coastguard Worker ; data7 = tmp4 + z3; data5 = tmp5 + z4; 557*dfc6aa5cSAndroid Build Coastguard Worker ; data3 = tmp6 + z3; data1 = tmp7 + z4; 558*dfc6aa5cSAndroid Build Coastguard Worker 559*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm4, xmm0 560*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm0 561*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm4, xmm5 562*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm1, xmm5 563*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm0, xmm4 564*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm1 565*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm4, [GOTOFF(ebx,PW_MF060_MF089)] ; xmm4=tmp4L 566*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm1, [GOTOFF(ebx,PW_MF060_MF089)] ; xmm1=tmp4H 567*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm0, [GOTOFF(ebx,PW_MF089_F060)] ; xmm0=tmp7L 568*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm5, [GOTOFF(ebx,PW_MF089_F060)] ; xmm5=tmp7H 569*dfc6aa5cSAndroid Build Coastguard Worker 570*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, XMMWORD [wk(0)] ; xmm4=data7L 571*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, XMMWORD [wk(1)] ; xmm1=data7H 572*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm0, xmm2 ; xmm0=data1L 573*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm5, xmm6 ; xmm5=data1H 574*dfc6aa5cSAndroid Build Coastguard Worker 575*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm4, [GOTOFF(ebx,PD_DESCALE_P2)] 576*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, [GOTOFF(ebx,PD_DESCALE_P2)] 577*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm4, DESCALE_P2 578*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm1, DESCALE_P2 579*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm0, [GOTOFF(ebx,PD_DESCALE_P2)] 580*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm5, [GOTOFF(ebx,PD_DESCALE_P2)] 581*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm0, DESCALE_P2 582*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm5, DESCALE_P2 583*dfc6aa5cSAndroid Build Coastguard Worker 584*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm4, xmm1 ; xmm4=data7 585*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm0, xmm5 ; xmm0=data1 586*dfc6aa5cSAndroid Build Coastguard Worker 587*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(7,0,edx,SIZEOF_DCTELEM)], xmm4 588*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(1,0,edx,SIZEOF_DCTELEM)], xmm0 589*dfc6aa5cSAndroid Build Coastguard Worker 590*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm1, xmm3 591*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm5, xmm3 592*dfc6aa5cSAndroid Build Coastguard Worker punpcklwd xmm1, xmm7 593*dfc6aa5cSAndroid Build Coastguard Worker punpckhwd xmm5, xmm7 594*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm3, xmm1 595*dfc6aa5cSAndroid Build Coastguard Worker movdqa xmm7, xmm5 596*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm1, [GOTOFF(ebx,PW_MF050_MF256)] ; xmm1=tmp5L 597*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm5, [GOTOFF(ebx,PW_MF050_MF256)] ; xmm5=tmp5H 598*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm3, [GOTOFF(ebx,PW_MF256_F050)] ; xmm3=tmp6L 599*dfc6aa5cSAndroid Build Coastguard Worker pmaddwd xmm7, [GOTOFF(ebx,PW_MF256_F050)] ; xmm7=tmp6H 600*dfc6aa5cSAndroid Build Coastguard Worker 601*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, xmm2 ; xmm1=data5L 602*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm5, xmm6 ; xmm5=data5H 603*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm3, XMMWORD [wk(0)] ; xmm3=data3L 604*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm7, XMMWORD [wk(1)] ; xmm7=data3H 605*dfc6aa5cSAndroid Build Coastguard Worker 606*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm1, [GOTOFF(ebx,PD_DESCALE_P2)] 607*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm5, [GOTOFF(ebx,PD_DESCALE_P2)] 608*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm1, DESCALE_P2 609*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm5, DESCALE_P2 610*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm3, [GOTOFF(ebx,PD_DESCALE_P2)] 611*dfc6aa5cSAndroid Build Coastguard Worker paddd xmm7, [GOTOFF(ebx,PD_DESCALE_P2)] 612*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm3, DESCALE_P2 613*dfc6aa5cSAndroid Build Coastguard Worker psrad xmm7, DESCALE_P2 614*dfc6aa5cSAndroid Build Coastguard Worker 615*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm1, xmm5 ; xmm1=data5 616*dfc6aa5cSAndroid Build Coastguard Worker packssdw xmm3, xmm7 ; xmm3=data3 617*dfc6aa5cSAndroid Build Coastguard Worker 618*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(5,0,edx,SIZEOF_DCTELEM)], xmm1 619*dfc6aa5cSAndroid Build Coastguard Worker movdqa XMMWORD [XMMBLOCK(3,0,edx,SIZEOF_DCTELEM)], xmm3 620*dfc6aa5cSAndroid Build Coastguard Worker 621*dfc6aa5cSAndroid Build Coastguard Worker; pop edi ; unused 622*dfc6aa5cSAndroid Build Coastguard Worker; pop esi ; unused 623*dfc6aa5cSAndroid Build Coastguard Worker; pop edx ; need not be preserved 624*dfc6aa5cSAndroid Build Coastguard Worker; pop ecx ; unused 625*dfc6aa5cSAndroid Build Coastguard Worker poppic ebx 626*dfc6aa5cSAndroid Build Coastguard Worker mov esp, ebp ; esp <- aligned ebp 627*dfc6aa5cSAndroid Build Coastguard Worker pop esp ; esp <- original ebp 628*dfc6aa5cSAndroid Build Coastguard Worker pop ebp 629*dfc6aa5cSAndroid Build Coastguard Worker ret 630*dfc6aa5cSAndroid Build Coastguard Worker 631*dfc6aa5cSAndroid Build Coastguard Worker; For some reason, the OS X linker does not honor the request to align the 632*dfc6aa5cSAndroid Build Coastguard Worker; segment unless we do this. 633*dfc6aa5cSAndroid Build Coastguard Worker align 32 634