403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.202
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/Program Files (x86)/Windows Kits/10/Source/10.0.26100.0/ucrt/string/arm64/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/Program Files (x86)/Windows Kits/10/Source/10.0.26100.0/ucrt/string/arm64/strcpy.asm
/*
Copyright (c) 1999-2022, Arm Limited.
Licensed under the MIT license.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

#include "ksarm64.h"

#if !defined(_M_ARM64EC)

        EXPORT A64NAME(strcpy)    [FUNC]

#endif

        AREA |.text$mn$21|, CODE, READONLY, ALIGN=5

#define dstin      x0
#define srcin      x1
#define result     x0

#define src        x2
#define dst        x3
#define len        x4
#define synd       x4
#define tmp        x5
#define shift      x5
#define data1      x6
#define dataw1     w6
#define data2      x7
#define dataw2     w7

#define dataq      q0
#define vdata      v0
#define vhas_nul   v1
#define vend       v2
#define dend       d2
#define dataq2     q1

/*
   Core algorithm:
   For each 16-byte chunk we calculate a 64-bit nibble mask value with four bits
   per byte. We take 4 bits of every comparison byte with shift right and narrow
   by 4 instruction. Since the bits in the nibble mask reflect the order in
   which things occur in the original string, counting leading zeros identifies
   exactly which byte matched.  */

        ARM64EC_ENTRY_THUNK A64NAME(strcpy),1,0,|.text$$mn$$21|
        LEAF_ENTRY A64NAME(strcpy),|.text$$mn$$21|,5

        bic        src, srcin, 15
        ld1        {vdata.16b}, [src]
        cmeq       vhas_nul.16b, vdata.16b, 0
        lsl        shift, srcin, 2
        shrn       vend.8b, vhas_nul.8h, 4
        fmov       synd, dend
        lsr        synd, synd, shift
        cbnz       synd, tail

        ldr        dataq, [src, 16]!
        cmeq       vhas_nul.16b, vdata.16b, 0
        shrn       vend.8b, vhas_nul.8h, 4
        fmov       synd, dend
        cbz        synd, start_loop
        rbit       synd, synd
        sub        tmp, src, srcin
        clz        len, synd
        add        len, tmp, len, lsr 2
        tbz        len, 4, less16
        sub        tmp, len, 15
        ldr        dataq, [srcin]
        ldr        dataq2, [srcin, tmp]
        str        dataq, [dstin]
        str        dataq2, [dstin, tmp]
        ret

tail
        rbit       synd, synd
        clz        len, synd
        lsr        len, len, 2
less16
        tbz        len, 3, less8
        sub        tmp, len, 7
        ldr        data1, [srcin]
        ldr        data2, [srcin, tmp]
        str        data1, [dstin]
        str        data2, [dstin, tmp]
        ret

less8
        subs       tmp, len, 3
        blo        less4
        ldr        dataw1, [srcin]
        ldr        dataw2, [srcin, tmp]
        str        dataw1, [dstin]
        str        dataw2, [dstin, tmp]
        ret

less4
        cbz        len, zerobyte
        ldrh       dataw1, [srcin]
        strh       dataw1, [dstin]
zerobyte
        strb       wzr, [dstin, len]
        ret

start_loop
        sub        tmp, srcin, dstin
        ldr        dataq2, [srcin]
        sub        dst, src, tmp
        str        dataq2, [dstin]
loop
        str        dataq, [dst], 32
        ldr        dataq, [src, 16]
        cmeq       vhas_nul.16b, vdata.16b, 0
        umaxp      vend.16b, vhas_nul.16b, vhas_nul.16b
        fmov       synd, dend
        cbnz       synd, loopend
        stur       dataq, [dst, -16]
        ldr        dataq, [src, 32]!
        cmeq       vhas_nul.16b, vdata.16b, 0
        umaxp      vend.16b, vhas_nul.16b, vhas_nul.16b
        fmov       synd, dend
        cbz        synd, loop
        add        dst, dst, 16
loopend
        shrn       vend.8b, vhas_nul.8h, 4                 ; 128->64
        fmov       synd, dend
        sub        dst, dst, 31
        rbit       synd, synd
        clz        len, synd
        lsr        len, len, 2
        add        dst, dst, len
        ldr        dataq, [dst, tmp]
        str        dataq, [dst]
        ret

        LEAF_END

        END

Youez - 2016 - github.com/yon3zu
LinuXploit