rmemcmp.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 113 行
C
113 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* 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 SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* 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.
*
* ========================================================================
*
* Description: RISC style memcmp().
*
****************************************************************************/
#include <string.h>
#include "riscstr.h"
int memcmp( const void *s1, const void *s2, size_t n )
/****************************************************/
{
UINT * dw1 = ROUND(s1); /* round down to dword */
UINT * dw2 = ROUND(s2); /* round down to dword */
UINT dword1, dword2, tmpdword1, tmpdword2;
int tmpchar, shr1, shr2, shl1, shl2;
if( n == 0 ) return( 0 );
/*** Initialize locals ***/
shr1 = OFFSET(s1) << 3; /* shift right = offset * 8 */
shr2 = OFFSET(s2) << 3;
shl1 = INT_SIZE - shr1; /* shift left = 32 - shift right */
shl2 = INT_SIZE - shr2;
if (shr1 != 0) {
dword1 = *dw1++;
}
if (shr2 != 0) {
dword2 = *dw2++;
}
/*** Scan in aligned 4-byte groups ***/
for( ;; ) {
/*** Extract the next few characters from each string ***/
if( shr1 == 0 ) {
tmpdword1 = *dw1++;
} else {
tmpdword1 = dword1 >> shr1;
dword1 = *dw1++;
tmpdword1 |= (dword1 << shl1);
}
if( shr2 == 0 ) {
tmpdword2 = *dw2++;
} else {
tmpdword2 = dword2 >> shr2;
dword2 = *dw2++;
tmpdword2 |= (dword2 << shl2);
}
if( n < BYTES_PER_WORD ) break;
/*** Are s1 and s2 still the same? ***/
if( tmpdword1 != tmpdword2 ) {
tmpchar = CHR1(tmpdword1) - CHR1(tmpdword2);
if( tmpchar ) return( tmpchar );
tmpchar = CHR2(tmpdword1) - CHR2(tmpdword2);
if( tmpchar ) return( tmpchar );
tmpchar = CHR3(tmpdword1) - CHR3(tmpdword2);
if( tmpchar ) return( tmpchar );
return( CHR4(tmpdword1) - CHR4(tmpdword2) );
}
n -= BYTES_PER_WORD;
}
/*** Scan the last byte(s) in the buffer ***/
if( tmpdword1 == tmpdword2 ) return( 0 );
if( n == 1 ) {
return( CHR1(tmpdword1) - CHR1(tmpdword2) );
} else if( n == 2 ) {
tmpchar = CHR1(tmpdword1) - CHR1(tmpdword2);
if( tmpchar ) return( tmpchar );
return( CHR2(tmpdword1) - CHR2(tmpdword2) );
} else if( n == 3 ) {
tmpchar = CHR1(tmpdword1) - CHR1(tmpdword2);
if( tmpchar ) return( tmpchar );
tmpchar = CHR2(tmpdword1) - CHR2(tmpdword2);
if( tmpchar ) return( tmpchar );
return( CHR3(tmpdword1) - CHR3(tmpdword2) );
}
return( 0 );
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?