repo_id stringlengths 5 115 | size int64 590 5.01M | file_path stringlengths 4 212 | content stringlengths 590 5.01M |
|---|---|---|---|
aappleby/metron | 2,345 | tests/risc-v/instructions/addi.S | # See LICENSE for license details.
#*****************************************************************************
# addi.S
#-----------------------------------------------------------------------------
#
# Test addi instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
#--... |
aappleby/metron | 2,282 | tests/risc-v/instructions/lb.S | # See LICENSE for license details.
#*****************************************************************************
# lb.S
#-----------------------------------------------------------------------------
#
# Test lb instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
#------... |
aappleby/metron | 2,651 | tests/risc-v/instructions/xor.S | # See LICENSE for license details.
#*****************************************************************************
# xor.S
#-----------------------------------------------------------------------------
#
# Test xor instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
#----... |
aappleby/metron | 3,122 | tests/risc-v/instructions/sub.S | # See LICENSE for license details.
#*****************************************************************************
# sub.S
#-----------------------------------------------------------------------------
#
# Test sub instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
#----... |
aappleby/metron | 2,201 | tests/risc-v/instructions/sltiu.S | # See LICENSE for license details.
#*****************************************************************************
# sltiu.S
#-----------------------------------------------------------------------------
#
# Test sltiu instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
#... |
aappleby/metron | 2,610 | tests/risc-v/instructions/sb.S | # See LICENSE for license details.
#*****************************************************************************
# sb.S
#-----------------------------------------------------------------------------
#
# Test sb instruction.
#
#include "riscv_test.h"
#include "test_macros.h"
RVTEST_RV64U
RVTEST_CODE_BEGIN
#------... |
aardappel/lobster | 12,846 | dev/external/SDL/src/video/arm/pixman-arm-neon-asm.S | /*
* Copyright © 2009 Nokia Corporation
*
* 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, pub... |
aardappel/lobster | 19,392 | dev/external/SDL/src/video/arm/pixman-arm-simd-asm.S | /*
* Copyright (c) 2016 RISC OS Open Ltd
*
* This software is provided 'as-is', without any express or implied
* warranty. In no event will the authors be held liable for any damages
* arising from the use of this software.
*
* Permission is granted to anyone to use this software for any purpose,
* including c... |
aardappel/lobster | 19,181 | dev/include/Box2D/Particle/b2ParticleAssembly.neon.s | @
@ Copyright (c) 2014 Google, Inc.
@
@ This software is provided 'as-is', without any express or implied
@ warranty. In no event will the authors be held liable for any damages
@ arising from the use of this software.
@ Permission is granted to anyone to use this software for any purpose,
@ including commercial appli... |
aaronbloomfield/pdr | 3,424 | slides/code/08-assembly-32bit/test_abs.s | .file "test_abs.cpp"
.intel_syntax noprefix
.local _ZStL8__ioinit
.comm _ZStL8__ioinit,1,1
.text
.globl absolute_value
.type absolute_value, @function
absolute_value:
.LFB1021:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
cmp DWORD PTR [ebp+8], 0
jn... |
aaronbloomfield/pdr | 3,921 | slides/code/08-assembly-32bit/test_max.s | .file "test_max.cpp"
.intel_syntax noprefix
.local _ZStL8__ioinit
.comm _ZStL8__ioinit,1,1
.text
.globl max
.type max, @function
max:
.LFB1021:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
sub esp, 16
mov eax, DWORD PTR [ebp+8]
cmp eax, DWORD PTR [... |
aaronbloomfield/pdr | 3,612 | slides/code/08-assembly-32bit/test_fib.s | .file "test_fib.cpp"
.intel_syntax noprefix
.local _ZStL8__ioinit
.comm _ZStL8__ioinit,1,1
.text
.globl fib
.type fib, @function
fib:
.LFB1021:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
push ebx
sub esp, 4
.cfi_offset 3, -12
cmp DWORD PTR [ebp+... |
aaronbloomfield/pdr | 6,370 | slides/code/08-assembly-32bit/test_string_compare.s | .file "test_string_compare.cpp"
.intel_syntax noprefix
.local _ZStL8__ioinit
.comm _ZStL8__ioinit,1,1
.text
.globl compare_string
.type compare_string, @function
compare_string:
.LFB1021:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
.L3:
mov eax, DWO... |
aaronbloomfield/pdr | 3,301 | slides/code/08-assembly-32bit/test_abs-non-intel.s | .file "test_abs.cpp"
.local _ZStL8__ioinit
.comm _ZStL8__ioinit,1,1
.text
.globl absolute_value
.type absolute_value, @function
absolute_value:
.LFB1021:
.cfi_startproc
pushl %ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
movl %esp, %ebp
.cfi_def_cfa_register 5
cmpl $0, 8(%ebp)
jns .L2
negl 8(%ebp)
.L2:
m... |
aaronbloomfield/pdr | 3,971 | slides/code/08-assembly-32bit/test_max-noextern.s | .file "foo.cpp"
.intel_syntax noprefix
.local _ZStL8__ioinit
.comm _ZStL8__ioinit,1,1
.text
.globl _Z3maxii
.type _Z3maxii, @function
_Z3maxii:
.LFB1021:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
sub esp, 16
mov eax, DWORD PTR [ebp+8]
cmp eax, D... |
aaronbloomfield/pdr | 1,622 | slides/code/08-assembly-32bit/test_abs_c.s | .file "test_abs_c.c"
.intel_syntax noprefix
.text
.globl absolute_value
.type absolute_value, @function
absolute_value:
.LFB0:
.cfi_startproc
push ebp
.cfi_def_cfa_offset 8
.cfi_offset 5, -8
mov ebp, esp
.cfi_def_cfa_register 5
cmp DWORD PTR [ebp+8], 0
jns .L2
neg DWORD PTR [ebp+8]
.L2:
mov eax, DWORD PT... |
aaronbloomfield/pdr | 3,522 | slides/code/08-assembly-32bit/test_max-O2.s | .file "test_max.cpp"
.intel_syntax noprefix
.section .text.unlikely,"ax",@progbits
.LCOLDB0:
.text
.LHOTB0:
.p2align 4,,15
.globl max
.type max, @function
max:
.LFB1048:
.cfi_startproc
mov eax, DWORD PTR [esp+4]
mov edx, DWORD PTR [esp+8]
cmp eax, edx
cmovl eax, edx
ret
.cfi_endproc
.LFE1048:
.size max, ... |
aaronbloomfield/pdr | 3,781 | slides/code/08-assembly-64bit/test_fact.s | .text
.intel_syntax noprefix
.file "test_fact.cpp"
.section .text.startup,"ax",@progbits
.p2align 4, 0x90 # -- Begin function __cxx_global_var_init
.type __cxx_global_var_init,@function
__cxx_global_var_init: # @__cxx_global_var_init
.cfi_startproc
# %bb.0:
push rax
.cfi_def_cfa_offset... |
aaronbloomfield/pdr | 3,055 | slides/code/08-assembly-64bit/test_abs.s | .text
.intel_syntax noprefix
.file "test_abs.cpp"
.section .text.startup,"ax",@progbits
.align 16, 0x90
.type __cxx_global_var_init,@function
__cxx_global_var_init: # @__cxx_global_var_init
.cfi_startproc
# BB#0:
push rax
.Ltmp0:
.cfi_def_cfa_offset 16
movabs rdi, _ZStL8__ioinit
call _ZNSt8i... |
aaronbloomfield/pdr | 3,063 | slides/code/08-assembly-64bit/test_abs_int.s | .text
.intel_syntax noprefix
.file "test_abs_int.cpp"
.section .text.startup,"ax",@progbits
.align 16, 0x90
.type __cxx_global_var_init,@function
__cxx_global_var_init: # @__cxx_global_var_init
.cfi_startproc
# BB#0:
push rax
.Ltmp0:
.cfi_def_cfa_offset 16
movabs rdi, _ZStL8__ioinit
call _ZN... |
aaronbloomfield/pdr | 3,632 | slides/code/08-assembly-64bit/test_max.s | .text
.intel_syntax noprefix
.file "test_max.cpp"
.section .text.startup,"ax",@progbits
.align 16, 0x90
.type __cxx_global_var_init,@function
__cxx_global_var_init: # @__cxx_global_var_init
.cfi_startproc
# BB#0:
push rax
.Ltmp0:
.cfi_def_cfa_offset 16
movabs rdi, _ZStL8__ioinit
call _ZNSt8i... |
aaronbloomfield/pdr | 9,352 | slides/code/08-assembly-64bit/test_string_compare.s | .text
.intel_syntax noprefix
.file "test_string_compare.cpp"
.globl compare_string
.align 16, 0x90
.type compare_string,@function
compare_string: # @compare_string
.cfi_startproc
# BB#0:
mov al, byte ptr [rdi]
test al, al
je .LBB0_4
# BB#1: # %.lr.ph.pre... |
aaronbloomfield/pdr | 3,016 | slides/code/08-assembly-64bit/test_abs-non-intel.s | .text
.file "test_abs.cpp"
.section .text.startup,"ax",@progbits
.align 16, 0x90
.type __cxx_global_var_init,@function
__cxx_global_var_init: # @__cxx_global_var_init
.cfi_startproc
# BB#0:
pushq %rax
.Ltmp0:
.cfi_def_cfa_offset 16
movabsq $_ZStL8__ioinit, %rdi
callq _ZNSt8ios_base4InitC1Ev
... |
aaronbloomfield/pdr | 3,632 | slides/code/08-assembly-64bit/test_max-noextern.s | .text
.intel_syntax noprefix
.file "foo.cpp"
.section .text.startup,"ax",@progbits
.align 16, 0x90
.type __cxx_global_var_init,@function
__cxx_global_var_init: # @__cxx_global_var_init
.cfi_startproc
# BB#0:
push rax
.Ltmp0:
.cfi_def_cfa_offset 16
movabs rdi, _ZStL8__ioinit
call _ZNSt8ios_ba... |
aaronbloomfield/pdr | 1,673 | slides/code/08-assembly-64bit/test_abs_c.s | .text
.intel_syntax noprefix
.file "test_abs_c.c"
.globl absolute_value
.align 16, 0x90
.type absolute_value,@function
absolute_value: # @absolute_value
.cfi_startproc
# BB#0:
mov qword ptr [rsp - 8], rdi
cmp qword ptr [rsp - 8], 0
jge .LBB0_2
# BB#1:
xor eax, eax
mov ecx, eax
sub r... |
aaronbloomfield/pdr | 4,444 | slides/code/08-assembly-64bit/test_max-O2.s | .text
.intel_syntax noprefix
.file "test_max.cpp"
.globl max
.align 16, 0x90
.type max,@function
max: # @max
.cfi_startproc
# BB#0:
cmp edi, esi
cmovge esi, edi
mov eax, esi
ret
.Lfunc_end0:
.size max, .Lfunc_end0-max
.cfi_endproc
.globl main
.align 16, 0x90
.type mai... |
aaronbloomfield/pdr | 2,658 | labs/lab08-64bit/mergeSort.s | ; University of Virginia
; CS 2150 In-Lab 8
; Spring 2018
; mergeSort.s
global mergeSort
global merge
section .text
; Parameter 1 is a pointer to the int array
; Parameter 2 is the left index in the array
; Parameter 3 is the right index in the array
; Return type is void
mergeSort:
; Implement mergeSort h... |
aaronbloomfield/pdr | 1,088 | labs/lab08-64bit/vecsum.s | ; vecsum.s
;
; Purpose : This file contains the implementation of the function
; vecsum, which adds up a vector of integers.
;
; Parameter 1 (in rdi) is the starting address of a sequence of 64-bit longs
; Parameter 2 (in rsi) is the number of integers in the sequence
; Return value is a long that is the sum ... |
aaronbloomfield/pdr | 1,869 | labs/lab08-32bit/vecsum.s | ; vecsum.s
;
; Author : Adam Ferrari
; Date : Jan 29, 1998
; Purpose : This file contains the implementation of the function
; vecsum, which adds up a vector of integers.
; Modified for NASM by Aaron Bloomfield on 9 Nov 2007
global vecsum
section .text
;
; vecsum
; Parameter 1 - the starting addres... |
aaronbloomfield/pdr | 1,264 | uva/lectures/bloomfield-fall-2020/lec25/assembly.s | ; assembly.s, which contains the addOrMult() function
;
; Parameter 1 (in rdi) is the boolean (whether to add or mult)
; Parameter 2 (in rsi) is the starting address of a sequence of 64-bit longs
; Parameter 3 (in rdx) is the number of integers in the sequence
; Return value is a long that is the sum of the integers in... |
aaronbloomfield/pdr | 1,029 | uva/lectures/bloomfield-fall-2020/lec27/fib.s | ; CS 2150, exam 2, fall 2019, question 11
fib: ; 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, ...
; fib(n) = fib(n-1) + fib(n-2)
xor rax, rax ; set rax = 0
cmp rdi, 0 ; compare 1st param to zero
je done ; jump to done if param is zero
cmp rdi, 2 ; compare 1st param to 2
jle base ; jump to base if 1st param is... |
aaronbloomfield/pdr | 1,376 | uva/lectures/bloomfield-fall-2020/lec26/assembly.s | ; factArray() and factorial()
;
; for factArray():
; Parameter 1 (in rdi) is the starting address of a sequence of 64-bit longs
; Parameter 2 (in rsi) is the number of integers in the sequence
;
; for factorial():
; Parameter 1 (in rdi) is the value to return the factorial of
global factArray
global factorial
sec... |
aaronbloomfield/pdr | 1,264 | uva/lectures/bloomfield-spring-2021/lec25/assembly.s | ; assembly.s, which contains the addOrMult() function
;
; Parameter 1 (in rdi) is the boolean (whether to add or mult)
; Parameter 2 (in rsi) is the starting address of a sequence of 64-bit longs
; Parameter 3 (in rdx) is the number of integers in the sequence
; Return value is a long that is the sum of the integers in... |
aaronbloomfield/pdr | 1,447 | uva/lectures/bloomfield-spring-2021/lec26/assembly.s | ; factArray() and factorial()
;
; for factArray():
; Parameter 1 (in rdi) is the starting address of a sequence of 64-bit longs
; Parameter 2 (in rsi) is the number of integers in the sequence
;
; for factorial():
; Parameter 1 (in rdi) is the value to return the factorial of
global factArray
global factorial
sec... |
aaron-ev/CLI-STM32-FreeRTOS | 20,143 | workspace/cliFreeRTOS/Core/Startup/startup_stm32f401ccux.s | /**
******************************************************************************
* @file startup_stm32f401xc.s
* @author MCD Application Team
* @brief STM32F401xCxx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
AaronChuzb/TD3 | 19,929 | components/lvgl/rlottie/src/vector/pixman/pixman-arm-neon-asm.S | /*
* Copyright © 2009 Nokia Corporation
*
* 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, pub... |
aarzilli/nucular | 1,742 | drawfillover_avx.s | //+build amd64,go1.10
#include "textflag.h"
GLOBL drawFillOver_SIMD_shufflemap<>(SB), (NOPTR+RODATA), $4
DATA drawFillOver_SIMD_shufflemap<>+0x00(SB)/4, $0x0d090501
TEXT ·drawFillOver_SIMD_internal(SB),0,$0-60
// base+0(FP)
// i0+8(FP)
// i1+16(FP)
// stride+24(FP)
// n+32(FP)
// adivm+40(FP)
// sr+44(FP)
//... |
Aatch/ramp | 1,488 | src/ll/asm/addmul_1.S | .text
.file "addmul_1.S"
#define wp %rdi
#define xp %rsi
#define n_param %edx
#define n %r11d
#define v %rcx
.section .text.ramp_addmul_1,"ax",@progbits
.globl ramp_addmul_1
.align 16, 0x90
.type ramp_addmul_1,@function
ramp_addmul_1:
.cfi_startproc
#define L(lbl) .LADDMUL_ ## lbl
mo... |
Aatch/ramp | 3,020 | src/ll/asm/addsub_n.S | .text
.file "addsub_n.S"
#define wp %rdi
#define xp %rsi
#define yp %rdx
#define n %rcx
.section .text.ramp_add_n,"ax",@progbits
.globl ramp_add_n
.align 16, 0x90
.type ramp_add_n,@function
ramp_add_n:
.cfi_startproc
#define L(lbl) .LADD_ ## lbl
mov %ecx, %eax
shr $2, n
and $... |
ab25cq/clover2 | 5,898 | code/cstruct_test.s | .text
.file "cstruct_test.ocl"
.globl clover2_main // -- Begin function clover2_main
.p2align 2
.type clover2_main,@function
clover2_main: // @clover2_main
.cfi_startproc
// %bb.0: // %entry
str x24, [sp, #-64]! // 8-byte Folded Spill
stp... |
ab25cq/clover2 | 3,688 | code/CFFI.s | .text
.file "CFFI.ocl"
.globl clover2_main // -- Begin function clover2_main
.p2align 2
.type clover2_main,@function
clover2_main: // @clover2_main
.cfi_startproc
// %bb.0: // %entry
stp x23, x22, [sp, #-48]! // 8-byte Folded Spill
stp x21, x2... |
ab25cq/comelang | 51,617 | minux9/msh.S | .file "msh.c"
.option nopic
.attribute arch, "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0"
.attribute unaligned_access, 0
.attribute stack_align, 16
.text
.Ltext0:
.cfi_sections .debug_frame
.file 0 "/Users/ab25cq/comelang/minux9" "msh.c"
.align 1
.globl strncpy
.type strncpy, @function
strncpy:
.LFB0:
.file... |
ab25cq/comelang | 130,915 | minux9/fs.S | .file "fs.c"
.option nopic
.attribute arch, "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0_zifencei2p0"
.attribute unaligned_access, 0
.attribute stack_align, 16
.text
.Ltext0:
.cfi_sections .debug_frame
.file 0 "/Users/ab25cq/comelang/minux9" "fs.c"
.local vbase
.comm vbase,8,8
.local Q
.comm Q,4,4
.local de... |
ab25cq/comelang | 11,405 | minux9/trap.S | .extern kernel_satp # C のグローバルを取り込む
.extern user_satp # C のグローバルを取り込む
.extern kernel_sp # C のゴローバル変数を取り込む
.extern user_sp # C のゴローバル変数を取り込む
.extern gCPU # C のゴローバル変数を取り込む
.section ".trampoline", "ax"
.globl trapvec
#.section .text
.align 2
trap... |
ab25cq/comelang | 36,520 | minux9/child.S | .file "child.c"
.option nopic
.attribute arch, "rv64i2p1_m2p0_a2p1_f2p2_d2p2_c2p0_zicsr2p0"
.attribute unaligned_access, 0
.attribute stack_align, 16
.text
.Ltext0:
.cfi_sections .debug_frame
.file 0 "/Users/ab25cq/minux9" "child.c"
.align 1
.type exit, @function
exit:
.LFB0:
.file 1 "minux.h"
.loc 1 122 38... |
abcdabcd987/compiler2016 | 9,194 | lib/builtin_functions.s | # Built by Ficos 16/5/2
# All rights reserved.
#
#
# All test passed.
#
# Attention:
# 1. to use the built-in functions, you need to call "_buffer_init" function without any args before entering the source main function
# (jal _buffer_init)
# 2. just paste all of this in front of your MIPS code
#
# All supported funct... |
abcminiuser/lufa | 2,999 | Bootloaders/CDC/BootloaderAPITable.S | /*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
abcminiuser/lufa | 3,391 | Bootloaders/MassStorage/BootloaderAPITable.S | /*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
abcminiuser/lufa | 3,003 | Bootloaders/DFU/BootloaderAPITable.S | /*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
abcminiuser/lufa | 3,003 | Bootloaders/Printer/BootloaderAPITable.S | /*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
abcminiuser/lufa | 3,064 | LUFA/Platform/UC3/Exception.S | /*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
abcminiuser/lufa | 1,402 | BuildTests/ModuleTest/Dummy.S | /*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
abcminiuser/lufa | 1,463 | BuildTests/SingleUSBModeTest/Dummy.S | /*
LUFA Library
Copyright (C) Dean Camera, 2021.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
Copyright 2021 Dean Camera (dean [at] fourwalledcubicle [dot] com)
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purp... |
4d61726b/VirtualKD-Redux | 2,433 | VirtualKD-Redux/Lib/STLPort/src/sparc_atomic64.s | .section ".text",#alloc,#execinstr
.align 8
.skip 16
! int _STLP_atomic_exchange (void *pvalue, int value)
!
.type _STLP_atomic_exchange,#function
.global _STLP_atomic_exchange
.align 8
_STLP_atomic_exchange:
1:
ldx [%o0], %o2 ! Set the c... |
4d61726b/VirtualKD-Redux | 2,593 | VirtualKD-Redux/Lib/STLPort/src/sparc_atomic.s | .section ".text",#alloc,#execinstr
.align 8
.skip 16
/*
** int _STLP_atomic_exchange (void *pvalue, int value)
*/
.type _STLP_atomic_exchange,#function
.global _STLP_atomic_exchange
.align 8
_STLP_atomic_exchange:
0:
ld [%o0],... |
4ilo/ssd1306-stm32HAL | 20,446 | example/startup_stm32f411xe.s | /**
******************************************************************************
* @file startup_stm32f411xe.s
* @author MCD Application Team
* @brief STM32F411xExx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
4ilo/HD44780-Stm32HAL | 21,686 | F4_disco_example/startup/startup_stm32f411xe.s | /**
******************************************************************************
* @file startup_stm32f411xe.s
* @author MCD Application Team
* @brief STM32F411xExx Devices vector table for GCC based toolchains.
* This module performs:
* - Set the initial SP
* ... |
4ms/SMR | 23,461 | stm32/device/src/startup_stm32f4xx.s | /**
******************************************************************************
* @file startup_stm32f4xx.s
* @author MCD Application Team
* @version V1.0.0
* @date 30-September-2011
* @brief STM32F4xx Devices vector table for RIDE7 toolchain.
* This module performs:
* ... |
4ms/metamodule-plugin-sdk | 1,661 | plugin-libc/libgcc/config/nios2/crtn.S | /* Copyright (C) 2012-2022 Free Software Foundation, Inc.
Contributed by Jonah Graham (jgraham@altera.com).
Contributed by Mentor Graphics, Inc.
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; eit... |
4ms/metamodule-plugin-sdk | 2,373 | plugin-libc/libgcc/config/nios2/crti.S | /* Copyright (C) 2012-2022 Free Software Foundation, Inc.
Contributed by Jonah Graham (jgraham@altera.com).
Contributed by Mentor Graphics, Inc.
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; eit... |
4ms/metamodule-plugin-sdk | 2,499 | plugin-libc/libgcc/config/tilepro/softmpy.S | /* 64-bit multiplication support for TILEPro.
Copyright (C) 2011-2022 Free Software Foundation, Inc.
Contributed by Walter Lee (walt@tilera.com)
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Founda... |
4ms/metamodule-plugin-sdk | 1,392 | plugin-libc/libgcc/config/m68k/crtn.S | /* Specialized code needed to support construction and destruction of
file-scope objects in C++ and Java code, and to support exception handling.
Copyright (C) 1999-2022 Free Software Foundation, Inc.
Contributed by Charles-Antoine Gauthier (charles.gauthier@iit.nrc.ca).
This file is part of GCC.
GCC is free... |
4ms/metamodule-plugin-sdk | 1,486 | plugin-libc/libgcc/config/m68k/crti.S | /* Specialized code needed to support construction and destruction of
file-scope objects in C++ and Java code, and to support exception handling.
Copyright (C) 1999-2022 Free Software Foundation, Inc.
Contributed by Charles-Antoine Gauthier (charles.gauthier@iit.nrc.ca).
This file is part of GCC.
GCC is free... |
4ms/metamodule-plugin-sdk | 101,881 | plugin-libc/libgcc/config/m68k/lb1sf68.S | /* libgcc routines for 68000 w/o floating-point hardware.
Copyright (C) 1994-2022 Free Software Foundation, Inc.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3,... |
4ms/metamodule-plugin-sdk | 1,802 | plugin-libc/libgcc/config/rl78/subdi3.S | ; Copyright (C) 2017-2022 Free Software Foundation, Inc.
; Contributed by Sebastian Perta.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later ve... |
4ms/metamodule-plugin-sdk | 2,044 | plugin-libc/libgcc/config/rl78/smindi3.S | ; Copyright (C) 2017-2022 Free Software Foundation, Inc.
; Contributed by Sebastian Perta.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later v... |
4ms/metamodule-plugin-sdk | 2,246 | plugin-libc/libgcc/config/rl78/lshrsi3.S | ; Copyright (C) 2011-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 1,937 | plugin-libc/libgcc/config/rl78/umindi3.S | ; Copyright (C) 2017-2022 Free Software Foundation, Inc.
; Contributed by Sebastian Perta.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later v... |
4ms/metamodule-plugin-sdk | 1,583 | plugin-libc/libgcc/config/rl78/anddi3.S | ; Copyright (C) 2017-2022 Free Software Foundation, Inc.
; Contributed by Sebastian Perta.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later v... |
4ms/metamodule-plugin-sdk | 5,177 | plugin-libc/libgcc/config/rl78/divmodqi.S | /* QImode div/mod functions for the GCC support library for the Renesas RL78 processors.
Copyright (C) 2012-2022 Free Software Foundation, Inc.
Contributed by Red Hat.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Lice... |
4ms/metamodule-plugin-sdk | 4,225 | plugin-libc/libgcc/config/rl78/cmpsi2.S | ; Copyright (C) 2011-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 2,044 | plugin-libc/libgcc/config/rl78/smaxdi3.S | ; Copyright (C) 2017-2022 Free Software Foundation, Inc.
; Contributed by Sebastian Perta.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later v... |
4ms/metamodule-plugin-sdk | 15,937 | plugin-libc/libgcc/config/rl78/fpmath-sf.S | ; SF format is:
;
; [sign] 1.[23bits] E[8bits(n-127)]
;
; SEEEEEEE Emmmmmmm mmmmmmmm mmmmmmmm
;
; [A+0] mmmmmmmm
; [A+1] mmmmmmmm
; [A+2] Emmmmmmm
; [A+3] SEEEEEEE
;
; Special values (xxx != 0):
;
; r11 r10 r9 r8
; [HL+3] [HL+2] [HL+1] [HL+0]
; s1111111 10000000 00000000 00000000 infinity
; ... |
4ms/metamodule-plugin-sdk | 20,489 | plugin-libc/libgcc/config/rl78/divmodsi.S | /* SImode div/mod functions for the GCC support library for the Renesas RL78 processors.
Copyright (C) 2012-2022 Free Software Foundation, Inc.
Contributed by Red Hat.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public Lice... |
4ms/metamodule-plugin-sdk | 13,334 | plugin-libc/libgcc/config/rl78/divmodhi.S | /* HImode div/mod functions for the GCC support library for the Renesas RL78 processors.
Copyright (C) 2012-2022 Free Software Foundation, Inc.
Contributed by Red Hat.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public Lice... |
4ms/metamodule-plugin-sdk | 2,733 | plugin-libc/libgcc/config/rl78/trampoline.S | /* libgcc routines for RL78
Copyright (C) 2011-2022 Free Software Foundation, Inc.
Contributed by Red Hat.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published
by the Free Software Foundation; either v... |
4ms/metamodule-plugin-sdk | 12,811 | plugin-libc/libgcc/config/rl78/fpbit-sf.S | ; SF format is:
;
; [sign] 1.[23bits] E[8bits(n-127)]
;
; SEEEEEEE Emmmmmmm mmmmmmmm mmmmmmmm
;
; [A+0] mmmmmmmm
; [A+1] mmmmmmmm
; [A+2] Emmmmmmm
; [A+3] SEEEEEEE
;
; Special values (xxx != 0):
;
; s1111111 10000000 00000000 00000000 infinity
; s1111111 1xxxxxxx xxxxxxxx xxxxxxxx NaN
; s0000000 00000000 00000000 00... |
4ms/metamodule-plugin-sdk | 1,937 | plugin-libc/libgcc/config/rl78/umaxdi3.S | ; Copyright (C) 2017-2022 Free Software Foundation, Inc.
; Contributed by Sebastian Perta.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later v... |
4ms/metamodule-plugin-sdk | 1,802 | plugin-libc/libgcc/config/rl78/adddi3.S | ; Copyright (C) 2017-2022 Free Software Foundation, Inc.
; Contributed by Sebastian Perta.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later ve... |
4ms/metamodule-plugin-sdk | 1,864 | plugin-libc/libgcc/config/rl78/signbit.S | ; Copyright (C) 2012-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 3,752 | plugin-libc/libgcc/config/rl78/bit-count.S | ; Copyright (C) 2012-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 4,963 | plugin-libc/libgcc/config/rl78/mulsi3.S | ; Copyright (C) 2011-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 3,011 | plugin-libc/libgcc/config/msp430/srai.S | ; Copyright (C) 2012-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 1,510 | plugin-libc/libgcc/config/msp430/epilogue.S | ; Copyright (C) 2012-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 3,019 | plugin-libc/libgcc/config/msp430/slli.S | ; Copyright (C) 2012-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 3,037 | plugin-libc/libgcc/config/msp430/srli.S | ; Copyright (C) 2012-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 16,846 | plugin-libc/libgcc/config/msp430/lib2hw_mul.S | ; Copyright (C) 2014-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 2,776 | plugin-libc/libgcc/config/msp430/cmpsi2.S | ; Copyright (C) 2012-2022 Free Software Foundation, Inc.
; Contributed by Red Hat.
;
; This file is free software; you can redistribute it and/or modify it
; under the terms of the GNU General Public License as published by the
; Free Software Foundation; either version 3, or (at your option) any
; later version.
... |
4ms/metamodule-plugin-sdk | 1,197 | plugin-libc/libgcc/config/i386/crtn.S | /* crtn.S for x86.
Copyright (C) 1993-2022 Free Software Foundation, Inc.
Written By Fred Fish, Nov 1992
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any... |
4ms/metamodule-plugin-sdk | 23,864 | plugin-libc/libgcc/config/i386/morestack.S | # x86/x86_64 support for -fsplit-stack.
# Copyright (C) 2009-2022 Free Software Foundation, Inc.
# Contributed by Ian Lance Taylor <iant@google.com>.
# This file is part of GCC.
# GCC is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Fre... |
4ms/stm32mp1-baremetal | 3,323 | bootloaders/mp1-boot/startup.s | .syntax unified
.cpu cortex-a7
.equ MODE_FIQ, 0x11
.equ MODE_IRQ, 0x12
.equ MODE_SVC, 0x13
.equ MODE_ABT, 0x17
.equ MODE_UND, 0x1B
.equ MODE_SYS, 0x1F
.section .vector_table, "x"
.global _Reset
.global _start
_Reset:
b Reset_Handler
b Undef_Handler // 0x4 Undefined Instruction
b SVC_Handler ... |
4ms/metamodule-plugin-sdk | 1,313 | plugin-libc/libgcc/config/i386/crti.S | /* crti.S for x86.
Copyright (C) 1993-2022 Free Software Foundation, Inc.
Written By Fred Fish, Nov 1992
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your option) any... |
4ms/metamodule-plugin-sdk | 4,899 | plugin-libc/libgcc/config/i386/cygwin.S | /* stuff needed for libgcc on win32.
*
* Copyright (C) 1996-2022 Free Software Foundation, Inc.
* Written By Steve Chamberlain
*
* This file is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either v... |
4ms/metamodule-plugin-sdk | 5,263 | plugin-libc/libgcc/config/i386/sol2-c1.S | /* crt1.s for Solaris 2, x86
Copyright (C) 1993-2022 Free Software Foundation, Inc.
Written By Fred Fish, Nov 1992
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3, or (at your op... |
4ms/metamodule-plugin-sdk | 2,078 | plugin-libc/libgcc/config/aarch64/crtn.S | # Machine description for AArch64 architecture.
# Copyright (C) 2009-2022 Free Software Foundation, Inc.
# Contributed by ARM Ltd.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3... |
4ms/metamodule-plugin-sdk | 8,030 | plugin-libc/libgcc/config/aarch64/lse.S | /* Out-of-line LSE atomics for AArch64 architecture.
Copyright (C) 2019-2022 Free Software Foundation, Inc.
Contributed by Linaro Ltd.
This file is part of GCC.
GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foun... |
4ms/metamodule-plugin-sdk | 1,995 | plugin-libc/libgcc/config/aarch64/crti.S | # Machine description for AArch64 architecture.
# Copyright (C) 2009-2022 Free Software Foundation, Inc.
# Contributed by ARM Ltd.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 3... |
4ms/metamodule-plugin-sdk | 5,886 | plugin-libc/libgcc/config/frv/lib1funcs.S | /* Library functions.
Copyright (C) 2000-2022 Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of GCC.
GCC is free software ; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; eith... |
4ms/metamodule-plugin-sdk | 1,155 | plugin-libc/libgcc/config/epiphany/crtn.S | # End .init and .fini sections.
# Copyright (C) 2010-2022 Free Software Foundation, Inc.
# Contributed by Embecosm on behalf of Adapteva, Inc.
#
# This file is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; eith... |
4ms/metamodule-plugin-sdk | 2,155 | plugin-libc/libgcc/config/epiphany/umodsi3.S | /* Unsigned 32 bit modulo optimized for Epiphany.
Copyright (C) 2009-2022 Free Software Foundation, Inc.
Contributed by Embecosm on behalf of Adapteva, Inc.
This file is part of GCC.
This file is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as publish... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.