]> git.sur5r.net Git - cc65/commitdiff
removed redundant code; memset == FillRam, bzero == ClearRam with proper return values
authorizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 19 Aug 2003 22:56:55 +0000 (22:56 +0000)
committerizydorst <izydorst@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Tue, 19 Aug 2003 22:56:55 +0000 (22:56 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@2376 b7a2c559-68d2-44c3-8de9-860c34a00d81

doc/geos.sgml
include/geos/gmemory.h
libsrc/geos/common/memset.s
libsrc/geos/memory/clearram.s
libsrc/geos/memory/fillram.s

index 1d4c2f30f16c15ef39366857635ec9d0d57539a1..d01ba6601912451297f89a18333ccd86eb83cf4e 100644 (file)
@@ -1116,17 +1116,17 @@ compatible with standard CRC routines.
 
 <sect2>FillRam and ClearRam
 <p>
-<tt/void FillRam (char *dest, char value, unsigned length)/
+<tt/void *FillRam (char *dest, char value, unsigned length)/
 <p>
-<tt/void ClearRam (char *dest, unsigned length)/
+<tt/void *ClearRam (char *dest, unsigned length)/
 <p>
-Both functions are filling given memory range. <tt/ClearRam/ fills with <tt/NULLs/, while
+Both functions are filling given memory range. <tt/ClearRam/ fills with <tt/0s/, while
 <tt/FillRam/ uses given <tt/value/. Be warned that these functions destroy <tt/r0, r1 and
-r2L/ registers. <tt/FillRam/ is an alias for <tt/memset/.
+r2L/ registers. These are aliases for <tt/memset/ and <tt/bzero/, respectively.
 
 <sect2>MoveData
 <p>
-<tt/void MoveData (char *dest, char *src, unsigned length)/
+<tt/void *MoveData (char *dest, char *src, unsigned length)/
 <p>
 This functions copies one memory region to another. There are checks for overlap and the
 non-destructive method is chosen. Be warned that this function destroys contents of
index cf421d748ef094f424bd3ad50b172b152373c1ee..ecfc2fd5ed2b2be563f208777cc503c7ef1717c4 100644 (file)
@@ -19,10 +19,10 @@ void __fastcall__ CopyFString(char len, char *dest, const char *source);
 char __fastcall__ CmpFString(char len, char *dest, const char *source); 
 
 unsigned __fastcall__ CRC(const char *buffer, unsigned len);
-void __fastcall__ ClearRam(char *dest, unsigned len);
-void __fastcall__ FillRam(char *dest, char what, unsigned len);
+void* __fastcall__ ClearRam(char *dest, unsigned len);
+void* __fastcall__ FillRam(char *dest, char what, unsigned len);
 
-void __fastcall__ MoveData(char *dest, const char *source, unsigned len);
+void* __fastcall__ MoveData(char *dest, const char *source, unsigned len);
 
 void __fastcall__ InitRam(char *myInitTab);
 
index 1a98c1c3473dccf979e6d8f16a05a41ce2a23a2e..77d830f6e1c398e1c2acb535349f7805b8f8aca1 100644 (file)
@@ -3,43 +3,12 @@
 ; void* _bzero (void* ptr, size_t n);
 ; void bzero (void* ptr, size_t n);
 ;
-; Maciej 'YTM/Elysium' Witkowiak, 15.07.2001
+; Maciej 'YTM/Elysium' Witkowiak, 20.08.2003
 ;
-; NOTE: bzero will return it's first argument as memset does. It is no problem
-;       to declare the return value as void, since it may be ignored. _bzero
-;       (note the leading underscore) is declared with the proper return type,
-;       because the compiler will replace memset by _bzero if the fill value
-;       is zero, and the optimizer looks at the return type to see if the value
-;       in a/x is of any use.
-
 
        .export _memset, _bzero, __bzero
-        .import popa, popax
-
-        .include "../inc/jumptab.inc"
-        .include "../inc/geossym.inc"
-
-_bzero:
-__bzero:
-           sta r0L
-           stx r0H
-           lda #0
-           sta r2L            ; fill with zeros
-           beq common
+       .import _ClearRam, _FillRam
 
-_memset:
-           sta r0L
-           stx r0H
-           jsr popax
-           sta r2L
-common:            jsr popax
-           sta r1L
-           pha
-           stx r1H
-           txa
-           pha
-           jsr FillRam
-           pla                 ; restore ptr and return it
-           tax
-           pla
-           rts
+_bzero = _ClearRam
+__bzero = _ClearRam
+_memset = _FillRam
index 0c3ec35bfb1e9dc32f44fc86ed939e81628e3c84..22c0448edb43ffd9156f9c802ce035928f8ac5a8 100644 (file)
@@ -1,10 +1,10 @@
 
 ;
-; Maciej 'YTM/Alliance' Witkowiak
+; Maciej 'YTM/Elysium' Witkowiak
 ;
-; 30.10.99
+; 30.10.99, 20.08.2003
 
-; void ClearRam         (char *dest, int length);
+; void ClearRam         (char *dest, int length);
 
            .import DoublePop
            .export _ClearRam
 
 _ClearRam:
            jsr DoublePop
-           jmp ClearRam
+           pha
+           txa
+           pha
+           jsr ClearRam
+           pla
+           tax
+           pla
+           rts
+
index 72301c7fd3d620416607ac5344630b4b1a852b45..013fce797af36399a49267d7af2b13197ef6ddc2 100644 (file)
@@ -4,7 +4,7 @@
 ;
 ; 30.10.99, 15.07.2001
 
-; void FillRam         (char *dest, char what, int length);
+; void FillRam         (char *dest, char what, int length);
 
            .import popa, popax
            .export _FillRam
@@ -20,4 +20,11 @@ _FillRam:
            jsr popax
            sta r1L
            stx r1H
-           jmp FillRam
+           pha
+           txa
+           pha
+           jsr FillRam
+           pla
+           tax
+           pla
+           rts