summaryrefslogblamecommitdiff
path: root/rgo/src/memeq.S
blob: d10680432e65a7dec341e37c79e2337b83a3fffc (plain) (tree)
1
2
3
4
5
6




                                     
                                                                                                                                                                                                                                                     










                                                                                                                                                                                                                                              
          


                                 
          










                                                        
       
                      
                  












































                                                                                                                                          

                  




                                                                                                                                          
                


                 

                   
                     

           
                     

           
/*
	Copyright 2022 Gabriel Jensen

	This file is part of rgo.

	rgo is free software: you can reaxstribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

	rgo is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.

	You should have received a copy of the GNU Lesser General Public License along with rgo. If not, see <https://www.gnu.org/licenses/>. 
*/

#include <rgo.h>

.global rgo_memeq

rgo_memeq:
	/*
		void const * lptr
		size_t       num
		void const * rptr
	*/
#if defined(__i386__)
	/* eax: Address of the current left element. */
	movl 0x4(%esp),%eax
	/* ecx: Number of remaining elements. */
	movl 0x8(%esp),%ecx
	/* edx: Address of the current right element. */
	movl 0xC(%esp),%edx
	/* ebx: Current left element. */
	pushl %ebx
	/* ebx/esi: Current right element. */
	pushl %esi
.wrdeq:
	cmpl $0x4,%ecx
	jl .byteeq
	movl (%eax),%ebx
	movl (%edx),%esi
	cmpl %ebx,%esi
	jne .neq
	addl $0x4,%eax
	addl $0x4,%edx
	subl $0x4,%ecx
	jmp .wrdeq
.byteeq:
	testl %ecx,%ecx
	jne .eq /* If we have reached the final element, all previous elements have compared equal, and the memory sequences are equal. */
	movb (%eax),%bl
	movb (%edx),%bh
	cmpb %bl,%bh
	jne .neq
	incl %eax
	incl %edx
	decl %ecx
	jmp .byteeq
.eq:
	popl %ebx
	popl %esi
	movb $0x1,%al
	ret
.neq:
	popl %ebx
	popl %esi
	movb $0x0,%al
	ret
#elif defined(__x86_64__)
	/* rdi: Address of the current left element. */
	/* rsi: Number of remaining elements. */
	/* rdx: Address of the current right element. */
	/* rax: Current left element. */
	/* rcx: Current right element. */
.wrdeq:
	cmpq $0x8,%rsi
	jl .byteeq
	movq (%rdi),%rax
	movq (%rdx),%rcx
	cmpq %rax,%rcx
	jne .neq
	addq $0x8,%rdi
	addq $0x8,%rdx
	subq $0x8,%rsi
	jmp .wrdeq
.byteeq:
	testq %rsi,%rsi
	jne .eq /* If we have reached the final element, all previous elements have compared equal, and the memory sequences are equal. */
	movb (%rdi),%al
	movb (%rdx),%cl
	cmpb %al,%cl
	jne .neq
	incq %rdi
	incq %rdx
	decq %rsi
	jmp .byteeq
.eq:
	movb $0x1,%al
	ret
.neq:
	movb $0x0,%al
	ret
#endif