Path: blob/master/arch/alpha/lib/ev6-csum_ipv6_magic.S
10817 views
/*1* arch/alpha/lib/ev6-csum_ipv6_magic.S2* 21264 version contributed by Rick Gorton <[email protected]>3*4* unsigned short csum_ipv6_magic(struct in6_addr *saddr,5* struct in6_addr *daddr,6* __u32 len,7* unsigned short proto,8* unsigned int csum);9*10* Much of the information about 21264 scheduling/coding comes from:11* Compiler Writer's Guide for the Alpha 2126412* abbreviated as 'CWG' in other comments here13* ftp.digital.com/pub/Digital/info/semiconductor/literature/dsc-library.html14* Scheduling notation:15* E - either cluster16* U - upper subcluster; U0 - subcluster U0; U1 - subcluster U117* L - lower subcluster; L0 - subcluster L0; L1 - subcluster L118* Try not to change the actual algorithm if possible for consistency.19* Determining actual stalls (other than slotting) doesn't appear to be easy to do.20*21* unsigned short csum_ipv6_magic(struct in6_addr *saddr,22* struct in6_addr *daddr,23* __u32 len,24* unsigned short proto,25* unsigned int csum);26*27* Swap <proto> (takes form 0xaabb)28* Then shift it left by 48, so result is:29* 0xbbaa0000 0000000030* Then turn it back into a sign extended 32-bit item31* 0xbbaa000032*33* Swap <len> (an unsigned int) using Mike Burrows' 7-instruction sequence34* (we can't hide the 3-cycle latency of the unpkbw in the 6-instruction sequence)35* Assume input takes form 0xAABBCCDD36*37* Finally, original 'folding' approach is to split the long into 4 unsigned shorts38* add 4 ushorts, resulting in ushort/carry39* add carry bits + ushort --> ushort40* add carry bits + ushort --> ushort (in case the carry results in an overflow)41* Truncate to a ushort. (took 13 instructions)42* From doing some testing, using the approach in checksum.c:from64to16()43* results in the same outcome:44* split into 2 uints, add those, generating a ulong45* add the 3 low ushorts together, generating a uint46* a final add of the 2 lower ushorts47* truncating the result.48*49* Misalignment handling added by Ivan Kokshaysky <[email protected]>50* The cost is 16 instructions (~8 cycles), including two extra loads which51* may cause additional delay in rare cases (load-load replay traps).52*/5354.globl csum_ipv6_magic55.align 456.ent csum_ipv6_magic57.frame $30,0,$26,058csum_ipv6_magic:59.prologue 06061ldq_u $0,0($16) # L : Latency: 362inslh $18,7,$4 # U : 0000000000AABBCC63ldq_u $1,8($16) # L : Latency: 364sll $19,8,$7 # U : U L U L : 0x00000000 00aabb006566and $16,7,$6 # E : src misalignment67ldq_u $5,15($16) # L : Latency: 368zapnot $20,15,$20 # U : zero extend incoming csum69ldq_u $2,0($17) # L : U L U L : Latency: 37071extql $0,$6,$0 # U :72extqh $1,$6,$22 # U :73ldq_u $3,8($17) # L : Latency: 374sll $19,24,$19 # U : U U L U : 0x000000aa bb0000007576cmoveq $6,$31,$22 # E : src aligned?77ldq_u $23,15($17) # L : Latency: 378inswl $18,3,$18 # U : 000000CCDD00000079addl $19,$7,$19 # E : U L U L : <sign bits>bbaabb008081or $0,$22,$0 # E : 1st src word complete82extql $1,$6,$1 # U :83or $18,$4,$18 # E : 000000CCDDAABBCC84extqh $5,$6,$5 # U : L U L U8586and $17,7,$6 # E : dst misalignment87extql $2,$6,$2 # U :88or $1,$5,$1 # E : 2nd src word complete89extqh $3,$6,$22 # U : L U L U :9091cmoveq $6,$31,$22 # E : dst aligned?92extql $3,$6,$3 # U :93addq $20,$0,$20 # E : begin summing the words94extqh $23,$6,$23 # U : L U L U :9596srl $18,16,$4 # U : 0000000000CCDDAA97or $2,$22,$2 # E : 1st dst word complete98zap $19,0x3,$19 # U : <sign bits>bbaa000099or $3,$23,$3 # E : U L U L : 2nd dst word complete100101cmpult $20,$0,$0 # E :102addq $20,$1,$20 # E :103zapnot $18,0xa,$18 # U : 00000000DD00BB00104zap $4,0xa,$4 # U : U U L L : 0000000000CC00AA105106or $18,$4,$18 # E : 00000000DDCCBBAA107nop # E :108cmpult $20,$1,$1 # E :109addq $20,$2,$20 # E : U L U L110111cmpult $20,$2,$2 # E :112addq $20,$3,$20 # E :113cmpult $20,$3,$3 # E : (1 cycle stall on $20)114addq $20,$18,$20 # E : U L U L (1 cycle stall on $20)115116cmpult $20,$18,$18 # E :117addq $20,$19,$20 # E : (1 cycle stall on $20)118addq $0,$1,$0 # E : merge the carries back into the csum119addq $2,$3,$2 # E :120121cmpult $20,$19,$19 # E :122addq $18,$19,$18 # E : (1 cycle stall on $19)123addq $0,$2,$0 # E :124addq $20,$18,$20 # E : U L U L :125/* (1 cycle stall on $18, 2 cycles on $20) */126127addq $0,$20,$0 # E :128zapnot $0,15,$1 # U : Start folding output (1 cycle stall on $0)129nop # E :130srl $0,32,$0 # U : U L U L : (1 cycle stall on $0)131132addq $1,$0,$1 # E : Finished generating ulong133extwl $1,2,$2 # U : ushort[1] (1 cycle stall on $1)134zapnot $1,3,$0 # U : ushort[0] (1 cycle stall on $1)135extwl $1,4,$1 # U : ushort[2] (1 cycle stall on $1)136137addq $0,$2,$0 # E138addq $0,$1,$3 # E : Finished generating uint139/* (1 cycle stall on $0) */140extwl $3,2,$1 # U : ushort[1] (1 cycle stall on $3)141nop # E : L U L U142143addq $1,$3,$0 # E : Final carry144not $0,$4 # E : complement (1 cycle stall on $0)145zapnot $4,3,$0 # U : clear upper garbage bits146/* (1 cycle stall on $4) */147ret # L0 : L U L U148149.end csum_ipv6_magic150151152