Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | /* * Copyright (c) 2005 Apple Computer, Inc. All rights reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this * file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_LICENSE_HEADER_END@ */ // *************** // * S T R C P Y * // *************** // // char *strcpy(const char *dst, const char *src); // // We optimize the move by doing it vector parallel. This introduces // a complication: if we blindly did vector load/stores until finding // a 0, we might get a spurious page fault by touching bytes past it. // To avoid this, we never do a load that crosses a page boundary, // and never store a byte we don't have to. // // We align the destination, because unaligned vector stores are slow. .text .globl _strcpy .align 4 _strcpy: // char *strcpy(const char *dst, const char *src); pushl %edi movl 8(%esp),%edi // get dest ptr movl 12(%esp),%ecx // get source ptr movl %edi,%edx // copy dest ptr negl %edx andl $15,%edx // how many bytes to align dest ptr? jnz LLoopOverBytes // not aligned, so go do so // In order to avoid spurious page faults, we loop until nearing the source page // end. Then we revert to a byte-by-byte loop for 16 bytes until the page is crossed, // then resume the vector loop. // %ecx = source ptr (unaligned) // %edi = dest ptr (aligned) LNextChunk: movl %ecx,%eax // copy source ptr movl $4096,%edx andl $4095,%eax // get offset into source page subl %eax,%edx // get #bytes remaining in source page shrl $4,%edx // get #chunks till end of page jnz LLoopOverChunks // enter vector loop movl $16,%edx // move 16 bytes to cross page but keep dest aligned jmp LLoopOverBytes // Loop over bytes. // %ecx = source ptr // %edi = dest ptr // %edx = byte count .align 4,0x90 // align inner loops to optimize I-fetch LLoopOverBytes: movzb (%ecx),%eax // get source byte inc %ecx movb %al,(%edi) // pack into dest inc %edi testl %eax,%eax // 0? jz LDone // yes, we're done dec %edx // more to go? jnz LLoopOverBytes jmp LNextChunk // we've come to end of page // Loop over 16-byte chunks. // %ecx = source ptr (unaligned) // %edi = dest ptr (aligned) // %edx = chunk count .align 4,0x90 // align inner loops to optimize I-fetch LLoopOverChunks: movdqu (%ecx),%xmm1 // get source pxor %xmm0,%xmm0 // get some 0s addl $16,%ecx pcmpeqb %xmm1,%xmm0 // compare source to 0s pmovmskb %xmm0,%eax // get result mask for 0 check testl %eax,%eax // any 0s? jnz LFound0 // yes, exit loop movdqa %xmm1,(%edi) // no 0s so do aligned store into destination addl $16,%edi dec %edx // more to go? jnz LLoopOverChunks movl $16,%edx // move 16 bytes jmp LLoopOverBytes // cross page but keep dest aligned // Found a zero in the vector. Figure out where it is, and store the bytes // up to it. // %edi = dest ptr (aligned) // %eax = result mask // %xmm1 = source vector LFound0: bsf %eax,%edx // find first 0 inc %edx // we need to store the 0 too test $16,%dl // was 0 last byte? jz 8f // no movdqa %xmm1,(%edi) // yes, store entire vector jmp LDone 8: test $8,%dl // 8-byte store required? jz 4f // no movq %xmm1,(%edi) // pack in 8 low bytes psrldq $8,%xmm1 // then shift vector down 8 bytes addl $8,%edi 4: test $4,%dl // 4-byte store required? jz 3f // no movd %xmm1,(%edi) // pack in 4 low bytes psrldq $4,%xmm1 // then shift vector down 4 bytes addl $4,%edi 3: andl $3,%edx // more to go? jz LDone // no movd %xmm1,%eax // move remainders out of vector into %eax 1: // loop on up to three bytes movb %al,(%edi) // pack in next byte shrl $8,%eax // shift next byte into position inc %edi dec %edx jnz 1b LDone: movl 8(%esp),%eax // original dest ptr is return value popl %edi ret |