ostd 0.17.2

Rust OS framework that facilitates the development of and innovation in OS kernels
Documentation
/* SPDX-License-Identifier: MPL-2.0 */

.text

# Sets `size` bytes of memory at `dst` to the byte value given by `value`.
# This function works with exception handling and can recover from a page fault.
#
# Returns number of bytes that failed to set.
.global __memset_fallible
.type __memset_fallible, @function
__memset_fallible: # (dst: *mut u8, value: u8, size: usize) -> usize
    li t0, {SSTATUS_SUM}
    csrs sstatus, t0
memset_loop:
    beqz a2, memset_exit
memset_store:
    sb a1, (a0)
    addi a0, a0, 1
    addi a2, a2, -1
    j memset_loop
memset_exit:
    mv a0, a2
    csrc sstatus, t0
    ret
.size __memset_fallible, .-__memset_fallible

.pushsection .ex_table, "a", @progbits
    .balign 8
    .quad memset_store
    .quad memset_exit
.popsection