repo_id
string
size
int64
file_path
string
content
string
AspeedTech-BMC/caliptra-sw
6,387
rom/dev/tools/test-rt/src/start.S
/*++ Licensed under the Apache-2.0 license. File Name: start.S Abstract: File contains startup code for Caliptra. Environment: Runtime --*/ .section .init, "ax" .global _start _start: .cfi_startproc .cfi_undefined ra // Clear minstret csrw minstret, zero csrw minstreth, zero ...
AspeedTech-BMC/caliptra-sw
209
zero_bin/src/zeros.S
.section .init.text, "ax" .global _start _start: .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0 .word 0
AspeedTech-BMC/caliptra-sw
895
sw-emulator/example/src/start.S
/*++ Licensed under the Apache-2.0 license. File Name: main.rs Abstract: File contains startup code for bare-metal RISCV program --*/ .option norvc .section .text.init .global _start _start: .option push .option norelax la gp, GLOBAL_POINTER .option pop # Initialize the stack pointer la sp...
AspeedTech-BMC/caliptra-sw
1,932
cpu/src/nmi.S
.section .init.text, "ax" .align 2 _nmi_handler: // Save sp to mscratch csrw mscratch, sp // Switch to exception stack la sp, _snstack // Allocate space for all relevant registers (ra, sp, a0-7, t0-6, mepc, mcause, mscause, mstatus, mtval) addi sp, sp, -88 // Save relevant registers to st...
AspeedTech-BMC/caliptra-sw
1,947
cpu/src/trap.S
.section .init.text, "ax" .align 2 _trap_handler: // Save sp to mscratch csrw mscratch, sp // Switch to exception stack la sp, _sestack // Allocate space for all relevant registers // (ra, sp, a0-7, t0-6, mepc, mcause, mscause, mstatus, mtval) addi sp, sp, -88 // Save relevant regist...
AspeedTech-BMC/caliptra-sw
2,404
cpu/src/start.S
/*++ Licensed under the Apache-2.0 license. File Name: start.S Abstract: File contains startup code for Caliptra. Environment: ROM --*/ #define MRAC 0x7C0 .section .init, "ax" .global _start _start: .cfi_startproc .cfi_undefined ra // Disable interrupts and clear pending interrupts ...
AspeedTech-BMC/caliptra-sw
136
fmc/src/transfer_control.S
.section .init.text, "ax" .align 2 .global transfer_control transfer_control: .cfi_startproc jr a0 1: j 1b .cfi_endproc
AspeedTech-BMC/caliptra-sw
1,276
runtime/src/ext_intr.S
.section .init.text, "ax" .align 2 _ext_intr_handler: // Clear MPIE: ensures that interrupts are disabled again after mret csrw mscratch, t0 li t0, 0x80 csrc mstatus, t0 csrr t0, mscratch // Return back to event loop mret // meivt must point at an address in DCCM .section .data // meivt m...
AspeedTech-BMC/caliptra-sw
2,437
test-harness/src/start.S
/*++ Licensed under the Apache-2.0 license. File Name: main.rs Abstract: File contains startup code for Caliptra Library Tests --*/ .section .text.init .global _start _start: .equ CPTRA_FW_ERROR_NON_FATAL, 0x3003000c .equ CPTRA_FW_EXTENDED_ERROR_INFO, 0x30030018 .equ CPTRA_INTERNAL_NMI_VECTOR, 0x3003062...
Assasans/mizu
99
hal-c/add-addi.s
main: addi x29, x0, 5 addi x30, x0, 37 add x31, x30, x29 li x1, 0x80000000 ret # ecall
asthathapaa/4th-sem-materials
682
System_programing_lab(linking)/main.s
.file "main.c" .def ___main; .scl 2; .type 32; .endef .section .rdata,"dr" LC0: .ascii "Sum= %d\0" .text .globl _main .def _main; .scl 2; .type 32; .endef _main: LFB10: .cfi_startproc pushl %ebp .cfi_def_cfa_offset 8 .cfi_offset 5, -8 movl %esp, %ebp .cfi_def_cfa_register 5 andl $-16, %esp subl $32, %esp...
asthathapaa/4th-sem-materials
372
System_programing_lab(linking)/tools.s
.file "tools.c" .text .globl _add .def _add; .scl 2; .type 32; .endef _add: LFB0: .cfi_startproc pushl %ebp .cfi_def_cfa_offset 8 .cfi_offset 5, -8 movl %esp, %ebp .cfi_def_cfa_register 5 movl 8(%ebp), %edx movl 12(%ebp), %eax addl %edx, %eax popl %ebp .cfi_restore 5 .cfi_def_cfa 4, 4 ret .cfi_endproc...
ASTRALLIBERTAD/astrallang
1,009
examples/hello.s
.section .text .global _start .global _start _start: // Set up stack frame stp x29, x30, [sp, #-16]! mov x29, sp mov x8, #93 // sys_exit mov x0, #0 // exit status svc #0 // system call mov x0, #5 str x0, [x29, #-8] mov x0, #10 str x0, [x29, #-16] ldr x0, ...
AstranciA/OSKernel2025_AstrancE
2,340
AstrancE/modules/axhal/linker.lds.S
OUTPUT_ARCH(%ARCH%) BASE_ADDRESS = %KERNEL_BASE%; ENTRY(_start) SECTIONS { . = BASE_ADDRESS; _skernel = .; .text : ALIGN(4K) { _stext = .; *(.text.boot) *(.text .text.*) . = ALIGN(4K); _etext = .; } _srodata = .; .rodata : ALIGN(4K) { *(.rodata...
AstranciA/OSKernel2025_AstrancE
2,358
AstrancE/modules/axhal/src/arch/riscv/trap.S
.macro SAVE_REGS, from_user addi sp, sp, -{trapframe_size} PUSH_GENERAL_REGS csrr t0, sepc csrr t1, sstatus csrrw t2, sscratch, zero // save sscratch (sp) and zero it STR t0, sp, 31 // tf.sepc STR t1, sp, 32 // tf.sstatus STR...
AstranciA/OSKernel2025_AstrancE
2,989
AstrancE/modules/axhal/src/arch/aarch64/trap.S
.macro SAVE_REGS sub sp, sp, {trapframe_size} stp x0, x1, [sp] stp x2, x3, [sp, 2 * 8] stp x4, x5, [sp, 4 * 8] stp x6, x7, [sp, 6 * 8] stp x8, x9, [sp, 8 * 8] stp x10, x11, [sp, 10 * 8] stp x12, x13, [sp, 12 * 8] stp x14, x15, [sp, 14 * 8] stp ...
AstranciA/OSKernel2025_AstrancE
1,397
AstrancE/modules/axhal/src/arch/x86_64/syscall.S
.section .text .code64 syscall_entry: swapgs // switch to kernel gs mov gs:[offset __PERCPU_USER_RSP_OFFSET], rsp // save user rsp mov rsp, gs:[offset __PERCPU_TSS + {tss_rsp0_offset}] // switch to kernel stack sub rsp, 8 ...
AstranciA/OSKernel2025_AstrancE
1,627
AstrancE/modules/axhal/src/arch/x86_64/trap.S
.equ NUM_INT, 256 .altmacro .macro DEF_HANDLER, i .Ltrap_handler_\i: .if \i == 8 || (\i >= 10 && \i <= 14) || \i == 17 # error code pushed by CPU push \i # interrupt vector jmp .Ltrap_common .else push 0 # fill in error code in TrapFrame push \i # interrupt ...
AstranciA/OSKernel2025_AstrancE
1,791
AstrancE/modules/axhal/src/arch/loongarch64/trap.S
.macro SAVE_REGS, from_user move $t0, $sp .if \from_user == 1 csrrd $sp, KSAVE_KSP // restore kernel sp addi.d $sp, $sp, -{trapframe_size} STD $tp, $sp, 2 STD $r21, $sp, 21 csrrd $tp, KSAVE_TP csrrd $r21, KSAVE_R21 .else addi.d $sp, $sp, -{trap...
AstranciA/OSKernel2025_AstrancE
1,965
AstrancE/modules/axhal/src/platform/x86_pc/ap_start.S
# Boot application processors into the protected mode. # Each non-boot CPU ("AP") is started up in response to a STARTUP # IPI from the boot CPU. Section B.4.2 of the Multi-Processor # Specification says that the AP will start in real mode with CS:IP # set to XY00:0000, where XY is an 8-bit value sent with the # STAR...
AstranciA/OSKernel2025_AstrancE
4,325
AstrancE/modules/axhal/src/platform/x86_pc/multiboot.S
# Bootstrapping from 32-bit with the Multiboot specification. # See https://www.gnu.org/software/grub/manual/multiboot/multiboot.html .section .text.boot .code32 .global _start _start: mov edi, eax # arg1: magic: 0x2BADB002 mov esi, ebx # arg2: multiboot info jmp bsp_entry32 .bal...
AstranciA/OSKernel2025_AstrancE
2,544
AstrancE/tools/raspi4/chainloader/src/_arch/aarch64/cpu/boot.s
// SPDX-License-Identifier: MIT OR Apache-2.0 // // Copyright (c) 2021-2022 Andre Richter <andre.o.richter@gmail.com> //-------------------------------------------------------------------------------------------------- // Definitions //-----------------------------------------------------------------------------------...
AstranciA/OSKernel2025_AstrancE
171
AstrancE/testcases/nimbos/c/lib/arch/riscv/crt.S
.text .globl _start _start: .option push .option norelax lla gp, __global_pointer$ .option pop mv a0, sp and sp, sp, -16 tail __start_main
AstranciA/OSKernel2025_AstrancE
511
AstrancE/testcases/nimbos/c/lib/arch/riscv/clone.S
// __clone(func, arg, stack) // a0, a1, a2 // syscall(SYS_clone, stack) // a7, a0 .global __clone .hidden __clone __clone: andi a2, a2, -16 addi a2, a2, -16 sd a0, 0(a2) sd a1, 8(a2) // syscall(SYSCALL_CLONE, newsp) mv a0, a2 li a7, 56...
AstranciA/OSKernel2025_AstrancE
117
AstrancE/testcases/nimbos/c/lib/arch/aarch64/crt.S
.text .globl _start _start: mov x29, #0 mov x30, #0 mov x0, sp and sp, x0, #-16 b __start_main
AstranciA/OSKernel2025_AstrancE
434
AstrancE/testcases/nimbos/c/lib/arch/aarch64/clone.S
// __clone(func, arg, stack) // x0, x1, x2 // syscall(SYS_clone, stack) // x8, x0 .global __clone .hidden __clone __clone: and x2, x2, #-16 stp x0, x1, [x2, #-16]! // syscall(SYSCALL_CLONE, newsp) mov x0, x2 mov x8, #56 svc #0 cbz x0, 1f // parent ret ...
AstranciA/OSKernel2025_AstrancE
121
AstrancE/testcases/nimbos/c/lib/arch/x86_64/crt.S
.text .globl _start _start: xor %rbp, %rbp mov %rsp, %rdi andq $-16, %rsp call __start_main
AstranciA/OSKernel2025_AstrancE
574
AstrancE/testcases/nimbos/c/lib/arch/x86_64/clone.S
// __clone(func, arg, stack) // rdi, rsi, rdx // syscall(SYS_clone, stack) // rax, rdi .global __clone .hidden __clone __clone: // push arg (%rsi) to stack, set func (%rdi) to %r9 and $-16, %rdx sub $8, %rdx mov %rsi, (%rdx) mov %rdi, %r9 // syscall(SYSCALL_CLONE, n...
AsyncModules/async-os
1,826
modules/axhal/linker.lds.S
OUTPUT_ARCH(%ARCH%) BASE_ADDRESS = %KERNEL_BASE%; ENTRY(_start) SECTIONS { . = BASE_ADDRESS; _skernel = .; .text : ALIGN(4K) { _stext = .; *(.text.boot) . = ALIGN(4K); *(.text.signal_trampoline) . = ALIGN(4K); *(.text .text.*) . = ALIGN(4K); ...
AsyncModules/async-os
210
modules/axhal/src/arch/riscv/signal.S
# To create the sigreturn trampoline .equ __NR_sigreturn, 139 .section .text.signal_trampoline .balign 4 .global start_signal_trampoline start_signal_trampoline: li a7, __NR_sigreturn li a0, 0 ecall
AsyncModules/async-os
223
modules/axhal/src/arch/aarch64/signal.S
# To create the sigreturn trampoline .equ __NR_sigreturn, 139 .section .text.signal_trampoline .balign 4 .global start_signal_trampoline start_signal_trampoline: mov x8, #139 // 设置系统调用号为 139 svc #0 // 触发系统调用
AsyncModules/async-os
190
modules/axhal/src/arch/x86_64/signal.S
# To create the sigreturn trampoline .section .text.signal_trampoline .code64 .global start_signal_trampoline start_signal_trampoline: # syscall id rdi = 15 mov rax, 0xf syscall
AsyncModules/async-os
4,307
modules/axhal/src/platform/x86_pc/multiboot.S
# Bootstrapping from 32-bit with the Multiboot specification. # See https://www.gnu.org/software/grub/manual/multiboot/multiboot.html .section .text.boot .code32 .global _start _start: mov edi, eax # arg1: magic: 0x2BADB002 mov esi, ebx # arg2: multiboot info jmp bsp_entry32 .bal...
AsyncModules/async-os
152
vdso/src/vdso.S
.globl vdso_start, vdso_end .balign 0x1000 vdso_start: .incbin "vdso/target/riscv64gc-unknown-linux-musl/release/libcops.so" .balign 0x1000 vdso_end:
yfblock/polyhal2
2,978
polyhal2-boot/src/entry/x86_64/entry.S
# Common code in 32-bit, prepare states to enter 64-bit. .section .text .code32 .global _start _start: mov edi, eax # arg1: magic: 0x2BADB002 mov esi, ebx # arg2: multiboot info lgdt [.Ltmp_gdt_desc - {offset}] # load the temporary GDT # set data segment selectors ...
yfblock/rseL4
4,749
kernel/src/arch/aarch64/trap.S
.equ PT_LR, (30 * 8) .equ PT_SP_EL0, (31 * 8) .equ PT_ELR_EL1, (32 * 8) .equ PT_SPSR_EL1, (33 * 8) .equ PT_FaultIP, (34 * 8) .equ PT_TPIDR_EL0, (35 * 8) .macro MRS_I dst, reg mrs \dst, \reg\()_el1 .endm # .macro READ_ESR dst # mrs \dst, esr_el1 # .endm # ....
yi-qi7/OScomp_loongarch
2,634
kernel/src/trap/trap.s
.globl __alltraps .globl __restore .balign 4096 __alltraps: # 需要交换 sp 与 0x502 寄存器的值 csrwr $sp, 0x502 # 保存通用寄存器 st.d $r0, $sp, 0 st.d $r1, $sp, 8 st.d $r2, $sp, 16 # 这里不需要保存 sp的值 #st.d $r3, $sp, 24 st.d $r4, $sp, 32 st.d $r5, $sp, 40 st.d $r6,...
yinwangsong/ElastiLM
4,180
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-vrelu/f32-vrelu-asm-wasm32-shr-u4.S
# Copyright 2020 Google LLC # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_vrelu_ukernel__wasm32_shr_u4( # size_t batch, 0 # const float* input, 1 # float* ou...
yinwangsong/ElastiLM
2,851
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-vrelu/f32-vrelu-asm-wasm32-shr-u2.S
# Copyright 2020 Google LLC # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_vrelu_ukernel__wasm32_shr_u2( # size_t batch, 0 # const float* input, 1 # float* ou...
yinwangsong/ElastiLM
1,578
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-vrelu/f32-vrelu-asm-wasm32-shr-u1.S
# Copyright 2020 Google LLC # # This source code is licensed under the BSD-style license found in the # LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_vrelu_ukernel__wasm32_shr_u1( # size_t batch, 0 # const float* input, 1 # float* ou...
yinwangsong/ElastiLM
20,964
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a55.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_igemm_minmax_ukernel_6x8__asm_aarch64_neonfma_cortex_a55( # size_t mr, x0 # s...
yinwangsong/ElastiLM
24,912
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a73.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_igemm_minmax_ukernel_6x8__asm_aarch64_neonfma_cortex_a73( # size_t mr, x0 # s...
yinwangsong/ElastiLM
14,759
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch32-neon-cortex-a55.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" .syntax unified # LINT.IfChange // void xnn_f32_igemm_minmax_ukernel_4x8__asm_aarch32_neon_cortex_a55( // size_t mr, ...
yinwangsong/ElastiLM
16,077
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a55.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_igemm_minmax_ukernel_4x8__asm_aarch64_neonfma_cortex_a55( # size_t mr, x0 # s...
yinwangsong/ElastiLM
20,410
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/f32-igemm-4x12-minmax-asm-aarch64-neonfma-cortex-a53.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_igemm_minmax_ukernel_4x12__asm_aarch64_neonfma_cortex_a53( # size_t mr, x0 # ...
yinwangsong/ElastiLM
10,682
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/f32-igemm-1x12-minmax-asm-aarch64-neonfma-cortex-a53.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_igemm_minmax_ukernel_1x12__asm_aarch64_neonfma_cortex_a53( # size_t mr, (x0) - un...
yinwangsong/ElastiLM
9,758
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_4x16__asm_aarch64_neonfp16arith_ld64( # size_t mr, x0 # ...
yinwangsong/ElastiLM
13,698
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_6x16__asm_aarch64_neonfp16arith_cortex_a55( # size_t mr, x0 ...
yinwangsong/ElastiLM
17,323
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_6x16__asm_aarch64_neonfp16arith_cortex_a75( # size_t mr, x0 ...
yinwangsong/ElastiLM
4,089
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_1x16__asm_aarch64_neonfp16arith_ld32( # size_t mr, x0 # ...
yinwangsong/ElastiLM
7,820
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_4x16__asm_aarch64_neonfp16arith_ld32( # size_t mr, x0 # ...
yinwangsong/ElastiLM
5,265
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_1x16__asm_aarch64_neonfp16arith_ld64( # size_t mr, (x0) - un...
yinwangsong/ElastiLM
20,911
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_6x16__asm_aarch64_neonfp16arith_cortex_a55r0( # size_t mr, x...
yinwangsong/ElastiLM
11,513
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_6x16__asm_aarch64_neonfp16arith_ld32( # size_t mr, x0 # ...
yinwangsong/ElastiLM
14,475
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-igemm/f16-igemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f16_igemm_minmax_ukernel_6x16__asm_aarch64_neonfp16arith_ld64( # size_t mr, x0 # ...
yinwangsong/ElastiLM
5,453
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/qs8-qc8w-dwconv/qs8-qc8w-dwconv-3p8c-minmax-fp32-asm-aarch32-neonv8-mla8-cortex-a35.S
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" .syntax unified // void xnn_qs8_qc8w_dwconv_minmax_fp32_ukernel_3p8c__asm_aarch32_neonv8_mla8_cortex_a35( // size_t chann...
yinwangsong/ElastiLM
9,721
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/qs8-qc8w-dwconv/qs8-qc8w-dwconv-3p16c-minmax-fp32-asm-aarch32-neonv8-mla8-cortex-a35.S
// Copyright 2022 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" .syntax unified // void xnn_qs8_qc8w_dwconv_minmax_fp32_ukernel_3p16c__asm_aarch32_neonv8_mla8_cortex_a35( // size_t chan...
yinwangsong/ElastiLM
6,549
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_dwconv_minmax_ukernel_9p4c__asm_aarch64_neonfma( # size_t channels, x0, x20 # size_...
yinwangsong/ElastiLM
26,335
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-dwconv/f32-dwconv-9p4c-minmax-asm-aarch64-neonfma-cortex-a55.S
// Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" # void xnn_f32_dwconv_minmax_ukernel_9p4c__asm_aarch64_neonfma_cortex_a55( # size_t channels, x0, x20 ...
yinwangsong/ElastiLM
3,189
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/qs16-qs8-vcvt/qs16-qs8-vcvt-asm-aarch32-neon-u16.S
// Copyright 2023 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h" .syntax unified // void xnn_qs16_qs8_vcvt_ukernel__asm_aarch32_neon_u16( // size_t batch, r0 //...
yinwangsong/ElastiLM
16,000
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpac...
yinwangsong/ElastiLM
7,076
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/4x16-aarch64-neonfp16arith-ld32.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
6,804
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/4x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
3,541
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/1x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
9,197
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
3,638
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-1x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/1x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
9,243
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-6x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
9,013
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-4x16-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/4x16-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
6,835
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-4x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/4x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
15,884
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a75.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpac...
yinwangsong/ElastiLM
9,707
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-ld32.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
3,619
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/1x16-aarch64-neonfp16arith-ld32.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
3,522
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/1x16-aarch64-neonfp16arith-ld32.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
9,823
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-ld32.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
4,690
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-1x16-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/1x16-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
11,768
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/8x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
19,804
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55r0.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-cortex-a55r0.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnp...
yinwangsong/ElastiLM
12,552
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
7,042
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-4x16-minmax-asm-aarch64-neonfp16arith-ld32.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/4x16-aarch64-neonfp16arith-ld32.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
12,137
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemminc-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-cortex-a55.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpac...
yinwangsong/ElastiLM
12,253
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-6x16-minmax-asm-aarch64-neonfp16arith-cortex-a55.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/6x16-aarch64-neonfp16arith-cortex-a55.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpac...
yinwangsong/ElastiLM
11,839
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f16-gemm/gen/f16-gemm-8x8-minmax-asm-aarch64-neonfp16arith-ld64.S
// Auto-generated file. Do not edit! // Template: src/f16-gemm/8x8-aarch64-neonfp16arith-ld64.S.in // Generator: tools/xngen // // Copyright 2020 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assem...
yinwangsong/ElastiLM
9,389
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch32-neon-cortex-a7.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x8-aarch32-neon-cortex-a7.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly...
yinwangsong/ElastiLM
12,185
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x2-aarch64-neonfma-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
4,603
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/1x8-aarch64-neonfma-ld64.S.in // Generator: tools/xngen // // Copyright 2023 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h...
yinwangsong/ElastiLM
13,476
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch32-neon-cortex-a75-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x8-aarch32-neon-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembl...
yinwangsong/ElastiLM
5,333
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch32-neon-cortex-a53-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/1x8-aarch32-neon-cortex-a53.S.in // Generator: tools/xngen // // Copyright 2023 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembl...
yinwangsong/ElastiLM
18,238
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch32-neon-cortex-a53-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x8-aarch32-neon-cortex-a53.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembl...
yinwangsong/ElastiLM
25,810
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/6x8-aarch64-neonfma-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
12,606
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch32-neon-cortex-a75.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x8-aarch32-neon-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembl...
yinwangsong/ElastiLM
6,040
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-ld64.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x2-aarch64-neonfma-ld64.S.in // Generator: tools/xngen // // Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h...
yinwangsong/ElastiLM
7,471
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-ld64.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x8-aarch64-neonfma-ld64.S.in // Generator: tools/xngen // // Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h...
yinwangsong/ElastiLM
4,786
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch32-neon-cortex-a53.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/1x8-aarch32-neon-cortex-a53.S.in // Generator: tools/xngen // // Copyright 2023 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembl...
yinwangsong/ElastiLM
17,693
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x8-minmax-asm-aarch64-neonfma-cortex-a75-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x8-aarch64-neonfma-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
10,541
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-ld64.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/6x8-aarch64-neonfma-ld64.S.in // Generator: tools/xngen // // Copyright 2021 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h...
yinwangsong/ElastiLM
21,590
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-5x8-minmax-asm-aarch64-neonfma-cortex-a75.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/5x8-aarch64-neonfma-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
3,960
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-ld64.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/1x8-aarch64-neonfma-ld64.S.in // Generator: tools/xngen // // Copyright 2023 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/assembly.h...
yinwangsong/ElastiLM
20,416
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-6x8-minmax-asm-aarch64-neonfma-cortex-a53.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/6x8-aarch64-neonfma-cortex-a53.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
11,925
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-4x2-minmax-asm-aarch64-neonfma-cortex-a75.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/4x2-aarch64-neonfma-cortex-a75.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...
yinwangsong/ElastiLM
8,628
deployment/mllm/src/backends/xnnpack/third_party/XNNPACK/src/f32-igemm/gen/f32-igemm-1x8-minmax-asm-aarch64-neonfma-cortex-a53-prfm.S
// Auto-generated file. Do not edit! // Template: src/f32-igemm/1x8-aarch64-neonfma-cortex-a53.S.in // Generator: tools/xngen // // Copyright 2019 Google LLC // // This source code is licensed under the BSD-style license found in the // LICENSE file in the root directory of this source tree. #include "xnnpack/asse...