repo_id
string
size
int64
file_path
string
content
string
hhhjjjcc112/rcore-tutorial-learning
1,047
src/link_app.S
.align 3 .section .data .global _num_app _num_app: .quad 5 .quad app_0_start .quad app_1_start .quad app_2_start .quad app_3_start .quad app_4_start .quad app_4_end .section .data .global app_0_start .global app_0_end app_0_start: .incbin "../user/target/riscv64...
hhhjjjcc112/rcore-tutorial-learning
405
src/task/switch.S
.altmacro .macro SAVE_SN n sd s\n, (\n + 2)*8(a0) .endm .macro LOAD_SN n ld s\n, (\n + 2)*8(a1) .endm .section .text .globl __switch __switch: sd sp, 8(a0) sd ra, 0(a0) .set n, 0 .rept 12 SAVE_SN %n .set n, n + 1 .endr ld ra, 0(a1) .set n, 0 .rept 12...
hhhjjjcc112/rcore-tutorial-learning
902
src/trap/trap.S
.altmacro .macro SAVE_GP n sd x\n, \n*8(sp) .endm .macro LOAD_GP n ld x\n, \n*8(sp) .endm .section .text .globl __alltraps .globl __restore .align 2 __alltraps: # switch sp to kernel stack csrrw sp, sscratch, sp # allocate TrapContext on stack addi sp, sp, -34 * 8 sd x1, 1 * 8(sp) s...
hkc520/monkey_glibc_again_signal
870
kernel/linker.lds.S
OUTPUT_ARCH(%ARCH%) ENTRY(_start) BASE_ADDRESS = %KERNEL_BASE%; SECTIONS { . = BASE_ADDRESS; _skernel = .; .text ALIGN(4K): { *(.multiboot .multiboot.*) stext = .; *(.text.entry) *(.text .text.*) etext = .; } .rodata ALIGN(4K): { srodata = .; ...
HodanPlodky/NI-GEN
307
swap.s
swap: addi sp, sp, -24 addi x28, a0, 0 sd x28, 0(sp) addi x28, a1, 0 sd x28, 8(sp) ld x28, 0(sp) ld x7, 0(x28) sd x7, 16(sp) ld x7, 0(sp) ld x28, 8(sp) ld x6, 0(x28) sd x6, 0(x7) ld x6, 8(sp) ld x7, 16(sp) sd x7, 0(x6) addi sp, sp, 24 ret
HodanPlodky/NI-GEN
708
example.s
.global _start _start: call main nop addi a7, zero, 93 ecall main: addi a7, zero, 64 addi a0, zero, 1 # stdout file descriptor = 1 la a1, msg addi a2, zero, 10 ecall li a0, 20 mv s0, ra call fib mv ra, s0 ret fib: addi sp, sp, -24 addi t0, zero, 1...
HodanPlodky/NI-GEN
600
example2.s
.global _start _start: call main nop addi a7, zero, 93 ecall main: addi sp, sp, -4 addi a7, zero, 64 addi a0, zero, 1 # stdout file descriptor = 1 la a1, msg addi a2, zero, 10 ecall # write to stack addi t0, zero, 'h' sb t0, 0(sp) addi t0, zero, 'e' sb t0, ...
Homarechan/amber
1,866
main_opt.s
.file "amber_module" .text .globl tarai # -- Begin function tarai .p2align 4 .type tarai,@function tarai: # @tarai # %bb.0: # %entry pushq %r15 pushq %r14 pushq %r13 pushq %r12 pushq %rbx movq %rsi, %r14 cmpq %rsi, %rd...
Homarechan/amber
2,004
main.s
.file "amber_module" .text .globl tarai # -- Begin function tarai .p2align 4 .type tarai,@function tarai: # @tarai .cfi_startproc # %bb.0: # %entry pushq %r14 .cfi_def_cfa_offset 16 pushq %rbx .cfi_def_cfa_offset 24 sub...
HongThaiPham/solana-asm-example
284
assembly-timeout/src/assembly-timeout/assembly-timeout.s
.equ MAX_SLOT_HEIGHT, 0x2898 .equ CURRENT_SLOT_HEIGHT, 0x0060 .globl e e: ldxdw r2, [r1+MAX_SLOT_HEIGHT] // store target slot height ldxdw r1, [r1+CURRENT_SLOT_HEIGHT] jle r1, r2, end // If r1 (current slot height) <= r2 (max slot height) skip the lddw lddw r0, 1 end: exit
HongThaiPham/solana-asm-example
660
assembly-slippage/src/assembly-slippage/assembly-slippage.s
.equ TOKEN_ACCOUNT_BALANCE, 0x00a0 .equ TOKEN_ACCOUNT_DATA_LEN, 0x0058 .equ MINIMUM_BALANCE, 0x2910 .globl entrypoint entrypoint: ldxdw r3, [r1+MINIMUM_BALANCE] // Get amount from IX data ldxdw r5, [r1+TOKEN_ACCOUNT_DATA_LEN] add64 r3, r5 ldxdw r4, [r1+TOKEN_ACCOUNT_BALANCE] // Get balance from token acc...
HongThaiPham/solana-asm-example
187
assembly-memo/src/memo/memo.s
.equ NUM_ACCOUNTS, 0x00 .equ DATA_LEN, 0x08 .equ DATA, 0x10 .globl entrypoint entrypoint: ldxdw r0, [r1+NUM_ACCOUNTS] ldxdw r2, [r1+DATA_LEN] add64 r1, DATA call sol_log_ exit
Hoqan/MotorDriver
27,120
src/bsp/mcu/gd32/startup_gd32f450_470.s
;/*! ; \file startup_gd32f450_470.s ; \brief start up file ; ; \version 2016-08-15, V1.0.0, firmware for GD32F4xx ; \version 2018-12-12, V2.0.0, firmware for GD32F4xx ; \version 2020-09-30, V2.1.0, firmware for GD32F4xx ; \version 2022-03-09, V3.0.0, firmware for GD32F4xx ;*/ ; ;/* ; Copyright...
Hoqan/MotorDriver
23,153
src/bsp/mcu/gd32/CMSIS/GD/GD32F4xx/Source/ARM/startup_gd32f450_470.s
;/*! ; \file startup_gd32f450_470.s ; \brief start up file ; ; \version 2016-08-15, V1.0.0, firmware for GD32F4xx ; \version 2018-12-12, V2.0.0, firmware for GD32F4xx ; \version 2020-09-30, V2.1.0, firmware for GD32F4xx ; \version 2022-03-09, V3.0.0, firmware for GD32F4xx ;*/ ; ;/* ; Copyright...
Hoqan/MotorDriver
21,282
src/bsp/mcu/gd32/CMSIS/GD/GD32F4xx/Source/ARM/startup_gd32f405_425.s
;/*! ; \file startup_gd32f405_425.s ; \brief start up file ; ; \version 2016-08-15, V1.0.0, firmware for GD32F4xx ; \version 2018-12-12, V2.0.0, firmware for GD32F4xx ; \version 2020-09-30, V2.1.0, firmware for GD32F4xx ; \version 2022-03-09, V3.0.0, firmware for GD32F4xx ;*/ ; ;/* ; Copyright...
Hoqan/MotorDriver
21,620
src/bsp/mcu/gd32/CMSIS/GD/GD32F4xx/Source/ARM/startup_gd32f407_427.s
;/*! ; \file startup_gd32f407_427.s ; \brief start up file ; ; \version 2016-08-15, V1.0.0, firmware for GD32F4xx ; \version 2018-12-12, V2.0.0, firmware for GD32F4xx ; \version 2020-09-30, V2.1.0, firmware for GD32F4xx ; \version 2022-03-09, V3.0.0, firmware for GD32F4xx ;*/ ; ;/* ; Copyright...
Hoqan/MotorDriver
27,120
src/bsp/mcu/gd32/CMSIS/GD/GD32F4xx/Source/IAR/startup_gd32f450_470.s
;/*! ; \file startup_gd32f450_470.s ; \brief start up file ; ; \version 2016-08-15, V1.0.0, firmware for GD32F4xx ; \version 2018-12-12, V2.0.0, firmware for GD32F4xx ; \version 2020-09-30, V2.1.0, firmware for GD32F4xx ; \version 2022-03-09, V3.0.0, firmware for GD32F4xx ;*/ ; ;/* ; Copyright...
Hoqan/MotorDriver
24,506
src/bsp/mcu/gd32/CMSIS/GD/GD32F4xx/Source/IAR/startup_gd32f405_425.s
;/*! ; \file startup_gd32f405_425.s ; \brief start up file ; ; \version 2016-08-15, V1.0.0, firmware for GD32F4xx ; \version 2018-12-12, V2.0.0, firmware for GD32F4xx ; \version 2020-09-30, V2.1.0, firmware for GD32F4xx ; \version 2022-03-09, V3.0.0, firmware for GD32F4xx ;*/ ; ;/* ; Copyright...
Hoqan/MotorDriver
25,068
src/bsp/mcu/gd32/CMSIS/GD/GD32F4xx/Source/IAR/startup_gd32f407_427.s
;/*! ; \file startup_gd32f407_427.s ; \brief start up file ; ; \version 2016-08-15, V1.0.0, firmware for GD32F4xx ; \version 2018-12-12, V2.0.0, firmware for GD32F4xx ; \version 2020-09-30, V2.1.0, firmware for GD32F4xx ; \version 2022-03-09, V3.0.0, firmware for GD32F4xx ;*/ ; ;/* ; Copyright...
Hoqan/MotorDriver
11,110
src/utils/RTT/SEGGER_RTT_ASM_ARMv7M.S
/********************************************************************* * (c) SEGGER Microcontroller GmbH * * The Embedded Experts * * www.segger.com * ************************************...
horsten/dtu30010
17,921
Startup/startup_stm32f302r8tx.s
/** ****************************************************************************** * @file startup_stm32f302r8tx.s * @author Auto-generated by STM32CubeIDE * @brief STM32F302R8Tx device vector table for GCC toolchain. * This module performs: * - Set the initial SP * ...
hritik226016/brew
11,809
library/std/src/sys/pal/sgx/abi/entry.S
/* This symbol is used at runtime to figure out the virtual address that the */ /* enclave is loaded at. */ .section absolute .global IMAGE_BASE IMAGE_BASE: .section ".note.x86_64-fortanix-unknown-sgx", "", @note .align 4 .long 1f - 0f /* name length (not including padding) */ .long 3f - 2f ...
hsinghal11/rustos
3,233
kern/src/init/init.s
// #define EL0 0b00 // #define EL1 0b01 // #define EL2 0b10 // #define EL3 0b11 .section .text.init .global _start _start: // read cpu affinity, start core 0, halt rest mrs x1, MPIDR_EL1 and x1, x1, #3 cbz x1, setup halt: // core affinity != 0, halt it wfe b halt setup:...
hsinghal11/rustos
418
boot/src/init/init.s
.section .text.init .global _start _start: // read cpu affinity, start core 0, halt rest mrs x1, mpidr_el1 and x1, x1, #3 cbz x1, 2f 1: // core affinity != 0, halt it wfe b 1b 2: // set the stack to start before our boot code adr x1, _start mov sp, x...
hritik226016/brew
79
tests/ui/asm/named-asm-labels.s
lab1: nop // do more things lab2: nop // does bar // a: b lab3: nop; lab4: nop
hritik226016/brew
29
tests/codegen/asm/foo.s
.global foo foo: jmp baz
hritik226016/brew
136
tests/run-make/x86_64-fortanix-unknown-sgx-lvi/enclave/foo_asm.s
.text .global cc_plus_one_asm .type cc_plus_one_asm, @function cc_plus_one_asm: movl (%rdi), %eax inc %eax retq
hritik226016/brew
145
tests/run-make/x86_64-fortanix-unknown-sgx-lvi/enclave/libcmake_foo/src/foo_asm.s
.text .global cmake_plus_one_asm .type cmake_plus_one_asm, @function cmake_plus_one_asm: movl (%rdi), %eax inc %eax retq
huayuntao/ker_arch
753
arch/src/la64/switch.S
.altmacro .macro SAVE_SN n st.d $s\n, $a0, (\n+2)*8 .endm .macro LOAD_SN n ld.d $s\n, $a1, (\n+2)*8 .endm .section .text .globl __switch __switch: # __switch( # current_task_cx_ptr: *mut TaskContext, # next_task_cx_ptr: *const TaskContext # ) # save kernel stack of current ta...
huayuntao/ker_arch
4,264
arch/src/la64/trap/trap.S
FP_START = 32 .altmacro .macro SAVE_GP n st.d $r\n, $sp, \n*8 .endm .macro LOAD_GP n ld.d $r\n, $sp, \n*8 .endm .macro SAVE_FP n, m fst.d $f\n, $sp, \m*8 .endm .macro LOAD_FP n, m fld.d $f\n, $sp, \m*8 .endm .section .text.trampoline .globl __alltraps .globl __restore .align 2 .equ CSR_S...
Huggepugge1/MIPS-emulator
146
main.s
.data word: .word 10 .text .globl __start __start: lw $s0, word addi $t1, $s0, 1 sw $t1, word nop j __start # Exit li $v0, 10 syscall
hugojacob/crosvm
1,407
kernel_loader/src/test_elf.S
# Copyright 2022 The ChromiumOS Authors. # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. # Build instructions: # x86_64-linux-gnu-as test_elf.S -o test_elf.o # x86_64-linux-gnu-ld test_elf.o -o test_elf.bin -T test_elf.ld .intel_syntax noprefix .section...
hulanter13/wasm2
1,319
tests/qemu/test-i386-code16.S
.code16 .globl code16_start .globl code16_end CS_SEG = 0xf code16_start: .globl code16_func1 /* basic test */ code16_func1 = . - code16_start mov $1, %eax data32 lret /* test push/pop in 16 bit mode */ .globl code16_func2 code16_func2 = . - code16_sta...
hulanter13/wasm2
1,816
tests/qemu/test-i386-vm86.S
.code16 .globl vm86_code_start .globl vm86_code_end #define GET_OFFSET(x) ((x) - vm86_code_start + 0x100) vm86_code_start: movw $GET_OFFSET(hello_world), %dx movb $0x09, %ah int $0x21 /* prepare int 0x90 vector */ xorw %ax, %ax movw %ax, %es ...
hulanter13/wasm2
3,647
tests/kvm-unit-tests/x86/cstart.S
#include "apic-defs.h" .globl boot_idt boot_idt = 0 ipi_vector = 0x20 max_cpus = 64 .bss . = . + 4096 * max_cpus .align 16 stacktop: . = . + 4096 .align 16 ring0stacktop: .data .align 4096 pt: i = 0 .rept 1024 .long 0x1e7 | (i << 22) i = i + 1 .endr .globl gdt32 gdt32: .qu...
hulanter13/wasm2
4,163
tests/kvm-unit-tests/x86/cstart64.S
#include "apic-defs.h" .globl boot_idt boot_idt = 0 .globl idt_descr .globl tss_descr .globl gdt64_desc ipi_vector = 0x20 max_cpus = 64 .bss . = . + 4096 * max_cpus .align 16 stacktop: . = . + 4096 .align 16 ring0stacktop: .data .align 4096 .globl ptl2 ptl2: i = 0 .rept 512 * 4 .quad 0x1e7 | (i << 21) ...
hulanter13/wasm2
512
tests/kvm-unit-tests/lib/x86/setjmp32.S
.globl setjmp setjmp: mov (%esp), %ecx // get return EIP mov 4(%esp), %eax // get jmp_buf mov %ecx, (%eax) mov %esp, 4(%eax) mov %ebp, 8(%eax) mov %ebx, 12(%eax) mov %esi, 16(%eax) mov %edi, 20(%eax) xor %eax, %eax ret .globl longjmp longjmp: mov 8(%esp), %eax // get return value mov 4(%esp), %ecx // get j...
hulanter13/wasm2
467
tests/kvm-unit-tests/lib/x86/setjmp64.S
.globl setjmp setjmp: mov (%rsp), %rsi mov %rsi, (%rdi) mov %rsp, 0x8(%rdi) mov %rbp, 0x10(%rdi) mov %rbx, 0x18(%rdi) mov %r12, 0x20(%rdi) mov %r13, 0x28(%rdi) mov %r14, 0x30(%rdi) mov %r15, 0x38(%rdi) xor %eax, %eax ret .globl longjmp longjmp: mov %esi, %eax mov 0x38(%rdi), %r15 mov 0x30(%rdi), %r14 mo...
humbornjo/CSE231
85
test/31.s
section .text global our_code_starts_here our_code_starts_here: mov rax, 31 ret
humbornjo/CSE231
85
test/37.s
section .text global our_code_starts_here our_code_starts_here: mov rax, 37 ret
humbornjo/CSE231
118
test/add.s
section .text global our_code_starts_here our_code_starts_here: mov rax, 73 add rax, 1 sub rax, 1 sub rax, 1 ret
humbornjo/CSE231
126
test/negate.s
section .text global our_code_starts_here our_code_starts_here: mov rax, 73 add rax, 1 sub rax, 1 sub rax, 1 neg rax ret
huongnguyenduc/sgx-demo
2,830
sgx_unwind/libunwind/src/x86_64/setcontext.S
/* libunwind - a platform-independent unwind library Copyright (C) 2007 Google, Inc Contributed by Arun Sharma <arun.sharma@google.com> Copyright (C) 2010 Konstantin Belousov <kib@freebsd.org> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this s...
huongnguyenduc/sgx-demo
1,438
sgx_unwind/libunwind/src/x86_64/siglongjmp.S
/* libunwind - a platform-independent unwind library Copyright (C) 2004 Hewlett-Packard Co Contributed by David Mosberger-Tang <davidm@hpl.hp.com> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "...
huongnguyenduc/sgx-demo
4,427
sgx_unwind/libunwind/src/x86_64/getcontext.S
/* libunwind - a platform-independent unwind library Copyright (C) 2008 Google, Inc Contributed by Paul Pluzhnikov <ppluzhnikov@google.com> Copyright (C) 2010 Konstantin Belousov <kib@freebsd.org> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of th...
huongnguyenduc/sgx-demo
1,520
sgx_unwind/libunwind/src/x86_64/longjmp.S
/* libunwind - a platform-independent unwind library Copyright (C) 2004-2005 Hewlett-Packard Co Contributed by David Mosberger-Tang <davidm@hpl.hp.com> This file is part of libunwind. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (...
Hyperb0rean/itmo_compilers
370
frust/tests/example.S
addi x2, x0, 32 lui x5, 0 addi x5, x0, 48 sw x2, 32, x5 lw x5, x2, 32 addi x6, x5, 0 lui x5, 0 addi x5, x0, 53 slt x5, x6, x5 beq x5, x0, 17 lw x5, x2, 32 addi x6, x5, 0 lui x5, 0 addi x5, x0, 50 sge x5, x6, x5 beq x5, x0, 4 lui x5, 0 addi x5, x0, 56 sw x2, 32, x5 jal x0, 6 lw x5, x2, 32 addi x6, x5, 0 lui x5, 0 addi x...
ibb-dinosaur/mlang
2,427
src/asm/farjmp.S
; implement a longjmp-like mechanism for handling panics across the FFI boundary global __callwexcep global __throwexcep struc farjmpbuf buf_rbx: resq 1 buf_rbp: resq 1 buf_r12: resq 1 buf_r13: resq 1 buf_r14: resq 1 buf_r15: resq 1 buf_rflags: resq 1 ; Don't bother with FS, GS buf...
I-asked/api-daemon
15,018
third-party/zstd-sys/zstd/lib/decompress/huf_decompress_amd64.S
/* * Copyright (c) Meta Platforms, Inc. and affiliates. * All rights reserved. * * This source code is licensed under both the BSD-style license (found in the * LICENSE file in the root directory of this source tree) and the GPLv2 (found * in the COPYING file in the root directory of this source tree). * You may...
I-asked/api-daemon
31,033
third-party/ring/pregenerated/armv8-mont-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .text .globl bn_mul_mont .def bn_mul_mont .type 32 .endef...
I-asked/api-daemon
29,307
third-party/ring/pregenerated/chacha-armv4-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> @ Silence ARMv8 deprecated IT instruction warnings. This file is ...
I-asked/api-daemon
49,096
third-party/ring/pregenerated/sha512-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed unde...
I-asked/api-daemon
22,670
third-party/ring/pregenerated/ghash-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _gcm_init_clmul .private_extern _gcm_init_clmul .p2align 4 _gcm_init_clmul: ...
I-asked/api-daemon
40,669
third-party/ring/pregenerated/chacha-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .hidden OPENSSL_armcap_P .section .rodata .align 5 .Lsigma...
I-asked/api-daemon
49,269
third-party/ring/pregenerated/sha512-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under ...
I-asked/api-daemon
74,349
third-party/ring/pregenerated/chacha20_poly1305_armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .section .rodata .align 7 .Lchacha20_consts: .byte 'e','x','p...
I-asked/api-daemon
14,765
third-party/ring/pregenerated/ghashv8-armx-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .globl gcm...
I-asked/api-daemon
18,837
third-party/ring/pregenerated/x86_64-mont-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _bn_mul_mont .private_extern _bn_mul_mont .p2align 4 _bn_mul_mont: _CET_EN...
I-asked/api-daemon
30,956
third-party/ring/pregenerated/armv8-mont-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .text .globl _bn_mul_mont .private_extern _bn_mul_mont .a...
I-asked/api-daemon
69,197
third-party/ring/pregenerated/sha256-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _sha256_block_data_order .private_extern _sha256_block_data_order .p2align 4...
I-asked/api-daemon
14,550
third-party/ring/pregenerated/ghashv8-armx-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .globl gcm_...
I-asked/api-daemon
6,872
third-party/ring/pregenerated/ghashv8-armx-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .fpu neon .code 32 #undef __thumb2_...
I-asked/api-daemon
22,525
third-party/ring/pregenerated/aesni-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _aes_hw_encrypt .private_extern _aes_hw_encrypt .p2align 4 _aes_hw_encrypt: ...
I-asked/api-daemon
48,800
third-party/ring/pregenerated/sha512-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .extern OPENSSL_ia32cap_P .hidden OPENSSL_ia32cap_P .globl sha512_block_data_order .hid...
I-asked/api-daemon
6,302
third-party/ring/pregenerated/ghash-armv4-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> @ Silence ARMv8 deprecated IT instruction warnings. This file is ...
I-asked/api-daemon
34,174
third-party/ring/pregenerated/sha256-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed unde...
I-asked/api-daemon
20,719
third-party/ring/pregenerated/x86_64-mont-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .extern OPENSSL_ia32cap_P .hidden OPENSSL_ia32cap_P .globl bn_mul_mont .hidden bn_mul_...
I-asked/api-daemon
8,277
third-party/ring/pregenerated/aesv8-armx-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .section .r...
I-asked/api-daemon
10,908
third-party/ring/pregenerated/ghash-neon-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .text .globl _gcm_init_neon .private_extern _gcm_init_neon...
I-asked/api-daemon
22,177
third-party/ring/pregenerated/armv4-mont-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> @ Silence ARMv8 deprecated IT instruction warnings. This file is ...
I-asked/api-daemon
68,332
third-party/ring/pregenerated/p256-x86_64-asm-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .section __DATA,__const .p2align 6 L$poly: .quad 0xffffffffffffffff, 0x00000000ffff...
I-asked/api-daemon
25,499
third-party/ring/pregenerated/vpaes-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .section __TEXT,__const .align 7 // totally strategic ali...
I-asked/api-daemon
15,245
third-party/ring/pregenerated/aesni-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text #ifdef BORINGSSL_DISPATCH_TEST #endif .globl aes_hw_encrypt .hidden aes_hw_encrypt .type aes...
I-asked/api-daemon
70,804
third-party/ring/pregenerated/sha256-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .extern OPENSSL_ia32cap_P .hidden OPENSSL_ia32cap_P .globl sha256_block_data_order .hid...
I-asked/api-daemon
82,184
third-party/ring/pregenerated/aesv8-gcm-armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__ >= 8 .text .globl _aes_gcm_enc_kernel...
I-asked/api-daemon
55,554
third-party/ring/pregenerated/x86_64-mont5-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _bn_mul_mont_gather5 .private_extern _bn_mul_mont_gather5 .p2align 6 _bn_mu...
I-asked/api-daemon
82,384
third-party/ring/pregenerated/aesv8-gcm-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__ >= 8 .arch armv8-a+crypto .text .globl a...
I-asked/api-daemon
10,896
third-party/ring/pregenerated/ghash-neon-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .text .globl gcm_init_neon .def gcm_init_neon .type 32 .e...
I-asked/api-daemon
9,856
third-party/ring/pregenerated/vpaes-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text #ifdef BORINGSSL_DISPATCH_TEST #endif .align 64 .L_vpaes_consts: .long 218628480,235210255,1...
I-asked/api-daemon
47,815
third-party/ring/pregenerated/sha512-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .globl _sha512_block_data_order .private_extern _sha512_block_data_order .p2align 4...
I-asked/api-daemon
19,365
third-party/ring/pregenerated/chacha-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl ChaCha20_ctr32 .hidden ChaCha20_ctr32 .type ChaCha20_ctr32,@function .align 16 ChaCha...
I-asked/api-daemon
19,660
third-party/ring/pregenerated/aesni-gcm-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .type _aesni_ctr32_ghash_6x,@function .align 32 _aesni_ctr32_ghash_6x: .cfi_startproc ...
I-asked/api-daemon
8,527
third-party/ring/pregenerated/aesv8-armx-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv8-a+crypto .section ....
I-asked/api-daemon
11,317
third-party/ring/pregenerated/vpaes-x86_64-macosx.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__APPLE__) .text .p2align 4 _vpaes_encrypt_core: movq %rdx,%r9 movq $16,%r11 movl ...
I-asked/api-daemon
14,482
third-party/ring/pregenerated/ghashv8-armx-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .globl _gcm_init_clmul .priv...
I-asked/api-daemon
74,004
third-party/ring/pregenerated/chacha20_poly1305_armv8-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include <ring-core/arm_arch.h> .section __TEXT,__const .align 7 Lchacha20_consts: .byte 'e...
I-asked/api-daemon
6,612
third-party/ring/pregenerated/ghash-x86-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86) && defined(__ELF__) .text .globl gcm_init_clmul .hidden gcm_init_clmul .type gcm_init_clmul,@function .align 16 gcm_in...
I-asked/api-daemon
74,019
third-party/ring/pregenerated/chacha20_poly1305_armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .section .rodata .align 7 Lchacha20_consts: .byte 'e','x','p',...
I-asked/api-daemon
9,380
third-party/ring/pregenerated/aesv8-armx-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__>=7 .text .arch armv7-a @ don't confuse not-s...
I-asked/api-daemon
25,836
third-party/ring/pregenerated/vpaes-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> .section .rodata .align 7 // totally strategic alignment _vp...
I-asked/api-daemon
17,788
third-party/ring/pregenerated/bsaes-armv7-linux32.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_ARM) && defined(__ELF__) @ Copyright 2012-2016 The OpenSSL Project Authors. All Rights Reserved. @ @ Licensed under the Ope...
I-asked/api-daemon
34,151
third-party/ring/pregenerated/sha256-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under t...
I-asked/api-daemon
82,208
third-party/ring/pregenerated/aesv8-gcm-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) #include <ring-core/arm_arch.h> #if __ARM_MAX_ARCH__ >= 8 .arch armv8-a+crypto .text .globl ae...
I-asked/api-daemon
23,114
third-party/ring/pregenerated/ghash-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .extern OPENSSL_ia32cap_P .hidden OPENSSL_ia32cap_P .globl gcm_init_clmul .hidden gcm_in...
I-asked/api-daemon
192,866
third-party/ring/pregenerated/chacha20_poly1305_x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .extern OPENSSL_ia32cap_P .hidden OPENSSL_ia32cap_P chacha20_poly1305_constants: .sect...
I-asked/api-daemon
23,591
third-party/ring/pregenerated/aesni-x86_64-elf.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_X86_64) && defined(__ELF__) .text .extern OPENSSL_ia32cap_P .hidden OPENSSL_ia32cap_P .globl aes_hw_encrypt .hidden aes_hw...
I-asked/api-daemon
35,434
third-party/ring/pregenerated/p256-armv8-asm-ios64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__APPLE__) #include "ring-core/arm_arch.h" .section __TEXT,__const .align 5 Lpoly: .quad 0xfffffffffff...
I-asked/api-daemon
31,212
third-party/ring/pregenerated/armv8-mont-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .text .globl bn_mul_mont .hidden bn_mul_mont .type bn_mul_mo...
I-asked/api-daemon
49,073
third-party/ring/pregenerated/sha512-armv8-win64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(_WIN32) // Copyright 2014-2020 The OpenSSL Project Authors. All Rights Reserved. // // Licensed under t...
I-asked/api-daemon
26,592
third-party/ring/pregenerated/vpaes-armv8-linux64.S
// This file is generated from a similarly-named Perl script in the BoringSSL // source tree. Do not edit by hand. #include <ring-core/asm_base.h> #if !defined(OPENSSL_NO_ASM) && defined(OPENSSL_AARCH64) && defined(__ELF__) #include <ring-core/arm_arch.h> .section .rodata .type _vpaes_consts,%object .align 7 // tot...