repo_id
stringlengths
5
115
size
int64
590
5.01M
file_path
stringlengths
4
212
content
stringlengths
590
5.01M
aixcc-public/challenge-001-exemplar-source
1,111
arch/sh/lib/udiv_qrnnd.S
/* SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0 Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. */ !! libgcc routines for the Renesas / SuperH SH CPUs. !! Contributed by Steve Chamberlain. !! sac@cygnus.com !! ashiftrt_r4_x, ___...
aixcc-public/challenge-001-exemplar-source
4,048
arch/sh/lib/memmove.S
/* SPDX-License-Identifier: GPL-2.0 */ /* $Id: memmove.S,v 1.2 2001/07/27 11:51:09 gniibe Exp $ * * "memmove" implementation of SuperH * * Copyright (C) 1999 Niibe Yutaka * */ /* * void *memmove(void *dst, const void *src, size_t n); * The memory areas may overlap. */ #include <linux/linkage.h> ENTRY(memmov...
aixcc-public/challenge-001-exemplar-source
2,315
arch/sh/lib/udivsi3_i4i-Os.S
/* SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0 * * Copyright (C) 2006 Free Software Foundation, Inc. */ /* Moderately Space-optimized libgcc routines for the Renesas SH / STMicroelectronics ST40 CPUs. Contributed by J"orn Rennecke joern.rennecke@st.com. */ /* Size: 186 bytes jointly for udivsi3...
aixcc-public/challenge-001-exemplar-source
15,652
arch/sh/lib/memcpy-sh4.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * "memcpy" implementation of SuperH * * Copyright (C) 1999 Niibe Yutaka * Copyright (c) 2002 STMicroelectronics Ltd * Modified from memcpy.S and micro-optimised for SH4 * Stuart Menefy (stuart.menefy@st.com) * */ #include <linux/linkage.h> /* * void *memcpy(void...
aixcc-public/challenge-001-exemplar-source
6,226
arch/sh/lib/copy_page.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * copy_page, __copy_user_page, __copy_user implementation of SuperH * * Copyright (C) 2001 Niibe Yutaka & Kaz Kojima * Copyright (C) 2002 Toshinobu Sugioka * Copyright (C) 2006 Paul Mundt */ #include <linux/linkage.h> #include <asm/page.h> /* * copy_page * @to: P1 a...
aixcc-public/challenge-001-exemplar-source
5,317
arch/sh/lib/mcount.S
/* SPDX-License-Identifier: GPL-2.0 * * arch/sh/lib/mcount.S * * Copyright (C) 2008, 2009 Paul Mundt * Copyright (C) 2008, 2009 Matt Fleming */ #include <asm/ftrace.h> #include <asm/thread_info.h> #include <asm/asm-offsets.h> #define MCOUNT_ENTER() \ mov.l r4, @-r15; \ mov.l r5, @-r15; \ mov.l r6, @-r15;...
aixcc-public/challenge-001-exemplar-source
1,827
arch/sh/lib/__clear_user.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * __clear_user_page, __clear_user, clear_page implementation of SuperH * * Copyright (C) 2001 Kaz Kojima * Copyright (C) 2001, 2002 Niibe Yutaka * Copyright (C) 2006 Paul Mundt */ #include <linux/linkage.h> #include <asm/page.h> ENTRY(__clear_user) ! mov #0, r0 mov...
aixcc-public/challenge-001-exemplar-source
2,366
arch/sh/lib/ashiftrt.S
/* SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0 Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. */ !! libgcc routines for the Renesas / SuperH SH CPUs. !! Contributed by Steve Chamberlain. !! sac@cygnus.com !! ashiftrt_r4_x, ___...
aixcc-public/challenge-001-exemplar-source
4,348
arch/sh/lib/movmem.S
/* SPDX-License-Identifier: GPL-2.0+ WITH GCC-exception-2.0 Copyright (C) 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. */ !! libgcc routines for the Renesas / SuperH SH CPUs. !! Contributed by Steve Chamberlain. !! sac@cygnus.com !! ashiftrt_r4_x, ___...
aixcc-public/challenge-001-exemplar-source
1,668
arch/sh/lib/memset-sh4.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * "memset" implementation for SH4 * * Copyright (C) 1999 Niibe Yutaka * Copyright (c) 2009 STMicroelectronics Limited * Author: Stuart Menefy <stuart.menefy:st.com> */ /* * void *memset(void *s, int c, size_t n); */ #include <linux/linkage.h> ENTRY(memse...
aixcc-public/challenge-001-exemplar-source
1,121
arch/sh/kernel/vsyscall/vsyscall-trapa.S
/* SPDX-License-Identifier: GPL-2.0 */ .text .globl __kernel_vsyscall .type __kernel_vsyscall,@function __kernel_vsyscall: .LSTART_vsyscall: trapa #0x10 nop .LEND_vsyscall: .size __kernel_vsyscall,.-.LSTART_vsyscall .previous .section .eh_frame,"a",@progbits .LCIE: .ualong .LCIE_end - .LCIE_start .LCIE_start...
aixcc-public/challenge-001-exemplar-source
2,169
arch/sh/kernel/vsyscall/vsyscall.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Linker script for vsyscall DSO. The vsyscall page is an ELF shared * object prelinked to its virtual address, and with only one read-only * segment (that fits in one page). This script controls its layout. */ #include <asm/asm-offsets.h> #ifdef CONFIG_CPU_LITTLE_ENDIAN...
aixcc-public/challenge-001-exemplar-source
1,775
arch/sh/kernel/vsyscall/vsyscall-sigreturn.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/unistd.h> .text .balign 32 .globl __kernel_sigreturn .type __kernel_sigreturn,@function __kernel_sigreturn: .LSTART_sigreturn: mov.w 1f, r3 trapa #0x10 or r0, r0 or r0, r0 or r0, r0 or r0, r0 or r0, r0 1: .short __NR_sigreturn .LEND_sigreturn: .size __k...
aixcc-public/challenge-001-exemplar-source
1,689
arch/sh/kernel/cpu/sh3/ex.S
/* SPDX-License-Identifier: GPL-2.0 * * arch/sh/kernel/cpu/sh3/ex.S * * The SH-3 and SH-4 exception vector table. * * Copyright (C) 1999, 2000, 2002 Niibe Yutaka * Copyright (C) 2003 - 2008 Paul Mundt */ #include <linux/linkage.h> #if !defined(CONFIG_MMU) #define tlb_miss_load exception_error #define t...
aixcc-public/challenge-001-exemplar-source
10,714
arch/sh/kernel/cpu/sh3/entry.S
/* SPDX-License-Identifier: GPL-2.0 * * arch/sh/kernel/cpu/sh3/entry.S * * Copyright (C) 1999, 2000, 2002 Niibe Yutaka * Copyright (C) 2003 - 2012 Paul Mundt */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <asm/un...
aixcc-public/challenge-001-exemplar-source
2,869
arch/sh/kernel/cpu/sh3/swsusp.S
/* SPDX-License-Identifier: GPL-2.0 * * arch/sh/kernel/cpu/sh3/swsusp.S * * Copyright (C) 2009 Magnus Damm */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/page.h> #define k0 r0 #define k1 r1 #define k2 r2 #define k3 r3 #define k4 r4 ! swsus...
aixcc-public/challenge-001-exemplar-source
4,993
arch/sh/kernel/cpu/sh2a/entry.S
/* SPDX-License-Identifier: GPL-2.0 * * arch/sh/kernel/cpu/sh2a/entry.S * * The SH-2A exception entry * * Copyright (C) 2008 Yoshinori Sato * Based on arch/sh/kernel/cpu/sh2/entry.S */ #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <cpu/mmu_context.h> #include <as...
aixcc-public/challenge-001-exemplar-source
6,792
arch/sh/kernel/cpu/sh2/entry.S
/* SPDX-License-Identifier: GPL-2.0 * * arch/sh/kernel/cpu/sh2/entry.S * * The SH-2 exception entry * * Copyright (C) 2005-2008 Yoshinori Sato * Copyright (C) 2005 AXE,Inc. */ #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <cpu/mmu_context.h> #include <asm/unistd...
aixcc-public/challenge-001-exemplar-source
6,877
arch/sh/kernel/cpu/shmobile/sleep.S
/* SPDX-License-Identifier: GPL-2.0 * * arch/sh/kernel/cpu/sh4a/sleep-sh_mobile.S * * Sleep mode and Standby modes support for SuperH Mobile * * Copyright (C) 2009 Magnus Damm */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/suspend.h> /*...
aixcc-public/challenge-001-exemplar-source
2,430
arch/sh/boot/compressed/head_32.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/arch/sh/boot/compressed/head.S * * Copyright (C) 1999 Stuart Menefy * Copyright (C) 2003 SUGIOKA Toshinobu */ .text #include <asm/page.h> .global startup startup: /* Load initial status register */ mov.l init_sr, r1 ldc r1, sr /* Move myself to pr...
aixcc-public/challenge-001-exemplar-source
4,021
arch/sh/boot/compressed/head_64.S
/* * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * * arch/shmedia/boot/compressed/head.S * * Copied from * arch/shmedia/kernel/head.S * which carried the copyright: * Copyright (C) 2...
aixcc-public/challenge-001-exemplar-source
1,637
arch/sh/boot/romimage/head.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/arch/sh/boot/romimage/head.S * * Board specific setup code, executed before zImage loader */ .text #include <asm/page.h> .global romstart romstart: /* include board specific setup code */ #include <mach/romimage.h> #ifdef CONFIG_ROMIMAGE_MMCIF /* load the ro...
aixcc-public/challenge-001-exemplar-source
2,749
arch/sh/boards/mach-ecovec24/sdram.S
/* SPDX-License-Identifier: GPL-2.0 * * Ecovec24 sdram self/auto-refresh setup code * * Copyright (C) 2009 Magnus Damm */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/suspend.h> #include <asm/romimage-macros.h> /* code to enter and leave s...
aixcc-public/challenge-001-exemplar-source
1,938
arch/sh/boards/mach-kfr2r09/sdram.S
/* SPDX-License-Identifier: GPL-2.0 * * KFR2R09 sdram self/auto-refresh setup code * * Copyright (C) 2009 Magnus Damm */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/suspend.h> #include <asm/romimage-macros.h> /* code to enter and leave se...
aixcc-public/challenge-001-exemplar-source
1,210
arch/sh/boards/mach-migor/sdram.S
/* SPDX-License-Identifier: GPL-2.0 * * Migo-R sdram self/auto-refresh setup code * * Copyright (C) 2009 Magnus Damm */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/suspend.h> #include <asm/romimage-macros.h> /* code to enter and leave sel...
aixcc-public/challenge-001-exemplar-source
1,224
arch/sh/boards/mach-ap325rxa/sdram.S
/* SPDX-License-Identifier: GPL-2.0 * * AP325RXA sdram self/auto-refresh setup code * * Copyright (C) 2009 Magnus Damm */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/suspend.h> #include <asm/romimage-macros.h> /* code to enter and leave s...
aixcc-public/challenge-001-exemplar-source
3,078
arch/sh/boards/mach-se/7724/sdram.S
/* SPDX-License-Identifier: GPL-2.0 * * MS7724SE sdram self/auto-refresh setup code * * Copyright (C) 2009 Magnus Damm */ #include <linux/sys.h> #include <linux/errno.h> #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/suspend.h> #include <asm/romimage-macros.h> /* code to enter and leave s...
aixcc-public/challenge-001-exemplar-source
1,897
arch/sh/include/asm/entry-macros.S
! SPDX-License-Identifier: GPL-2.0 ! entry.S macro define .macro cli stc sr, r0 or #0xf0, r0 ldc r0, sr .endm .macro sti mov #0xfffffff0, r11 extu.b r11, r11 not r11, r11 stc sr, r10 and r11, r10 #ifdef CONFIG_CPU_HAS_SR_RB stc k_g_imask, r11 or r11, r10 #endif ldc r10, sr .endm .macro get_current_t...
aixcc-public/challenge-001-exemplar-source
4,939
arch/arm/mach-davinci/sleep.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * (C) Copyright 2009, Texas Instruments, Inc. https://www.ti.com/ */ /* replicated define because linux/bitops.h cannot be included in assembly */ #define BIT(nr) (1 << (nr)) #include <linux/linkage.h> #include <asm/assembler.h> #include "psc.h" #include "ddr2.h" #i...
aixcc-public/challenge-001-exemplar-source
2,012
arch/arm/mach-sunxi/headsmp.S
/* SPDX-License-Identifier: GPL-2.0 * * Copyright (c) 2018 Chen-Yu Tsai * Copyright (c) 2018 Bootlin * * Chen-Yu Tsai <wens@csie.org> * Mylène Josserand <mylene.josserand@bootlin.com> * * SMP support for sunxi based systems with Cortex A7/A15 * */ #include <linux/linkage.h> #include <asm/assembler.h> #includ...
aixcc-public/challenge-001-exemplar-source
3,796
arch/arm/xen/hypercall.S
/****************************************************************************** * hypercall.S * * Xen hypercall wrappers * * Stefano Stabellini <stefano.stabellini@eu.citrix.com>, Citrix, 2012 * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public...
aixcc-public/challenge-001-exemplar-source
1,635
arch/arm/vdso/vdso.lds.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Adapted from arm64 version. * * GNU linker script for the VDSO library. * * Copyright (C) 2012 ARM Limited * * Author: Will Deacon <will.deacon@arm.com> * Heavily based on the vDSO linker scripts for other archs. */ #include <linux/const.h> #include <asm/page.h...
aixcc-public/challenge-001-exemplar-source
1,994
arch/arm/mach-s3c/sleep-s3c64xx.S
/* SPDX-License-Identifier: GPL-2.0 */ /* linux/arch/arm/plat-s3c64xx/sleep.S * * Copyright 2008 Openmoko, Inc. * Copyright 2008 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> * http://armlinux.simtec.co.uk/ * * S3C64XX CPU sleep code */ #include <linux/linkage.h> #include <asm/assembler.h> #include "map.h"...
aixcc-public/challenge-001-exemplar-source
1,470
arch/arm/mach-s3c/sleep-s3c24xx.S
/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2004 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> * * S3C2410 Power Manager (Suspend-To-RAM) support * * Based on PXA/SA1100 sleep code by: * Nicolas Pitre, (c) 2002 Monta Vista Software Inc * Cliff Brake, (c) 2001 */ #include <linux/linkage.h> #...
aixcc-public/challenge-001-exemplar-source
2,786
arch/arm/mach-s3c/irq-s3c24xx-fiq.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* linux/drivers/spi/spi_s3c24xx_fiq.S * * Copyright 2009 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> * * S3C24XX SPI - FIQ pseudo-DMA transfer code */ #include <linux/linkage.h> #include <asm/assembler.h> #include "map.h" #include "regs-irq.h" #include <linux/s...
aixcc-public/challenge-001-exemplar-source
1,108
arch/arm/mach-s3c/sleep-s3c2412.S
/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2007 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> * * S3C2412 Power Manager low-level sleep support */ #include <linux/linkage.h> #include <asm/assembler.h> #include "map.h" #include "regs-irq.h" .text .global s3c2412_sleep_enter s3c2412_sleep_...
aixcc-public/challenge-001-exemplar-source
1,322
arch/arm/mach-s3c/sleep-s3c2410.S
/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (c) 2004 Simtec Electronics * Ben Dooks <ben@simtec.co.uk> * * S3C2410 Power Manager (Suspend-To-RAM) support * * Based on PXA/SA1100 sleep code by: * Nicolas Pitre, (c) 2002 Monta Vista Software Inc * Cliff Brake, (c) 2001 */ #include <linux/linkage.h> #...
aixcc-public/challenge-001-exemplar-source
2,657
arch/arm/mach-pxa/standby.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * PXA27x standby mode * * Author: David Burrage * * 2005 (c) MontaVista Software, Inc. */ #include <linux/linkage.h> #include <asm/assembler.h> #include "pxa2xx-regs.h" .text #ifdef CONFIG_PXA27x ENTRY(pxa_cpu_standby) ldr r0, =PSSR mov r1, #(PSSR_PH | PSSR_S...
aixcc-public/challenge-001-exemplar-source
4,305
arch/arm/mach-pxa/sleep.S
/* * Low-level PXA250/210 sleep/wakeUp support * * Initial SA1110 code: * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com> * * Adapted for PXA by Nicolas Pitre: * Copyright (c) 2002 Monta Vista Software, Inc. * * This program is free software; you can redistribute it and/or * modify it under the terms of ...
aixcc-public/challenge-001-exemplar-source
3,545
arch/arm/mach-omap2/omap-headsmp.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Secondary CPU startup routine source file. * * Copyright (C) 2009-2014 Texas Instruments, Inc. * * Author: * Santosh Shilimkar <santosh.shilimkar@ti.com> * * Interface functions needed for the SMP. This file is based on arm * realview smp platform. * Copyr...
aixcc-public/challenge-001-exemplar-source
2,448
arch/arm/mach-omap2/omap-smc.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * OMAP34xx and OMAP44xx secure APIs file. * * Copyright (C) 2010 Texas Instruments, Inc. * Written by Santosh Shilimkar <santosh.shilimkar@ti.com> * * Copyright (C) 2012 Ivaylo Dimitrov <freemangordon@abv.bg> * Copyright (C) 2013 Pali Rohár <pali@kernel.org> */ #i...
aixcc-public/challenge-001-exemplar-source
5,678
arch/arm/mach-omap2/sleep33xx.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Low level suspend code for AM33XX SoCs * * Copyright (C) 2012-2018 Texas Instruments Incorporated - https://www.ti.com/ * Dave Gerlach, Vaibhav Bedia */ #include <linux/linkage.h> #include <linux/platform_data/pm33xx.h> #include <linux/ti-emif-sram.h> #include <asm/asse...
aixcc-public/challenge-001-exemplar-source
9,890
arch/arm/mach-omap2/sram243x.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * linux/arch/arm/mach-omap2/sram243x.S * * Omap2 specific functions that need to be run in internal SRAM * * (C) Copyright 2004 * Texas Instruments, <www.ti.com> * Richard Woodruff <r-woodruff2@ti.com> * * Richard Woodruff notes that any changes to this code m...
aixcc-public/challenge-001-exemplar-source
2,784
arch/arm/mach-omap2/sleep24xx.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * linux/arch/arm/mach-omap2/sleep.S * * (C) Copyright 2004 * Texas Instruments, <www.ti.com> * Richard Woodruff <r-woodruff2@ti.com> * * (C) Copyright 2006 Nokia Corporation * Fixed idle loop sleep * Igor Stoppa <igor.stoppa@nokia.com> */ #include <linux/lin...
aixcc-public/challenge-001-exemplar-source
14,885
arch/arm/mach-omap2/sleep34xx.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * (C) Copyright 2007 * Texas Instruments * Karthik Dasu <karthik-dp@ti.com> * * (C) Copyright 2004 * Texas Instruments, <www.ti.com> * Richard Woodruff <r-woodruff2@ti.com> */ #include <linux/linkage.h> #include <asm/assembler.h> #include "omap34xx.h" #includ...
aixcc-public/challenge-001-exemplar-source
9,890
arch/arm/mach-omap2/sram242x.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * linux/arch/arm/mach-omap2/sram242x.S * * Omap2 specific functions that need to be run in internal SRAM * * (C) Copyright 2004 * Texas Instruments, <www.ti.com> * Richard Woodruff <r-woodruff2@ti.com> * * Richard Woodruff notes that any changes to this code m...
aixcc-public/challenge-001-exemplar-source
10,937
arch/arm/mach-omap2/sleep43xx.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Low level suspend code for AM43XX SoCs * * Copyright (C) 2013-2018 Texas Instruments Incorporated - https://www.ti.com/ * Dave Gerlach, Vaibhav Bedia */ #include <linux/linkage.h> #include <linux/ti-emif-sram.h> #include <linux/platform_data/pm33xx.h> #include <asm/asse...
aixcc-public/challenge-001-exemplar-source
10,202
arch/arm/mach-omap2/sleep44xx.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * OMAP44xx sleep code. * * Copyright (C) 2011 Texas Instruments, Inc. * Santosh Shilimkar <santosh.shilimkar@ti.com> */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/smp_scu.h> #include <asm/memory.h> #include <asm/hardware/cache-l2x0.h> #incl...
aixcc-public/challenge-001-exemplar-source
34,195
arch/arm/kernel/entry-armv.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/entry-armv.S * * Copyright (C) 1996,1997,1998 Russell King. * ARM700 fix by Matthew Godbolt (linux-user@willothewisp.demon.co.uk) * nommu support by Hyok S. Choi (hyok.choi@samsung.com) * * Low-level vector interface routines * * Note...
aixcc-public/challenge-001-exemplar-source
16,571
arch/arm/kernel/head.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/head.S * * Copyright (C) 1994-2002 Russell King * Copyright (c) 2003 ARM Limited * All Rights Reserved * * Kernel startup code for all 32-bit CPUs */ #include <linux/linkage.h> #include <linux/init.h> #include <linux/pgtable.h> #includ...
aixcc-public/challenge-001-exemplar-source
12,962
arch/arm/kernel/entry-header.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/init.h> #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/asm-offsets.h> #include <asm/errno.h> #include <asm/thread_info.h> #include <asm/uaccess-asm.h> #include <asm/v7m.h> @ Bad Abort numbers @ ----------------- @ #define BAD_PREFETCH 0 #defi...
aixcc-public/challenge-001-exemplar-source
5,606
arch/arm/kernel/head-common.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/head-common.S * * Copyright (C) 1994-2002 Russell King * Copyright (c) 2003 ARM Limited * All Rights Reserved */ #include <asm/assembler.h> #define ATAG_CORE 0x54410001 #define ATAG_CORE_SIZE ((2*4 + 3*4) >> 2) #define ATAG_CORE_SIZE_EMPT...
aixcc-public/challenge-001-exemplar-source
14,239
arch/arm/kernel/head-nommu.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/head-nommu.S * * Copyright (C) 1994-2002 Russell King * Copyright (C) 2003-2006 Hyok S. Choi * * Common kernel startup code (non-paged MM) */ #include <linux/linkage.h> #include <linux/init.h> #include <linux/errno.h> #include <asm/assem...
aixcc-public/challenge-001-exemplar-source
7,924
arch/arm/kernel/phys2virt.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (C) 1994-2002 Russell King * Copyright (c) 2003, 2020 ARM Limited * All Rights Reserved */ #include <linux/init.h> #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/page.h> #ifdef __ARMEB__ #define LOW_OFFSET 0x4 #define HIGH_OFFSET 0...
aixcc-public/challenge-001-exemplar-source
6,287
arch/arm/kernel/entry-ftrace.S
/* SPDX-License-Identifier: GPL-2.0-only */ #include <asm/assembler.h> #include <asm/ftrace.h> #include <asm/unwind.h> #include "entry-header.S" /* * When compiling with -pg, gcc inserts a call to the mcount routine at the * start of every function. In mcount, apart from the function's address (in * lr), we need...
aixcc-public/challenge-001-exemplar-source
4,815
arch/arm/kernel/vmlinux-xip.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ /* ld script to make ARM Linux kernel * taken from the i386 version by Russell King * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> */ /* No __ro_after_init data in the .rodata section - which will always be ro */ #define RO_AFTER_INIT_DATA #include <linux/sizes.h> #...
aixcc-public/challenge-001-exemplar-source
1,295
arch/arm/kernel/relocate_kernel.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * relocate_kernel.S - put the kernel image in place to boot */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/asm-offsets.h> #include <asm/kexec.h> .align 3 /* not needed for this code, but keeps fncpy() happy */ ENTRY(relocate_new_kernel) adr r7, r...
aixcc-public/challenge-001-exemplar-source
8,427
arch/arm/kernel/iwmmxt.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/iwmmxt.S * * XScale iWMMXt (Concan) context switching and handling * * Initial code: * Copyright (c) 2003, Intel Corporation * * Full lazy switching support, optimizations and more, by Nicolas Pitre * Copyright (c) 2003-2004, MontaVis...
aixcc-public/challenge-001-exemplar-source
3,750
arch/arm/kernel/entry-v7m.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/entry-v7m.S * * Copyright (C) 2008 ARM Ltd. * * Low-level vector interface routines for the ARMv7-M architecture */ #include <asm/memory.h> #include <asm/glue.h> #include <asm/thread_notify.h> #include <asm/v7m.h> #include "entry-header.S" #...
aixcc-public/challenge-001-exemplar-source
3,511
arch/arm/kernel/sigreturn_codes.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * sigreturn_codes.S - code sinpets for sigreturn syscalls * * Created by: Victor Kamensky, 2013-08-13 * Copyright: (C) 2013 Linaro Limited */ #include <asm/assembler.h> #include <asm/asm-offsets.h> #include <asm/unistd.h> /* * For ARM syscalls, we encode the sysca...
aixcc-public/challenge-001-exemplar-source
1,482
arch/arm/kernel/smccc-call.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright (c) 2015, Linaro Limited */ #include <linux/linkage.h> #include <linux/arm-smccc.h> #include <asm/asm-offsets.h> #include <asm/opcodes-sec.h> #include <asm/opcodes-virt.h> #include <asm/unwind.h> /* * Wrap c macros in asm macros to delay expansion until ...
aixcc-public/challenge-001-exemplar-source
1,250
arch/arm/kernel/fiqasm.S
/* * linux/arch/arm/kernel/fiqasm.S * * Derived from code originally in linux/arch/arm/kernel/fiq.c: * * Copyright (C) 1998 Russell King * Copyright (C) 1998, 1999 Phil Blundell * Copyright (C) 2011, Linaro Limited * * FIQ support written by Philip Blundell <philb@gnu.org>, 1998. * * FIQ support re-wr...
aixcc-public/challenge-001-exemplar-source
11,725
arch/arm/kernel/entry-common.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/entry-common.S * * Copyright (C) 2000 Russell King */ #include <asm/assembler.h> #include <asm/unistd.h> #include <asm/ftrace.h> #include <asm/unwind.h> #include <asm/memory.h> #ifdef CONFIG_AEABI #include <asm/unistd-oabi.h> #endif .equ NR...
aixcc-public/challenge-001-exemplar-source
3,513
arch/arm/kernel/vmlinux.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ /* ld script to make ARM Linux kernel * taken from the i386 version by Russell King * Written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> */ #ifdef CONFIG_XIP_KERNEL #include "vmlinux-xip.lds.S" #else #include <linux/pgtable.h> #include <asm/vmlinux.lds.h> #include <asm/cac...
aixcc-public/challenge-001-exemplar-source
5,579
arch/arm/kernel/sleep.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <linux/threads.h> #include <asm/asm-offsets.h> #include <asm/assembler.h> #include <asm/glue-cache.h> #include <asm/glue-proc.h> .text /* * Implementation of MPIDR hash algorithm through shifting * and OR'ing. * * @dst: register containing...
aixcc-public/challenge-001-exemplar-source
5,923
arch/arm/kernel/hyp-stub.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright (c) 2012 Linaro Limited. */ #include <linux/init.h> #include <linux/irqchip/arm-gic-v3.h> #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/virt.h> #ifndef ZIMAGE /* * For the kernel proper, we need to find out the CPU boot mode long ...
aixcc-public/challenge-001-exemplar-source
2,657
arch/arm/kernel/debug.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/kernel/debug.S * * Copyright (C) 1994-1999 Russell King * * 32-bit debugging code */ #include <linux/linkage.h> #include <asm/assembler.h> .text /* * Some debugging routines (useful if you've got MM problems and * printk isn't working). For...
aixcc-public/challenge-001-exemplar-source
20,508
arch/arm/crypto/sha1-armv7-neon.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* sha1-armv7-neon.S - ARM/NEON accelerated SHA-1 transform function * * Copyright © 2013-2014 Jussi Kivilinna <jussi.kivilinna@iki.fi> */ #include <linux/linkage.h> #include <asm/assembler.h> .syntax unified .fpu neon .text /* Context structure */ #define state_...
aixcc-public/challenge-001-exemplar-source
10,472
arch/arm/crypto/chacha-scalar-core.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2018 Google, Inc. */ #include <linux/linkage.h> #include <asm/assembler.h> /* * Design notes: * * 16 registers would be needed to hold the state matrix, but only 14 are * available because 'sp' and 'pc' cannot be used. So we spill the elements * (x8, x...
aixcc-public/challenge-001-exemplar-source
2,566
arch/arm/crypto/sha1-ce-core.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * sha1-ce-core.S - SHA-1 secure hash using ARMv8 Crypto Extensions * * Copyright (C) 2015 Linaro Ltd. * Author: Ard Biesheuvel <ard.biesheuvel@linaro.org> */ #include <linux/linkage.h> #include <asm/assembler.h> .text .arch armv8-a .fpu crypto-neon-fp-armv8 k...
aixcc-public/challenge-001-exemplar-source
13,769
arch/arm/crypto/sha1-armv4-large.S
#define __ARM_ARCH__ __LINUX_ARM_ARCH__ @ SPDX-License-Identifier: GPL-2.0 @ This code is taken from the OpenSSL project but the author (Andy Polyakov) @ has relicensed it under the GPLv2. Therefore this program is free software; @ you can redistribute it and/or modify it under the terms of the GNU General @ Public Li...
aixcc-public/challenge-001-exemplar-source
10,122
arch/arm/crypto/blake2b-neon-core.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * BLAKE2b digest algorithm, NEON accelerated * * Copyright 2020 Google LLC * * Author: Eric Biggers <ebiggers@google.com> */ #include <linux/linkage.h> .text .fpu neon // The arguments to blake2b_compress_neon() STATE .req r0 BLOCK .req r1 NBLOCKS .r...
aixcc-public/challenge-001-exemplar-source
9,627
arch/arm/crypto/blake2s-core.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * BLAKE2s digest algorithm, ARM scalar implementation * * Copyright 2020 Google LLC * * Author: Eric Biggers <ebiggers@google.com> */ #include <linux/linkage.h> #include <asm/assembler.h> // Registers used to hold message words temporarily. There aren't // e...
aixcc-public/challenge-001-exemplar-source
6,891
arch/arm/crypto/ghash-ce-core.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Accelerated GHASH implementation with NEON/ARMv8 vmull.p8/64 instructions. * * Copyright (C) 2015 - 2017 Linaro Ltd. <ard.biesheuvel@linaro.org> */ #include <linux/linkage.h> #include <asm/assembler.h> .arch armv8-a .fpu crypto-neon-fp-armv8 SHASH .req q0 T...
aixcc-public/challenge-001-exemplar-source
22,660
arch/arm/crypto/aes-neonbs-core.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Bit sliced AES using NEON instructions * * Copyright (C) 2017 Linaro Ltd. * Author: Ard Biesheuvel <ard.biesheuvel@linaro.org> */ /* * The algorithm implemented here is described in detail by the paper * 'Faster and Timing-Attack Resistant AES-GCM' by Emilia Kaes...
aixcc-public/challenge-001-exemplar-source
6,854
arch/arm/crypto/crc32-ce-core.S
/* * Accelerated CRC32(C) using ARM CRC, NEON and Crypto Extensions instructions * * Copyright (C) 2016 Linaro Ltd <ard.biesheuvel@linaro.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Softw...
aixcc-public/challenge-001-exemplar-source
2,770
arch/arm/crypto/sha2-ce-core.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * sha2-ce-core.S - SHA-224/256 secure hash using ARMv8 Crypto Extensions * * Copyright (C) 2015 Linaro Ltd. * Author: Ard Biesheuvel <ard.biesheuvel@linaro.org> */ #include <linux/linkage.h> #include <asm/assembler.h> .text .arch armv8-a .fpu crypto-neon-fp-arm...
aixcc-public/challenge-001-exemplar-source
15,074
arch/arm/crypto/chacha-neon-core.S
/* * ChaCha/XChaCha NEON helper functions * * Copyright (C) 2016 Linaro, Ltd. <ard.biesheuvel@linaro.org> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Based on: * Ch...
aixcc-public/challenge-001-exemplar-source
2,337
arch/arm/crypto/nh-neon-core.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * NH - ε-almost-universal hash function, NEON accelerated version * * Copyright 2018 Google LLC * * Author: Eric Biggers <ebiggers@google.com> */ #include <linux/linkage.h> .text .fpu neon KEY .req r0 MESSAGE .req r1 MESSAGE_LEN .req r2 HASH .req r3 PASS0_S...
aixcc-public/challenge-001-exemplar-source
15,545
arch/arm/crypto/aes-ce-core.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * aes-ce-core.S - AES in CBC/CTR/XTS mode using ARMv8 Crypto Extensions * * Copyright (C) 2015 Linaro Ltd <ard.biesheuvel@linaro.org> */ #include <linux/linkage.h> #include <asm/assembler.h> .text .arch armv8-a .fpu crypto-neon-fp-armv8 .align 3 .macro enc_...
aixcc-public/challenge-001-exemplar-source
46,959
arch/arm/crypto/curve25519-core.S
/* SPDX-License-Identifier: GPL-2.0 OR MIT */ /* * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. * * Based on public domain code from Daniel J. Bernstein and Peter Schwabe. This * began from SUPERCOP's curve25519/neon2/scalarmult.s, but has subsequently been * manually reworked...
aixcc-public/challenge-001-exemplar-source
12,047
arch/arm/crypto/crct10dif-ce-core.S
// // Accelerated CRC-T10DIF using ARM NEON and Crypto Extensions instructions // // Copyright (C) 2016 Linaro Ltd <ard.biesheuvel@linaro.org> // Copyright (C) 2019 Google LLC <ebiggers@google.com> // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public...
aixcc-public/challenge-001-exemplar-source
4,440
arch/arm/crypto/aes-cipher-core.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Scalar AES core transform * * Copyright (C) 2017 Linaro Ltd. * Author: Ard Biesheuvel <ard.biesheuvel@linaro.org> */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/cache.h> .text .align 5 rk .req r0 rounds .req r1 in .req r2 out .r...
aixcc-public/challenge-001-exemplar-source
8,639
arch/arm/vfp/vfphw.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/vfp/vfphw.S * * Copyright (C) 2004 ARM Limited. * Written by Deep Blue Solutions Limited. * * This code is called from the kernel's undefined instruction trap. * r9 holds the return address for successful handling. * lr holds the return address ...
aixcc-public/challenge-001-exemplar-source
4,783
arch/arm/mach-lpc32xx/suspend.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * arch/arm/mach-lpc32xx/suspend.S * * Original authors: Dmitry Chigirev, Vitaly Wool <source@mvista.com> * Modified by Kevin Wells <kevin.wells@nxp.com> * * 2005 (c) MontaVista Software, Inc. */ #include <linux/linkage.h> #include <asm/assembler.h> #include "lpc32xx...
aixcc-public/challenge-001-exemplar-source
3,959
arch/arm/nwfpe/entry.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* NetWinder Floating Point Emulator (c) Rebel.COM, 1998 (c) 1998, 1999 Philip Blundell Direct questions, comments to Scott Bambrough <scottb@netwinder.org> */ #include <asm/assembler.h> #include <asm/opcodes.h> /* This is the kernel's entry point into ...
aixcc-public/challenge-001-exemplar-source
8,777
arch/arm/mach-omap1/ams-delta-fiq-handler.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/mach-omap1/ams-delta-fiq-handler.S * * Based on linux/arch/arm/lib/floppydma.S * Renamed and modified to work with 2.6 kernel by Matt Callow * Copyright (C) 1995, 1996 Russell King * Copyright (C) 2004 Pete Trapps * Copyright (C) 2006 Matt Ca...
aixcc-public/challenge-001-exemplar-source
1,437
arch/arm/mach-omap1/sram.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/plat-omap/sram-fn.S * * Functions that need to be run in internal SRAM */ #include <linux/linkage.h> #include <linux/soc/ti/omap1-io.h> #include <asm/assembler.h> #include "hardware.h" #include "iomap.h" .text /* * Reprograms ULPD and CKCTL. */...
aixcc-public/challenge-001-exemplar-source
9,335
arch/arm/mach-omap1/sleep.S
/* * linux/arch/arm/mach-omap1/sleep.S * * Low-level OMAP7XX/1510/1610 sleep/wakeUp support * * Initial SA1110 code: * Copyright (c) 2001 Cliff Brake <cbrake@accelent.com> * * Adapted for PXA by Nicolas Pitre: * Copyright (c) 2002 Monta Vista Software, Inc. * * Support for OMAP1510/1610 by Dirk Behme <dirk.b...
aixcc-public/challenge-001-exemplar-source
3,086
arch/arm/mach-shmobile/headsmp.S
/* SPDX-License-Identifier: GPL-2.0 * * SMP support for R-Mobile / SH-Mobile * * Copyright (C) 2010 Magnus Damm * Copyright (C) 2010 Takashi Yoshii * * Based on vexpress, Copyright (c) 2003 ARM Limited, All Rights Reserved */ #include <linux/init.h> #include <linux/linkage.h> #include <linux/threads.h> #inclu...
aixcc-public/challenge-001-exemplar-source
2,398
arch/arm/lib/copy_to_user.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/copy_to_user.S * * Author: Nicolas Pitre * Created: Sep 29, 2005 * Copyright: MontaVista Software, Inc. */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/unwind.h> /* * Prototype: * * size_t arm_copy_to_user(void *to...
aixcc-public/challenge-001-exemplar-source
1,294
arch/arm/lib/clear_user.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/clear_user.S * * Copyright (C) 1995, 1996,1997,1998 Russell King */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/unwind.h> .text /* Prototype: unsigned long arm_clear_user(void *addr, size_t sz) * Purpose : clear some...
aixcc-public/challenge-001-exemplar-source
2,976
arch/arm/lib/csumpartial.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/csumpartial.S * * Copyright (C) 1995-1998 Russell King */ #include <linux/linkage.h> #include <asm/assembler.h> .text /* * Function: __u32 csum_partial(const char *src, int len, __u32 sum) * Params : r0 = buffer, r1 = len, r2 = checksum *...
aixcc-public/challenge-001-exemplar-source
7,226
arch/arm/lib/backtrace-clang.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/backtrace-clang.S * * Copyright (C) 2019 Nathan Huckleberry * */ #include <linux/kern_levels.h> #include <linux/linkage.h> #include <asm/assembler.h> .text /* fp is 0 or stack frame */ #define frame r4 #define sv_fp r5 #define sv_pc r6 #defi...
aixcc-public/challenge-001-exemplar-source
3,912
arch/arm/lib/div64.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/div64.S * * Optimized computation of 64-bit dividend / 32-bit divisor * * Author: Nicolas Pitre * Created: Oct 5, 2003 * Copyright: Monta Vista Software, Inc. */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/unwind.h...
aixcc-public/challenge-001-exemplar-source
6,834
arch/arm/lib/csumpartialcopygeneric.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/csumpartialcopygeneric.S * * Copyright (C) 1995-2001 Russell King */ #include <asm/assembler.h> /* * unsigned int * csum_partial_copy_xxx(const char *src, char *dst, int len, int sum, ) * r0 = src, r1 = dst, r2 = len, r3 = sum * Returns : ...
aixcc-public/challenge-001-exemplar-source
3,440
arch/arm/lib/backtrace.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/backtrace.S * * Copyright (C) 1995, 1996 Russell King * * 27/03/03 Ian Molton Clean up CONFIG_CPU */ #include <linux/kern_levels.h> #include <linux/linkage.h> #include <asm/assembler.h> .text @ fp is 0 or stack frame #define frame r4 #defin...
aixcc-public/challenge-001-exemplar-source
6,377
arch/arm/lib/copy_template.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/copy_template.s * * Code template for optimized memory copy functions * * Author: Nicolas Pitre * Created: Sep 28, 2005 * Copyright: MontaVista Software, Inc. */ /* * Theory of operation * ------------------- * * This file provides th...
aixcc-public/challenge-001-exemplar-source
1,298
arch/arm/lib/memcpy.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * linux/arch/arm/lib/memcpy.S * * Author: Nicolas Pitre * Created: Sep 28, 2005 * Copyright: MontaVista Software, Inc. */ #include <linux/linkage.h> #include <asm/assembler.h> #include <asm/unwind.h> #define LDR1W_SHIFT 0 #define STR1W_SHIFT 0 .macro ldr1w pt...
aixcc-public/challenge-001-exemplar-source
1,680
arch/arm/lib/ashrdi3.S
/* Copyright 1995, 1996, 1998, 1999, 2000, 2003, 2004, 2005 Free Software Foundation, 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; either version 2, or (at your option) any later version. In...