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
5,111
arch/s390/kernel/vmlinux.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ /* ld script to make s390 Linux kernel * Written by Martin Schwidefsky (schwidefsky@de.ibm.com) */ #include <asm/thread_info.h> #include <asm/page.h> #include <asm/ftrace.lds.h> /* * Put .bss..swapper_pg_dir as the first thing in .bss. This will * make sure it has 16k alignm...
aixcc-public/challenge-001-exemplar-source
3,352
arch/s390/kernel/text_amode31.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Code that needs to run below 2 GB. * * Copyright IBM Corp. 2019 */ #include <linux/linkage.h> #include <asm/asm-extable.h> #include <asm/errno.h> #include <asm/sigp.h> .section .amode31.text,"ax" /* * Simplified version of expoline thunk. The normal thunks can not be ...
aixcc-public/challenge-001-exemplar-source
1,850
arch/s390/kernel/reipl.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright IBM Corp 2000, 2011 * Author(s): Holger Smolinski <Holger.Smolinski@de.ibm.com>, * Denis Joseph Barrow, */ #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/nospec-insn.h> #include <asm/sigp.h> GEN_BR_THUNK %r9 # # Issue "store st...
aixcc-public/challenge-001-exemplar-source
6,267
arch/s390/crypto/crc32be-vx.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Hardware-accelerated CRC-32 variants for Linux on z Systems * * Use the z/Architecture Vector Extension Facility to accelerate the * computing of CRC-32 checksums. * * This CRC-32 implementation algorithm processes the most-significant * bit first (BE). * * Copyright...
aixcc-public/challenge-001-exemplar-source
7,965
arch/s390/crypto/crc32le-vx.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Hardware-accelerated CRC-32 variants for Linux on z Systems * * Use the z/Architecture Vector Extension Facility to accelerate the * computing of bitreflected CRC-32 checksums for IEEE 802.3 Ethernet * and Castagnoli. * * This CRC-32 implementation algorithm is bitrefl...
aixcc-public/challenge-001-exemplar-source
13,354
arch/s390/crypto/chacha-s390.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Original implementation written by Andy Polyakov, @dot-asm. * This is an adaptation of the original code for kernel use. * * Copyright (C) 2006-2019 CRYPTOGAMS by <appro@openssl.org>. All Rights Reserved. */ #include <linux/linkage.h> #include <asm/nospec-insn.h> #inclu...
aixcc-public/challenge-001-exemplar-source
3,716
arch/s390/lib/mem.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * String handling functions. * * Copyright IBM Corp. 2012 */ #include <linux/linkage.h> #include <asm/export.h> #include <asm/nospec-insn.h> GEN_BR_THUNK %r14 /* * void *memmove(void *dest, const void *src, size_t n) */ WEAK(memmove) ENTRY(__memmove) ltgr %r4,%r4 lg...
aixcc-public/challenge-001-exemplar-source
6,528
arch/s390/purgatory/head.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Purgatory setup code * * Copyright IBM Corp. 2018 * * Author(s): Philipp Rudo <prudo@linux.vnet.ibm.com> */ #include <linux/linkage.h> #include <asm/asm-offsets.h> #include <asm/page.h> #include <asm/sigp.h> #include <asm/ptrace.h> /* The purgatory is the code running...
aixcc-public/challenge-001-exemplar-source
9,081
arch/s390/boot/head.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright IBM Corp. 1999, 2010 * * Author(s): Hartmut Penner <hp@de.ibm.com> * Martin Schwidefsky <schwidefsky@de.ibm.com> * Rob van der Heij <rvdhei@iae.nl> * * There are 5 different IPL methods * 1) load the image directly into ram at address 0 and do an PSW...
aixcc-public/challenge-001-exemplar-source
2,418
arch/s390/boot/head_kdump.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * S390 kdump lowlevel functions (new kernel) * * Copyright IBM Corp. 2011 * Author(s): Michael Holzheu <holzheu@linux.vnet.ibm.com> */ #include <asm/sigp.h> #define DATAMOVER_ADDR 0x4000 #define COPY_PAGE_ADDR 0x6000 #ifdef CONFIG_CRASH_DUMP # # kdump entry (new kernel...
aixcc-public/challenge-001-exemplar-source
2,261
arch/s390/boot/vmlinux.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm-generic/vmlinux.lds.h> #include <asm/vmlinux.lds.h> #include <asm/thread_info.h> #include <asm/page.h> #include <asm/sclp.h> #include "boot.h" OUTPUT_FORMAT("elf64-s390", "elf64-s390", "elf64-s390") OUTPUT_ARCH(s390:64-bit) ENTRY(startup) SECTIONS { . = 0; .ipld...
aixcc-public/challenge-001-exemplar-source
3,632
arch/s390/kernel/vdso32/vdso32.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * This is the infamous ld script for the 64 bits vdso * library */ #include <asm/page.h> #include <asm/vdso.h> OUTPUT_FORMAT("elf32-s390", "elf32-s390", "elf32-s390") OUTPUT_ARCH(s390:31-bit) ENTRY(_start) SECTIONS { PROVIDE(_vdso_data = . - __VVAR_PAGES * PAGE_SIZE); #i...
aixcc-public/challenge-001-exemplar-source
3,706
arch/s390/kernel/vdso64/vdso64.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * This is the infamous ld script for the 64 bits vdso * library */ #include <asm/page.h> #include <asm/vdso.h> OUTPUT_FORMAT("elf64-s390", "elf64-s390", "elf64-s390") OUTPUT_ARCH(s390:64-bit) ENTRY(_start) SECTIONS { PROVIDE(_vdso_data = . - __VVAR_PAGES * PAGE_SIZE); #i...
aixcc-public/challenge-001-exemplar-source
1,480
arch/s390/kernel/vdso64/vdso_user_wrapper.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <asm/vdso.h> #include <asm/unistd.h> #include <asm/asm-offsets.h> #include <asm/dwarf.h> #include <asm/ptrace.h> #define WRAPPER_FRAME_SIZE (STACK_FRAME_OVERHEAD+8) /* * Older glibc version called vdso without allocating a stackframe. This wrapper * is just used to al...
aixcc-public/challenge-001-exemplar-source
7,652
arch/x86/xen/xen-asm.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Asm versions of Xen pv-ops, suitable for direct use. * * We only bother with direct forms (ie, vcpu in percpu data) of the * operations here; the indirect forms are better handled in C. */ #include <asm/errno.h> #include <asm/asm-offsets.h> #include <asm/percpu.h> #incl...
aixcc-public/challenge-001-exemplar-source
3,167
arch/x86/xen/xen-head.S
/* SPDX-License-Identifier: GPL-2.0 */ /* Xen-specific pieces of head.S, intended to be included in the right place in head.S */ #ifdef CONFIG_XEN #include <linux/elfnote.h> #include <linux/init.h> #include <asm/boot.h> #include <asm/asm.h> #include <asm/msr.h> #include <asm/page_types.h> #include <asm/percpu.h> #i...
aixcc-public/challenge-001-exemplar-source
2,412
arch/x86/power/hibernate_asm_32.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * This may not use any stack, nor any variable that is not "NoSave": * * Its rewriting one kernel image with another. What is stack in "old" * image could very well be data page in "new" image, and overwriting * your own stack under you is bad idea. */ #include <linux/li...
aixcc-public/challenge-001-exemplar-source
3,828
arch/x86/power/hibernate_asm_64.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Hibernation support for x86-64 * * Copyright 2007 Rafael J. Wysocki <rjw@sisk.pl> * Copyright 2005 Andi Kleen <ak@suse.de> * Copyright 2004 Pavel Machek <pavel@suse.cz> * * swsusp_arch_resume must not use any stack or any nonlocal variables while * copying pages:...
aixcc-public/challenge-001-exemplar-source
1,041
arch/x86/um/setjmp_64.S
/* SPDX-License-Identifier: GPL-2.0 */ # # arch/x86_64/setjmp.S # # setjmp/longjmp for the x86-64 architecture # # # The jmp_buf is assumed to contain the following, in order: # %rbx # %rsp (post-return) # %rbp # %r12 # %r13 # %r14 # %r15 # <return address> # .text .align 4 .globl kernel_setjmp .type kernel_setjm...
aixcc-public/challenge-001-exemplar-source
4,692
arch/x86/um/checksum_32.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * IP/TCP/UDP checksumming routines * * Authors: Jorge Cwik, <j...
aixcc-public/challenge-001-exemplar-source
1,072
arch/x86/um/setjmp_32.S
/* SPDX-License-Identifier: GPL-2.0 */ # # arch/i386/setjmp.S # # setjmp/longjmp for the i386 architecture # # # The jmp_buf is assumed to contain the following, in order: # %ebx # %esp # %ebp # %esi # %edi # <return address> # .text .align 4 .globl kernel_setjmp .type kernel_setjmp, @function kernel_setjmp: #ifd...
aixcc-public/challenge-001-exemplar-source
3,985
arch/x86/kernel/ftrace_32.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2017 Steven Rostedt, VMware Inc. */ #include <linux/linkage.h> #include <asm/page_types.h> #include <asm/segment.h> #include <asm/export.h> #include <asm/ftrace.h> #include <asm/nospec-branch.h> #include <asm/frame.h> #include <asm/asm-offsets.h> #ifdef CO...
aixcc-public/challenge-001-exemplar-source
3,745
arch/x86/kernel/verify_cpu.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * * verify_cpu.S - Code for cpu long mode and SSE verification. This * code has been borrowed from boot/setup.S and was introduced by * Andi Kleen. * * Copyright (c) 2007 Andi Kleen (ak@suse.de) * Copyright (c) 2007 Eric Biederman (ebiederm@xmission.com) * Copyr...
aixcc-public/challenge-001-exemplar-source
8,465
arch/x86/kernel/ftrace_64.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright (C) 2014 Steven Rostedt, Red Hat Inc */ #include <linux/linkage.h> #include <linux/cfi_types.h> #include <asm/ptrace.h> #include <asm/ftrace.h> #include <asm/export.h> #include <asm/nospec-branch.h> #include <asm/unwind_hints.h> #include <asm/frame.h> .code64...
aixcc-public/challenge-001-exemplar-source
14,131
arch/x86/kernel/head_32.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * * Copyright (C) 1991, 1992 Linus Torvalds * * Enhanced CPU detection and feature setting code by Mike Jagdis * and Martin Mares, November 1997. */ .text #include <linux/threads.h> #include <linux/init.h> #include <linux/linkage.h> #include <asm/segment.h> #include ...
aixcc-public/challenge-001-exemplar-source
2,480
arch/x86/kernel/sev_verify_cbit.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * sev_verify_cbit.S - Code for verification of the C-bit position reported * by the Hypervisor when running with SEV enabled. * * Copyright (c) 2020 Joerg Roedel (jroedel@suse.de) * * sev_verify_cbit() is called before switching to a new long-mode page-table ...
aixcc-public/challenge-001-exemplar-source
6,078
arch/x86/kernel/relocate_kernel_32.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * relocate_kernel.S - put the kernel image in place to boot * Copyright (C) 2002-2004 Eric Biederman <ebiederm@xmission.com> */ #include <linux/linkage.h> #include <asm/page_types.h> #include <asm/kexec.h> #include <asm/nospec-branch.h> #include <asm/processor-flags.h...
aixcc-public/challenge-001-exemplar-source
13,830
arch/x86/kernel/vmlinux.lds.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * ld script for the x86 kernel * * Historic 32-bit version written by Martin Mares <mj@atrey.karlin.mff.cuni.cz> * * Modernisation, unification and other changes and fixes: * Copyright (C) 2007-2009 Sam Ravnborg <sam@ravnborg.org> * * * Don't define absolute symbols...
aixcc-public/challenge-001-exemplar-source
6,526
arch/x86/kernel/relocate_kernel_64.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * relocate_kernel.S - put the kernel image in place to boot * Copyright (C) 2002-2005 Eric Biederman <ebiederm@xmission.com> */ #include <linux/linkage.h> #include <asm/page_types.h> #include <asm/kexec.h> #include <asm/processor-flags.h> #include <asm/pgtable_types.h...
aixcc-public/challenge-001-exemplar-source
18,730
arch/x86/kernel/head_64.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * linux/arch/x86/kernel/head_64.S -- start in 32bit and switch to 64bit * * Copyright (C) 2000 Andrea Arcangeli <andrea@suse.de> SuSE * Copyright (C) 2000 Pavel Machek <pavel@suse.cz> * Copyright (C) 2000 Karsten Keil <kkeil@suse.de> * Copyright (C) 2001,2002 Andi Kl...
aixcc-public/challenge-001-exemplar-source
38,603
arch/x86/crypto/aria-aesni-avx-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * ARIA Cipher 16-way parallel algorithm (AVX) * * Copyright (c) 2022 Taehee Yoo <ap420073@gmail.com> * */ #include <linux/linkage.h> #include <linux/cfi_types.h> #include <asm/frame.h> /* struct aria_ctx: */ #define enc_key 0 #define dec_key 272 #define rounds 5...
aixcc-public/challenge-001-exemplar-source
11,133
arch/x86/crypto/crct10dif-pcl-asm_64.S
######################################################################## # Implement fast CRC-T10DIF computation with SSE and PCLMULQDQ instructions # # Copyright (c) 2013, Intel Corporation # # Authors: # Erdinc Ozturk <erdinc.ozturk@intel.com> # Vinodh Gopal <vinodh.gopal@intel.com> # James Guilford <jame...
aixcc-public/challenge-001-exemplar-source
10,447
arch/x86/crypto/camellia-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Camellia Cipher Algorithm (x86_64) * * Copyright (C) 2012 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> */ #include <linux/linkage.h> .file "camellia-x86_64-asm_64.S" .text .extern camellia_sp10011110; .extern camellia_sp22000222; .extern camellia_sp03303033; .ex...
aixcc-public/challenge-001-exemplar-source
14,288
arch/x86/crypto/sha1_avx2_x86_64_asm.S
/* * Implement fast SHA-1 with AVX2 instructions. (x86_64) * * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * * GPL LICENSE SUMMARY * * Copyright(c) 2014 Intel Corporation. * * This program is free software; you can redist...
aixcc-public/challenge-001-exemplar-source
17,745
arch/x86/crypto/sha256-ssse3-asm.S
######################################################################## # Implement fast SHA-256 with SSSE3 instructions. (x86_64) # # Copyright (C) 2013 Intel Corporation. # # Authors: # James Guilford <james.guilford@intel.com> # Kirk Yap <kirk.s.yap@intel.com> # Tim Chen <tim.c.chen@linux.intel.com> # #...
aixcc-public/challenge-001-exemplar-source
2,741
arch/x86/crypto/nh-sse2-x86_64.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * NH - ε-almost-universal hash function, x86_64 SSE2 accelerated * * Copyright 2018 Google LLC * * Author: Eric Biggers <ebiggers@google.com> */ #include <linux/linkage.h> #define PASS0_SUMS %xmm0 #define PASS1_SUMS %xmm1 #define PASS2_SUMS %xmm2 #define PASS3_SUMS ...
aixcc-public/challenge-001-exemplar-source
21,581
arch/x86/crypto/serpent-avx2-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * x86_64/AVX2 assembler optimized version of Serpent * * Copyright © 2012-2013 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> * * Based on AVX assembler implementation of Serpent by: * Copyright © 2012 Johannes Goetzfried * <Johannes.Goetzfried@informatik.stud...
aixcc-public/challenge-001-exemplar-source
11,411
arch/x86/crypto/sha1_ssse3_asm.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * This is a SIMD SHA-1 implementation. It requires the Intel(R) Supplemental * SSE3 instruction set extensions introduced in Intel Core Microarchitecture * processors. CPUs supporting Intel(R) AVX extensions will get an additional * boost. * * This work was inspi...
aixcc-public/challenge-001-exemplar-source
7,550
arch/x86/crypto/twofish-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2006 by Joachim Fritschi, <jfritschi@freenet.de> * * * *******************************************...
aixcc-public/challenge-001-exemplar-source
1,080
arch/x86/crypto/glue_helper-asm-avx.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Shared glue code for 128bit block ciphers, AVX assembler macros * * Copyright © 2012-2013 Jussi Kivilinna <jussi.kivilinna@iki.fi> */ #define load_8way(src, x0, x1, x2, x3, x4, x5, x6, x7) \ vmovdqu (0*16)(src), x0; \ vmovdqu (1*16)(src), x1; \ vmovdqu (2*16)...
aixcc-public/challenge-001-exemplar-source
13,107
arch/x86/crypto/sha512-ssse3-asm.S
######################################################################## # Implement fast SHA-512 with SSSE3 instructions. (x86_64) # # Copyright (C) 2013 Intel Corporation. # # Authors: # James Guilford <james.guilford@intel.com> # Kirk Yap <kirk.s.yap@intel.com> # David Cote <david.m.cote@intel.com> # ...
aixcc-public/challenge-001-exemplar-source
25,009
arch/x86/crypto/chacha-avx2-x86_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * ChaCha 256-bit cipher algorithm, x64 AVX2 functions * * Copyright (C) 2015 Martin Willi */ #include <linux/linkage.h> .section .rodata.cst32.ROT8, "aM", @progbits, 32 .align 32 ROT8: .octa 0x0e0d0c0f0a09080b0605040702010003 .octa 0x0e0d0c0f0a09080b060504070201...
aixcc-public/challenge-001-exemplar-source
9,043
arch/x86/crypto/cast6-avx-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Cast6 Cipher 8-way parallel algorithm (AVX/x86_64) * * Copyright (C) 2012 Johannes Goetzfried * <Johannes.Goetzfried@informatik.stud.uni-erlangen.de> * * Copyright © 2012-2013 Jussi Kivilinna <jussi.kivilinna@iki.fi> */ #include <linux/linkage.h> #include...
aixcc-public/challenge-001-exemplar-source
3,737
arch/x86/crypto/nh-avx2-x86_64.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * NH - ε-almost-universal hash function, x86_64 AVX2 accelerated * * Copyright 2018 Google LLC * * Author: Eric Biggers <ebiggers@google.com> */ #include <linux/linkage.h> #define PASS0_SUMS %ymm0 #define PASS1_SUMS %ymm1 #define PASS2_SUMS %ymm2 #define PASS3_SUMS ...
aixcc-public/challenge-001-exemplar-source
5,291
arch/x86/crypto/crc32-pclmul_asm.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2012 Xyratex Technology Limited * * Using hardware provided PCLMULQDQ instruction to accelerate the CRC32 * calculation. * CRC32 polynomial:0x04c11db7(BE)/0xEDB88320(LE) * PCLMULQDQ is a new instruction in Intel SSE4.2, the reference can be found * at: ...
aixcc-public/challenge-001-exemplar-source
100,008
arch/x86/crypto/aesni-intel_avx-x86_64.S
######################################################################## # Copyright (c) 2013, Intel Corporation # # This software is available to you under a choice of one of two # licenses. You may choose to be licensed under the terms of the GNU # General Public License (GPL) Version 2, available from the file # CO...
aixcc-public/challenge-001-exemplar-source
18,119
arch/x86/crypto/sm4-aesni-avx-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * SM4 Cipher Algorithm, AES-NI/AVX optimized. * as specified in * https://tools.ietf.org/id/draft-ribose-cfrg-sm4-10.html * * Copyright (C) 2018 Markku-Juhani O. Saarinen <mjos@iki.fi> * Copyright (C) 2020 Jussi Kivilinna <jussi.kivilinna@iki.fi> * Copyright (c)...
aixcc-public/challenge-001-exemplar-source
10,654
arch/x86/crypto/sha256_ni_asm.S
/* * Intel SHA Extensions optimized implementation of a SHA-256 update function * * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * * GPL LICENSE SUMMARY * * Copyright(c) 2015 Intel Corporation. * * This program is free sof...
aixcc-public/challenge-001-exemplar-source
15,737
arch/x86/crypto/sm4-aesni-avx2-asm_64.S
// SPDX-License-Identifier: GPL-2.0-or-later /* * SM4 Cipher Algorithm, AES-NI/AVX2 optimized. * as specified in * https://tools.ietf.org/id/draft-ribose-cfrg-sm4-10.html * * Copyright (C) 2018 Markku-Juhani O. Saarinen <mjos@iki.fi> * Copyright (C) 2020 Jussi Kivilinna <jussi.kivilinna@iki.fi> * Copyright (c) 2...
aixcc-public/challenge-001-exemplar-source
20,441
arch/x86/crypto/chacha-avx512vl-x86_64.S
/* SPDX-License-Identifier: GPL-2.0+ */ /* * ChaCha 256-bit cipher algorithm, x64 AVX-512VL functions * * Copyright (C) 2018 Martin Willi */ #include <linux/linkage.h> .section .rodata.cst32.CTR2BL, "aM", @progbits, 32 .align 32 CTR2BL: .octa 0x00000000000000000000000000000000 .octa 0x000000000000000000000000000...
aixcc-public/challenge-001-exemplar-source
17,216
arch/x86/crypto/chacha-ssse3-x86_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * ChaCha 256-bit cipher algorithm, x64 SSSE3 functions * * Copyright (C) 2015 Martin Willi */ #include <linux/linkage.h> #include <asm/frame.h> .section .rodata.cst16.ROT8, "aM", @progbits, 16 .align 16 ROT8: .octa 0x0e0d0c0f0a09080b0605040702010003 .section .rod...
aixcc-public/challenge-001-exemplar-source
9,013
arch/x86/crypto/twofish-avx-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Twofish Cipher 8-way parallel algorithm (AVX/x86_64) * * Copyright (C) 2012 Johannes Goetzfried * <Johannes.Goetzfried@informatik.stud.uni-erlangen.de> * * Copyright © 2012-2013 Jussi Kivilinna <jussi.kivilinna@iki.fi> */ #include <linux/linkage.h> #inclu...
aixcc-public/challenge-001-exemplar-source
28,735
arch/x86/crypto/camellia-aesni-avx2-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * x86_64/AVX2/AES-NI assembler implementation of Camellia * * Copyright © 2013 Jussi Kivilinna <jussi.kivilinna@iki.fi> */ #include <linux/linkage.h> #include <asm/frame.h> #define CAMELLIA_TABLE_BYTE_LEN 272 /* struct camellia_ctx: */ #define key_table 0 #defin...
aixcc-public/challenge-001-exemplar-source
18,538
arch/x86/crypto/serpent-sse2-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Serpent Cipher 8-way parallel algorithm (x86_64/SSE2) * * Copyright (C) 2011 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> * * Based on crypto/serpent.c by * Copyright (C) 2002 Dag Arne Osvik <osvik@ii.uib.no> * 2003 Herbert Valerio Riedel <hvr@gn...
aixcc-public/challenge-001-exemplar-source
6,589
arch/x86/crypto/twofish-x86_64-asm_64-3way.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Twofish Cipher 3-way parallel algorithm (x86_64) * * Copyright (C) 2011 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> */ #include <linux/linkage.h> .file "twofish-x86_64-asm-3way.S" .text /* structure of crypto context */ #define s0 0 #define s1 1024 #define s2 2...
aixcc-public/challenge-001-exemplar-source
9,346
arch/x86/crypto/polyval-clmulni_asm.S
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright 2021 Google LLC */ /* * This is an efficient implementation of POLYVAL using intel PCLMULQDQ-NI * instructions. It works on 8 blocks at a time, by precomputing the first 8 * keys powers h^8, ..., h^1 in the POLYVAL finite field. This precomputation * allows us...
aixcc-public/challenge-001-exemplar-source
7,139
arch/x86/crypto/blake2s-core.S
/* SPDX-License-Identifier: GPL-2.0 OR MIT */ /* * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. * Copyright (C) 2017-2019 Samuel Neves <sneves@dei.uc.pt>. All Rights Reserved. */ #include <linux/linkage.h> .section .rodata.cst32.BLAKE2S_IV, "aM", @progbits, 32 .align 32 IV: .o...
aixcc-public/challenge-001-exemplar-source
13,390
arch/x86/crypto/crc32c-pcl-intel-asm_64.S
/* * Implement fast CRC32C with PCLMULQDQ instructions. (x86_64) * * The white papers on CRC32C calculations with PCLMULQDQ instruction can be * downloaded from: * http://www.intel.com/content/dam/www/public/us/en/documents/white-papers/crc-iscsi-polynomial-crc32-instruction-paper.pdf * http://www.intel.com/conte...
aixcc-public/challenge-001-exemplar-source
84,373
arch/x86/crypto/aesni-intel_asm.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Implement AES algorithm in Intel AES-NI instructions. * * The white paper of AES-NI instructions can be downloaded from: * http://softwarecommunity.intel.com/isn/downloads/intelavx/AES-Instructions-Set_WP.pdf * * Copyright (C) 2008, Intel Corp. * Author: ...
aixcc-public/challenge-001-exemplar-source
5,995
arch/x86/crypto/blowfish-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Blowfish Cipher Algorithm (x86_64) * * Copyright (C) 2011 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> */ #include <linux/linkage.h> #include <linux/cfi_types.h> .file "blowfish-x86_64-asm.S" .text /* structure of crypto context */ #define p 0 #define s0 ((16 + ...
aixcc-public/challenge-001-exemplar-source
26,147
arch/x86/crypto/des3_ede-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * des3_ede-asm_64.S - x86-64 assembly implementation of 3DES cipher * * Copyright © 2014 Jussi Kivilinna <jussi.kivilinna@iki.fi> */ #include <linux/linkage.h> .file "des3_ede-asm_64.S" .text #define s1 .L_s1 #define s2 ((s1) + (64*8)) #define s3 ((s2) + (64*8...
aixcc-public/challenge-001-exemplar-source
12,884
arch/x86/crypto/cast5-avx-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Cast5 Cipher 16-way parallel algorithm (AVX/x86_64) * * Copyright (C) 2012 Johannes Goetzfried * <Johannes.Goetzfried@informatik.stud.uni-erlangen.de> * * Copyright © 2012 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> */ #include <linux/linkage.h> #include <...
aixcc-public/challenge-001-exemplar-source
21,576
arch/x86/crypto/serpent-avx-x86_64-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Serpent Cipher 8-way parallel algorithm (x86_64/AVX) * * Copyright (C) 2012 Johannes Goetzfried * <Johannes.Goetzfried@informatik.stud.uni-erlangen.de> * * Copyright © 2011-2013 Jussi Kivilinna <jussi.kivilinna@iki.fi> */ #include <linux/linkage.h> #inclu...
aixcc-public/challenge-001-exemplar-source
17,511
arch/x86/crypto/sha256-avx-asm.S
######################################################################## # Implement fast SHA-256 with AVX1 instructions. (x86_64) # # Copyright (C) 2013 Intel Corporation. # # Authors: # James Guilford <james.guilford@intel.com> # Kirk Yap <kirk.s.yap@intel.com> # Tim Chen <tim.c.chen@linux.intel.com> # # ...
aixcc-public/challenge-001-exemplar-source
13,684
arch/x86/crypto/serpent-sse2-i586-asm_32.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Serpent Cipher 4-way parallel algorithm (i586/SSE2) * * Copyright (C) 2011 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> * * Based on crypto/serpent.c by * Copyright (C) 2002 Dag Arne Osvik <osvik@ii.uib.no> * 2003 Herbert Valerio Riedel <hvr@gnu....
aixcc-public/challenge-001-exemplar-source
17,159
arch/x86/crypto/sm3-avx-asm_64.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * SM3 AVX accelerated transform. * specified in: https://datatracker.ietf.org/doc/html/draft-sca-cfrg-sm3-02 * * Copyright (C) 2021 Jussi Kivilinna <jussi.kivilinna@iki.fi> * Copyright (C) 2021 Tianjia Zhang <tianjia.zhang@linux.alibaba.com> */ /* Based on SM3 A...
aixcc-public/challenge-001-exemplar-source
12,448
arch/x86/crypto/aes_ctrby8_avx-x86_64.S
/* SPDX-License-Identifier: GPL-2.0-only OR BSD-3-Clause */ /* * AES CTR mode by8 optimization with AVX instructions. (x86_64) * * Copyright(c) 2014 Intel Corporation. * * Contact Information: * James Guilford <james.guilford@intel.com> * Sean Gulley <sean.m.gulley@intel.com> * Chandramouli Narayanan <mouli@lin...
aixcc-public/challenge-001-exemplar-source
8,357
arch/x86/crypto/twofish-i586-asm_32.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2006 by Joachim Fritschi, <jfritschi@freenet.de> * * * *******************************************...
aixcc-public/challenge-001-exemplar-source
14,176
arch/x86/crypto/aegis128-aesni-asm.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * AES-NI + SSE2 implementation of AEGIS-128 * * Copyright (c) 2017-2018 Ondrej Mosnacek <omosnacek@gmail.com> * Copyright (C) 2017-2018 Red Hat, Inc. All rights reserved. */ #include <linux/linkage.h> #include <linux/cfi_types.h> #include <asm/frame.h> #define STATE...
aixcc-public/challenge-001-exemplar-source
12,932
arch/x86/crypto/sha512-avx-asm.S
######################################################################## # Implement fast SHA-512 with AVX instructions. (x86_64) # # Copyright (C) 2013 Intel Corporation. # # Authors: # James Guilford <james.guilford@intel.com> # Kirk Yap <kirk.s.yap@intel.com> # David Cote <david.m.cote@intel.com> # T...
aixcc-public/challenge-001-exemplar-source
26,630
arch/x86/crypto/camellia-aesni-avx-asm_64.S
/* * x86_64/AVX/AES-NI assembler implementation of Camellia * * Copyright © 2012-2013 Jussi Kivilinna <jussi.kivilinna@iki.fi> * * This program 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 ver...
aixcc-public/challenge-001-exemplar-source
1,188
arch/x86/crypto/glue_helper-asm-avx2.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Shared glue code for 128bit block ciphers, AVX2 assembler macros * * Copyright © 2012-2013 Jussi Kivilinna <jussi.kivilinna@mbnet.fi> */ #define load_16way(src, x0, x1, x2, x3, x4, x5, x6, x7) \ vmovdqu (0*32)(src), x0; \ vmovdqu (1*32)(src), x1; \ vmovdqu (2...
aixcc-public/challenge-001-exemplar-source
7,922
arch/x86/crypto/sha1_ni_asm.S
/* * Intel SHA Extensions optimized implementation of a SHA-1 update function * * This file is provided under a dual BSD/GPLv2 license. When using or * redistributing this file, you may do so under either license. * * GPL LICENSE SUMMARY * * Copyright(c) 2015 Intel Corporation. * * This program is free softw...
aixcc-public/challenge-001-exemplar-source
23,683
arch/x86/crypto/sha256-avx2-asm.S
######################################################################## # Implement fast SHA-256 with AVX2 instructions. (x86_64) # # Copyright (C) 2013 Intel Corporation. # # Authors: # James Guilford <james.guilford@intel.com> # Kirk Yap <kirk.s.yap@intel.com> # Tim Chen <tim.c.chen@linux.intel.com> # # ...
aixcc-public/challenge-001-exemplar-source
24,567
arch/x86/crypto/sha512-avx2-asm.S
######################################################################## # Implement fast SHA-512 with AVX2 instructions. (x86_64) # # Copyright (C) 2013 Intel Corporation. # # Authors: # James Guilford <james.guilford@intel.com> # Kirk Yap <kirk.s.yap@intel.com> # David Cote <david.m.cote@intel.com> # ...
aixcc-public/challenge-001-exemplar-source
2,785
arch/x86/crypto/ghash-clmulni-intel_asm.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Accelerated GHASH implementation with Intel PCLMULQDQ-NI * instructions. This file contains accelerated part of ghash * implementation. More information about PCLMULQDQ can be found at: * * http://software.intel.com/en-us/articles/carry-less-multiplication-and-its-u...
aixcc-public/challenge-001-exemplar-source
4,056
arch/x86/math-emu/polynom_Xsig.S
/* SPDX-License-Identifier: GPL-2.0 */ /*---------------------------------------------------------------------------+ | polynomial_Xsig.S | | | | Fixed point arithmetic polynomial evaluat...
aixcc-public/challenge-001-exemplar-source
10,167
arch/x86/math-emu/div_Xsig.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "div_Xsig.S" /*---------------------------------------------------------------------------+ | div_Xsig.S | | | | Division subroutine f...
aixcc-public/challenge-001-exemplar-source
18,076
arch/x86/math-emu/reg_round.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "reg_round.S" /*---------------------------------------------------------------------------+ | reg_round.S | | | | Rounding/truncation/...
aixcc-public/challenge-001-exemplar-source
3,412
arch/x86/math-emu/round_Xsig.S
/* SPDX-License-Identifier: GPL-2.0 */ /*---------------------------------------------------------------------------+ | round_Xsig.S | | | | Copyright (C) 1992,1993,1994,1995 ...
aixcc-public/challenge-001-exemplar-source
11,040
arch/x86/math-emu/wm_sqrt.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "wm_sqrt.S" /*---------------------------------------------------------------------------+ | wm_sqrt.S | | | | Fixed point arithmetic...
aixcc-public/challenge-001-exemplar-source
2,528
arch/x86/math-emu/shr_Xsig.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "shr_Xsig.S" /*---------------------------------------------------------------------------+ | shr_Xsig.S | | | | 12 byte right shift f...
aixcc-public/challenge-001-exemplar-source
3,715
arch/x86/math-emu/reg_u_mul.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "reg_u_mul.S" /*---------------------------------------------------------------------------+ | reg_u_mul.S | | | | Core multiplication ...
aixcc-public/challenge-001-exemplar-source
4,321
arch/x86/math-emu/mul_Xsig.S
/* SPDX-License-Identifier: GPL-2.0 */ /*---------------------------------------------------------------------------+ | mul_Xsig.S | | | | Multiply a 12 byte fixed point number by ...
aixcc-public/challenge-001-exemplar-source
6,189
arch/x86/math-emu/reg_u_sub.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "reg_u_sub.S" /*---------------------------------------------------------------------------+ | reg_u_sub.S | | | | Core floating point ...
aixcc-public/challenge-001-exemplar-source
1,621
arch/x86/math-emu/div_small.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "div_small.S" /*---------------------------------------------------------------------------+ | div_small.S | | | | Divide a 64 bit inte...
aixcc-public/challenge-001-exemplar-source
4,044
arch/x86/math-emu/reg_u_add.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "reg_u_add.S" /*---------------------------------------------------------------------------+ | reg_u_add.S | | | | Add two valid (TAG_V...
aixcc-public/challenge-001-exemplar-source
3,709
arch/x86/math-emu/reg_norm.S
/* SPDX-License-Identifier: GPL-2.0 */ /*---------------------------------------------------------------------------+ | reg_norm.S | | | | Copyright (C) 1992,1993,1994,1995,1997 ...
aixcc-public/challenge-001-exemplar-source
6,312
arch/x86/math-emu/wm_shrx.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "wm_shrx.S" /*---------------------------------------------------------------------------+ | wm_shrx.S | | | | 64 bit right shift fun...
aixcc-public/challenge-001-exemplar-source
12,455
arch/x86/math-emu/reg_u_div.S
/* SPDX-License-Identifier: GPL-2.0 */ .file "reg_u_div.S" /*---------------------------------------------------------------------------+ | reg_u_div.S | | | | Divide one FPU_REG b...
aixcc-public/challenge-001-exemplar-source
2,507
arch/x86/lib/hweight.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <asm/export.h> #include <asm/asm.h> /* * unsigned int __sw_hweight32(unsigned int w) * %rdi: w */ SYM_FUNC_START(__sw_hweight32) #ifdef CONFIG_X86_64 movl %edi, %eax # w #endif __ASM_SIZE(push,) %__ASM_REG(dx) movl %eax, %edx # w ...
aixcc-public/challenge-001-exemplar-source
2,667
arch/x86/lib/atomic64_386_32.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * atomic64_t for 386/486 * * Copyright © 2010 Luca Barbieri */ #include <linux/linkage.h> #include <asm/alternative.h> /* if you want SMP support, implement these with real spinlocks */ .macro IRQ_SAVE reg pushfl cli .endm .macro IRQ_RESTORE reg popfl .endm ...
aixcc-public/challenge-001-exemplar-source
3,582
arch/x86/lib/memcpy_64.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright 2002 Andi Kleen */ #include <linux/linkage.h> #include <linux/cfi_types.h> #include <asm/errno.h> #include <asm/cpufeatures.h> #include <asm/alternative.h> #include <asm/export.h> .pushsection .noinstr.text, "ax" /* * We build a jump to memcpy_orig by default...
aixcc-public/challenge-001-exemplar-source
9,550
arch/x86/lib/copy_user_64.S
/* SPDX-License-Identifier: GPL-2.0-only */ /* * Copyright 2008 Vitaly Mayatskikh <vmayatsk@redhat.com> * Copyright 2002 Andi Kleen, SuSE Labs. * * Functions to copy from and to user space. */ #include <linux/linkage.h> #include <asm/current.h> #include <asm/asm-offsets.h> #include <asm/thread_info.h> #include <a...
aixcc-public/challenge-001-exemplar-source
7,858
arch/x86/lib/retpoline.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/stringify.h> #include <linux/linkage.h> #include <asm/dwarf2.h> #include <asm/cpufeatures.h> #include <asm/alternative.h> #include <asm/export.h> #include <asm/nospec-branch.h> #include <asm/unwind_hints.h> #include <asm/frame.h> #include <asm/nops.h> .section ....
aixcc-public/challenge-001-exemplar-source
3,747
arch/x86/lib/clear_page_64.S
/* SPDX-License-Identifier: GPL-2.0-only */ #include <linux/linkage.h> #include <asm/asm.h> #include <asm/export.h> /* * Most CPUs support enhanced REP MOVSB/STOSB instructions. It is * recommended to use this when possible and we do use them by default. * If enhanced REP MOVSB/STOSB is not available, try to use fa...
aixcc-public/challenge-001-exemplar-source
2,817
arch/x86/lib/memset_64.S
/* SPDX-License-Identifier: GPL-2.0 */ /* Copyright 2002 Andi Kleen, SuSE Labs */ #include <linux/linkage.h> #include <asm/cpufeatures.h> #include <asm/alternative.h> #include <asm/export.h> /* * ISO C memset - set a memory block to a byte value. This function uses fast * string to get better performance than the o...
aixcc-public/challenge-001-exemplar-source
1,698
arch/x86/lib/msr-reg.S
/* SPDX-License-Identifier: GPL-2.0 */ #include <linux/linkage.h> #include <linux/errno.h> #include <asm/asm.h> #include <asm/msr.h> #ifdef CONFIG_X86_64 /* * int {rdmsr,wrmsr}_safe_regs(u32 gprs[8]); * * reg layout: u32 gprs[eax, ecx, edx, ebx, esp, ebp, esi, edi] * */ .macro op_safe_regs op SYM_FUNC_START(\op\(...
aixcc-public/challenge-001-exemplar-source
9,059
arch/x86/lib/checksum_32.S
/* SPDX-License-Identifier: GPL-2.0-or-later */ /* * INET An implementation of the TCP/IP protocol suite for the LINUX * operating system. INET is implemented using the BSD Socket * interface as the means of communication with the user level. * * IP/TCP/UDP checksumming routines * * Authors: Jorge Cwik, <j...
aixcc-public/challenge-001-exemplar-source
4,335
arch/x86/lib/csum-copy_64.S
/* * Copyright 2002, 2003 Andi Kleen, SuSE Labs. * * 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. No warranty for anything given at all. */ #include <linux/linkage.h> #include <asm/errno.h> #in...