1*84d9c625SLionel Sambuc/* $NetBSD: memcmp.S,v 1.5 2013/09/07 19:06:29 chs Exp $ */ 2b6cbf720SGianluca Guida 3b6cbf720SGianluca Guida/*- 4b6cbf720SGianluca Guida * Copyright (c) 1990 The Regents of the University of California. 5b6cbf720SGianluca Guida * All rights reserved. 6b6cbf720SGianluca Guida * 7b6cbf720SGianluca Guida * This code is derived from software contributed to Berkeley by 8b6cbf720SGianluca Guida * the Systems Programming Group of the University of Utah Computer 9b6cbf720SGianluca Guida * Science Department. 10b6cbf720SGianluca Guida * 11b6cbf720SGianluca Guida * Redistribution and use in source and binary forms, with or without 12b6cbf720SGianluca Guida * modification, are permitted provided that the following conditions 13b6cbf720SGianluca Guida * are met: 14b6cbf720SGianluca Guida * 1. Redistributions of source code must retain the above copyright 15b6cbf720SGianluca Guida * notice, this list of conditions and the following disclaimer. 16b6cbf720SGianluca Guida * 2. Redistributions in binary form must reproduce the above copyright 17b6cbf720SGianluca Guida * notice, this list of conditions and the following disclaimer in the 18b6cbf720SGianluca Guida * documentation and/or other materials provided with the distribution. 19b6cbf720SGianluca Guida * 3. Neither the name of the University nor the names of its contributors 20b6cbf720SGianluca Guida * may be used to endorse or promote products derived from this software 21b6cbf720SGianluca Guida * without specific prior written permission. 22b6cbf720SGianluca Guida * 23b6cbf720SGianluca Guida * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 24b6cbf720SGianluca Guida * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 25b6cbf720SGianluca Guida * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 26b6cbf720SGianluca Guida * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 27b6cbf720SGianluca Guida * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 28b6cbf720SGianluca Guida * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 29b6cbf720SGianluca Guida * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 30b6cbf720SGianluca Guida * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 31b6cbf720SGianluca Guida * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 32b6cbf720SGianluca Guida * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 33b6cbf720SGianluca Guida * SUCH DAMAGE. 34b6cbf720SGianluca Guida */ 35b6cbf720SGianluca Guida 36b6cbf720SGianluca Guida#include <machine/asm.h> 37b6cbf720SGianluca Guida 38b6cbf720SGianluca Guida#if defined(LIBC_SCCS) && !defined(lint) 39b6cbf720SGianluca Guida#if 0 40b6cbf720SGianluca Guida RCSID("from: @(#)bcmp.s 5.1 (Berkeley) 5/12/90") 41b6cbf720SGianluca Guida#else 42*84d9c625SLionel Sambuc RCSID("$NetBSD: memcmp.S,v 1.5 2013/09/07 19:06:29 chs Exp $") 43b6cbf720SGianluca Guida#endif 44b6cbf720SGianluca Guida#endif /* LIBC_SCCS and not lint */ 45b6cbf720SGianluca Guida 46b6cbf720SGianluca Guida/* memcmp(s1, s2, n) */ 47b6cbf720SGianluca Guida 48*84d9c625SLionel Sambuc#ifdef __mcoldfire__ 49*84d9c625SLionel Sambuc#define CMPMB(a,b) movb b,%d2; cmpb a,%d2 50*84d9c625SLionel Sambuc#define CMPMW(a,b) movw b,%d2; cmpw a,%d2 51*84d9c625SLionel Sambuc#define CMPML(a,b) movl b,%d2; cmpl a,%d2 52*84d9c625SLionel Sambuc#else 53*84d9c625SLionel Sambuc#define CMPMB(a,b) cmpmb a,b 54*84d9c625SLionel Sambuc#define CMPMW(a,b) cmpmw a,b 55*84d9c625SLionel Sambuc#define CMPML(a,b) cmpml a,b 56*84d9c625SLionel Sambuc#endif 57*84d9c625SLionel Sambuc 58b6cbf720SGianluca Guida/* 59b6cbf720SGianluca Guida * This is probably not the best we can do, but it is still 2-10 times 60b6cbf720SGianluca Guida * faster than the C version in the portable gen directory. 61b6cbf720SGianluca Guida * 62b6cbf720SGianluca Guida * Things that might help: 63b6cbf720SGianluca Guida * - longword align when possible (only on the 68020) 64b6cbf720SGianluca Guida * - use nested DBcc instructions or use one and limit size to 64K 65b6cbf720SGianluca Guida */ 66b6cbf720SGianluca GuidaENTRY(memcmp) 67*84d9c625SLionel Sambuc movl 4(%sp),%a0 | string 1 68*84d9c625SLionel Sambuc movl 8(%sp),%a1 | string 2 69*84d9c625SLionel Sambuc movl 12(%sp),%d0 | length 70*84d9c625SLionel Sambuc#ifdef __mcoldfire__ 71*84d9c625SLionel Sambuc movl %d2,-(%sp) | save temp 72*84d9c625SLionel Sambuc#endif 73*84d9c625SLionel Sambuc jeq .Lbcdone | if zero, nothing to do 74b6cbf720SGianluca Guida movl %a0,%d1 75b6cbf720SGianluca Guida btst #0,%d1 | string 1 address odd? 76*84d9c625SLionel Sambuc jeq .Lbceven | no, skip alignment 77*84d9c625SLionel Sambuc CMPMB((%a0)+,(%a1)+) | yes, compare a byte 78*84d9c625SLionel Sambuc jne .Lbcnoteq | not equal, return non-zero 79b6cbf720SGianluca Guida subql #1,%d0 | adjust count 80*84d9c625SLionel Sambuc jeq .Lbcdone | count 0, reutrn zero 81*84d9c625SLionel Sambuc.Lbceven: 82b6cbf720SGianluca Guida movl %a1,%d1 83b6cbf720SGianluca Guida btst #0,%d1 | string 2 address odd? 84*84d9c625SLionel Sambuc jne .Lbcbloop | yes, no hope for alignment, compare bytes 85b6cbf720SGianluca Guida movl %d0,%d1 | no, both even 86b6cbf720SGianluca Guida lsrl #2,%d1 | convert count to longword count 87*84d9c625SLionel Sambuc jeq .Lbcbloop | count 0, skip longword loop 88*84d9c625SLionel Sambuc.Lbclloop: 89*84d9c625SLionel Sambuc CMPML((%a0)+,(%a1)+) | compare a longword 90*84d9c625SLionel Sambuc jne .Lbcnoteql | not equal, return non-zero 91b6cbf720SGianluca Guida subql #1,%d1 | adjust count 92*84d9c625SLionel Sambuc jne .Lbclloop | still more, keep comparing 93b6cbf720SGianluca Guida andl #3,%d0 | what remains 94*84d9c625SLionel Sambuc jeq .Lbcdone | nothing, all done 95*84d9c625SLionel Sambuc.Lbcbloop: 96*84d9c625SLionel Sambuc CMPMB((%a0)+,(%a1)+) | compare a byte 97*84d9c625SLionel Sambuc jne .Lbcnoteq | not equal, return non-zero 98b6cbf720SGianluca Guida subql #1,%d0 | adjust count 99*84d9c625SLionel Sambuc jne .Lbcbloop | still more, keep going 100b6cbf720SGianluca Guida rts 101*84d9c625SLionel Sambuc.Lbcnoteql: 102b6cbf720SGianluca Guida subql #4,%a0 103b6cbf720SGianluca Guida subql #4,%a1 104b6cbf720SGianluca Guida movl #4,%d0 105*84d9c625SLionel Sambuc jra .Lbcbloop 106*84d9c625SLionel Sambuc.Lbcnoteq: 107b6cbf720SGianluca Guida clrl %d0 108b6cbf720SGianluca Guida clrl %d1 109*84d9c625SLionel Sambuc movb -(%a0),%d0 110*84d9c625SLionel Sambuc movb -(%a1),%d1 111b6cbf720SGianluca Guida subl %d1,%d0 112*84d9c625SLionel Sambuc.Lbcdone: 113*84d9c625SLionel Sambuc#ifdef __mcoldfire__ 114*84d9c625SLionel Sambuc movl (%sp)+,%sp | restore temp 115*84d9c625SLionel Sambuc#endif 116b6cbf720SGianluca Guida rts 117*84d9c625SLionel SambucEND(memcmp) 118