repo_id
string
size
int64
file_path
string
content
string
alibaba/LVS
9,355
kernel/arch/sparc/kernel/trampoline_64.S
/* * trampoline.S: Jump start slave processors on sparc64. * * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) */ #include <linux/init.h> #include <asm/head.h> #include <asm/asi.h> #include <asm/lsu.h> #include <asm/dcr.h> #include <asm/dcu.h> #include <asm/pstate.h> #include <asm/page.h> #include <as...
alibaba/LVS
6,337
kernel/arch/sparc/kernel/pci_sun4v_asm.S
/* pci_sun4v_asm: Hypervisor calls for PCI support. * * Copyright (C) 2006, 2008 David S. Miller <davem@davemloft.net> */ #include <linux/linkage.h> #include <asm/hypervisor.h> /* %o0: devhandle * %o1: tsbid * %o2: num ttes * %o3: io_attributes * %o4: io_page_list phys address * * returns %o0: -status...
alibaba/LVS
34,533
kernel/arch/sparc/kernel/entry.S
/* arch/sparc/kernel/entry.S: Sparc trap low-level entry points. * * Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net) * Copyright (C) 1996 Eddie C. Dost (ecd@skynet.be) * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx) * Copyright (C) 1996-1999 Jakub Jelinek (jj@sunsite.mff.cuni.cz) ...
alibaba/LVS
6,762
kernel/arch/sparc/kernel/rtrap_32.S
/* * rtrap.S: Return from Sparc trap low-level code. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/page.h> #include <asm/ptrace.h> #include <asm/psr.h> #include <asm/asi.h> #include <asm/smp.h> #include <asm/contregs.h> #include <asm/winmacro.h> #include <asm/asmmacro.h> #include...
alibaba/LVS
3,119
kernel/arch/sparc/kernel/trampoline_32.S
/* * trampoline.S: SMP cpu boot-up trampoline code. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) */ #include <linux/init.h> #include <asm/head.h> #include <asm/psr.h> #include <asm/page.h> #include <asm/asi.h> #include <asm/ptrace.h> #...
alibaba/LVS
10,569
kernel/arch/sparc/kernel/sun4v_tlb_miss.S
/* sun4v_tlb_miss.S: Sun4v TLB miss handlers. * * Copyright (C) 2006 <davem@davemloft.net> */ .text .align 32 /* Load ITLB fault information into VADDR and CTX, using BASE. */ #define LOAD_ITLB_INFO(BASE, VADDR, CTX) \ ldx [BASE + HV_FAULT_I_ADDR_OFFSET], VADDR; \ ldx [BASE + HV_FAULT_I_CTX_OFFSET], CTX; /...
alibaba/LVS
8,667
kernel/arch/sparc/kernel/sun4v_ivec.S
/* sun4v_ivec.S: Sun4v interrupt vector handling. * * Copyright (C) 2006 <davem@davemloft.net> */ #include <asm/cpudata.h> #include <asm/intr_queue.h> #include <asm/pil.h> .text .align 32 sun4v_cpu_mondo: /* Head offset in %g2, tail offset in %g4. * If they are the same, no work. */ mov INTRQ_CPU_MONDO_HE...
alibaba/LVS
12,399
kernel/arch/sparc/kernel/tsb.S
/* tsb.S: Sparc64 TSB table handling. * * Copyright (C) 2006 David S. Miller <davem@davemloft.net> */ #include <asm/tsb.h> #include <asm/hypervisor.h> #include <asm/page.h> #include <asm/cpudata.h> #include <asm/mmu.h> .text .align 32 /* Invoked from TLB miss handler, we are in the * MMU global registers an...
alibaba/LVS
7,158
kernel/arch/sparc/kernel/spiterrs.S
/* We need to carefully read the error status, ACK the errors, * prevent recursive traps, and pass the information on to C * code for logging. * * We pass the AFAR in as-is, and we encode the status * information as described in asm-sparc64/sfafsr.h */ .type __spitfire_access_error,#function __spitfire_a...
alibaba/LVS
44,774
kernel/arch/sparc/kernel/head_32.S
/* * head.S: The initial boot code for the Sparc port of Linux. * * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1995,1999 Pete Zaitcev (zaitcev@yahoo.com) * Copyright (C) 1996 Miguel de Icaza (miguel@nuclecu.unam.mx) * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) ...
alibaba/LVS
1,358
kernel/arch/sparc/kernel/helpers.S
.align 32 .globl __flushw_user .type __flushw_user,#function __flushw_user: rdpr %otherwin, %g1 brz,pn %g1, 2f clr %g2 1: save %sp, -128, %sp rdpr %otherwin, %g1 brnz,pt %g1, 1b add %g2, 1, %g2 1: sub %g2, 1, %g2 brnz,pt %g2, 1b restore %g0, %g0, %g0 2: retl nop .size __flushw_user,.-__flushw_user /*...
alibaba/LVS
2,942
kernel/arch/sparc/kernel/una_asm_32.S
/* una_asm.S: Kernel unaligned trap assembler helpers. * * Copyright (C) 1996,2005,2008 David S. Miller (davem@davemloft.net) * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) */ #include <linux/errno.h> .text retl_efault: retl mov -EFAULT, %o0 /* int __do_int_store(unsigned long *dst_addr, ...
alibaba/LVS
1,267
kernel/arch/sparc/kernel/dtlb_prot.S
/* * dtlb_prot.S: DTLB protection trap strategy. * This is included directly into the trap table. * * Copyright (C) 1996,1998 David S. Miller (davem@redhat.com) * Copyright (C) 1997,1998 Jakub Jelinek (jj@ultra.linux.cz) */ /* Ways we can get here: * * [TL == 0] 1) User stores to readonly pages....
alibaba/LVS
3,898
kernel/arch/sparc/kernel/winfixup.S
/* winfixup.S: Handle cases where user stack pointer is found to be bogus. * * Copyright (C) 1997, 2006 David S. Miller (davem@davemloft.net) */ #include <asm/asi.h> #include <asm/head.h> #include <asm/page.h> #include <asm/ptrace.h> #include <asm/processor.h> #include <asm/spitfire.h> #include <asm/thread_info.h> ...
alibaba/LVS
11,604
kernel/arch/sparc/kernel/rtrap_64.S
/* * rtrap.S: Preparing for return from trap on Sparc V9. * * Copyright (C) 1997,1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/asi.h> #include <asm/pstate.h> #include <asm/ptrace.h> #include <asm/spitfire.h> #include <asm/head.h> #inclu...
alibaba/LVS
1,169
kernel/arch/sparc/kernel/ivec.S
/* The registers for cross calls will be: * * DATA 0: [low 32-bits] Address of function to call, jmp to this * [high 32-bits] MMU Context Argument 0, place in %g5 * DATA 1: Address Argument 1, place in %g1 * DATA 2: Address Argument 2, place in %g7 * * With this method we can do most of the cros...
alibaba/LVS
2,037
kernel/arch/sparc/kernel/vmlinux.lds.S
/* ld script for sparc32/sparc64 kernel */ #include <asm-generic/vmlinux.lds.h> #include <asm/page.h> #include <asm/thread_info.h> #ifdef CONFIG_SPARC32 #define INITIAL_ADDRESS 0x10000 + SIZEOF_HEADERS #define TEXTSTART 0xf0004000 #define SMP_CACHE_BYTES_SHIFT 5 #else #define SMP_CACHE_BYTES_SHIFT 6 #define INITI...
alibaba/LVS
12,544
kernel/arch/sparc/kernel/systbls_64.S
/* systbls.S: System call entry point tables for OS compatibility. * The native Linux system call table lives here also. * * Copyright (C) 1995, 1996, 2007 David S. Miller (davem@davemloft.net) * Copyright (C) 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) * * Based upon preliminary work which is: * * C...
alibaba/LVS
9,189
kernel/arch/sparc/kernel/wuf.S
/* * wuf.S: Window underflow trap handler for the Sparc. * * Copyright (C) 1995 David S. Miller */ #include <asm/contregs.h> #include <asm/page.h> #include <asm/ptrace.h> #include <asm/psr.h> #include <asm/smp.h> #include <asm/asi.h> #include <asm/winmacro.h> #include <asm/asmmacro.h> #include <asm/thread_info.h> ...
alibaba/LVS
6,216
kernel/arch/sparc/kernel/systbls_32.S
/* systbls.S: System call entry point tables for OS compatibility. * The native Linux system call table lives here also. * * Copyright (C) 1995, 2007 David S. Miller (davem@davemloft.net) * * Based upon preliminary work which is: * * Copyright (C) 1995 Adrian M. Rodriguez (adrian@remus.rutgers.edu) *...
alibaba/LVS
8,328
kernel/arch/sparc/kernel/fpu_traps.S
/* This is trivial with the new code... */ .globl do_fpdis .type do_fpdis,#function do_fpdis: sethi %hi(TSTATE_PEF), %g4 rdpr %tstate, %g5 andcc %g5, %g4, %g0 be,pt %xcc, 1f nop rd %fprs, %g5 andcc %g5, FPRS_FEF, %g0 be,pt %xcc, 1f nop /* Legal state when DCR_IFPOE is set in Cheetah %dcr. */ s...
alibaba/LVS
2,743
kernel/arch/sparc/kernel/hvtramp.S
/* hvtramp.S: Hypervisor start-cpu trampoline code. * * Copyright (C) 2007, 2008 David S. Miller <davem@davemloft.net> */ #include <linux/init.h> #include <asm/thread_info.h> #include <asm/hypervisor.h> #include <asm/scratchpad.h> #include <asm/spitfire.h> #include <asm/hvtramp.h> #include <asm/pstate.h> #include ...
alibaba/LVS
21,994
kernel/arch/sparc/kernel/head_64.S
/* head.S: Initial boot code for the Sparc64 port of Linux. * * Copyright (C) 1996, 1997, 2007 David S. Miller (davem@davemloft.net) * Copyright (C) 1996 David Sitsky (David.Sitsky@anu.edu.au) * Copyright (C) 1997, 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz) * Copyright (C) 1997 Miguel de Icaza (miguel@nuclecu.una...
alibaba/LVS
5,607
kernel/arch/sparc/kernel/etrap_64.S
/* * etrap.S: Preparing for entry into the kernel on Sparc V9. * * Copyright (C) 1996, 1997 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1997, 1998, 1999 Jakub Jelinek (jj@ultra.linux.cz) */ #include <asm/asi.h> #include <asm/pstate.h> #include <asm/ptrace.h> #include <asm/page.h> #include <asm/spitf...
alibaba/LVS
2,051
kernel/arch/sparc/kernel/misctrap.S
#ifdef CONFIG_KGDB .globl arch_kgdb_breakpoint .type arch_kgdb_breakpoint,#function arch_kgdb_breakpoint: ta 0x72 retl nop .size arch_kgdb_breakpoint,.-arch_kgdb_breakpoint #endif .type __do_privact,#function __do_privact: mov TLB_SFSR, %g3 stxa %g0, [%g3] ASI_DMMU ! Clear FaultValid bit membar #Syn...
alibaba/LVS
7,192
kernel/arch/sparc/kernel/syscalls.S
/* SunOS's execv() call only specifies the argv argument, the * environment settings are the same as the calling processes. */ sys_execve: sethi %hi(sparc_execve), %g1 ba,pt %xcc, execve_merge or %g1, %lo(sparc_execve), %g1 #ifdef CONFIG_COMPAT sunos_execv: stx %g0, [%sp + PTREGS_OFF + PT_V9_I2] sys32_execve...
alibaba/LVS
1,840
kernel/arch/sparc/lib/memscan_32.S
/* * memscan.S: Optimized memscan for the Sparc. * * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) */ /* In essence, this is just a fancy strlen. */ #define LO_MAGIC 0x01010101 #define HI_MAGIC 0x80808080 .text .align 4 .globl __memscan_zero, __memscan_generic .globl memscan __memscan_zero: /*...
alibaba/LVS
1,496
kernel/arch/sparc/lib/NG2page.S
/* NG2page.S: Niagara-2 optimized clear and copy page. * * Copyright (C) 2007 (davem@davemloft.net) */ #include <asm/asi.h> #include <asm/page.h> #include <asm/visasm.h> .text .align 32 /* This is heavily simplified from the sun4u variants * because Niagara-2 does not have any D-cache aliasing issues. */ N...
alibaba/LVS
1,681
kernel/arch/sparc/lib/strlen_user_32.S
/* strlen_user.S: Sparc optimized strlen_user code * * Return length of string in userspace including terminating 0 * or 0 for error * * Copyright (C) 1991,1996 Free Software Foundation * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1996 Jakub Jelinek (jj@sunsite.mff.cuni.cz) */ ...
alibaba/LVS
22,985
kernel/arch/sparc/lib/memcpy.S
/* memcpy.S: Sparc optimized memcpy and memmove code * Hand optimized from GNU libc's memcpy and memmove * Copyright (C) 1991,1996 Free Software Foundation * Copyright (C) 1995 Linus Torvalds (Linus.Torvalds@helsinki.fi) * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1996 Eddie C. Do...
alibaba/LVS
3,546
kernel/arch/sparc/lib/mul.S
/* * mul.S: This routine was taken from glibc-1.09 and is covered * by the GNU Library General Public License Version 2. */ /* * Signed multiply, from Appendix E of the Sparc Version 8 * Architecture Manual. */ /* * Returns %o0 * %o1 in %o1%o0 (i.e., %o1 holds the upper 32 bits of * the 64-...
alibaba/LVS
1,263
kernel/arch/sparc/lib/strncmp_32.S
/* * strncmp.S: Hand optimized Sparc assembly of GCC output from GNU libc * generic strncmp routine. */ .text .align 4 .global __strncmp, strncmp __strncmp: strncmp: mov %o0, %g3 mov 0, %o3 cmp %o2, 3 ble 7f mov 0, %g2 sra %o2, 2, %o4 ldub [%g3], %o3 0: ldub [%o1], %g2 add %g3, 1, %g3 an...
alibaba/LVS
2,292
kernel/arch/sparc/lib/memscan_64.S
/* * memscan.S: Optimized memscan for Sparc64. * * Copyright (C) 1997,1998 Jakub Jelinek (jj@ultra.linux.cz) * Copyright (C) 1998 David S. Miller (davem@redhat.com) */ #define HI_MAGIC 0x8080808080808080 #define LO_MAGIC 0x0101010101010101 #define ASI_PL 0x88 .text .align 32 .globl __memscan_zero, __memscan...
alibaba/LVS
2,573
kernel/arch/sparc/lib/blockops.S
/* * blockops.S: Common block zero optimized routines. * * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/page.h> /* Zero out 64 bytes of memory at (buf + offset). * Assumes %g1 contains zero. */ #define BLAST_BLOCK(buf, offset) \ std %g0, [buf + offset + 0x38]; \ std %g0, [bu...
alibaba/LVS
2,667
kernel/arch/sparc/lib/bitops.S
/* bitops.S: Sparc64 atomic bit operations. * * Copyright (C) 2000, 2007 David S. Miller (davem@davemloft.net) */ #include <asm/asi.h> #include <asm/backoff.h> .text .globl test_and_set_bit .type test_and_set_bit,#function test_and_set_bit: /* %o0=nr, %o1=addr */ BACKOFF_SETUP(%o3) srlx %o0, 6, %g1 mov 1, %...
alibaba/LVS
2,423
kernel/arch/sparc/lib/clear_page.S
/* clear_page.S: UltraSparc optimized clear page. * * Copyright (C) 1996, 1998, 1999, 2000, 2004 David S. Miller (davem@redhat.com) * Copyright (C) 1997 Jakub Jelinek (jakub@redhat.com) */ #include <asm/visasm.h> #include <asm/thread_info.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/spitfire.h> ...
alibaba/LVS
7,090
kernel/arch/sparc/lib/udiv.S
/* * udiv.S: This routine was taken from glibc-1.09 and is covered * by the GNU Library General Public License Version 2. */ /* This file is generated from divrem.m4; DO NOT EDIT! */ /* * Division and remainder, from Appendix E of the Sparc Version 8 * Architecture Manual, with fixes from Gordo...
alibaba/LVS
5,425
kernel/arch/sparc/lib/udivdi3.S
/* Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC 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 ve...
alibaba/LVS
11,877
kernel/arch/sparc/lib/NG2memcpy.S
/* NG2memcpy.S: Niagara-2 optimized memcpy. * * Copyright (C) 2007 David S. Miller (davem@davemloft.net) */ #ifdef __KERNEL__ #include <asm/visasm.h> #include <asm/asi.h> #define GLOBAL_SPARE %g7 #else #define ASI_PNF 0x82 #define ASI_BLK_P 0xf0 #define ASI_BLK_INIT_QUAD_LDD_P 0xe2 #define FPRS_FEF 0x04 #ifdef MEM...
alibaba/LVS
1,955
kernel/arch/sparc/lib/locks.S
/* * locks.S: SMP low-level lock primitives on Sparc. * * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) * Copyright (C) 1998 Anton Blanchard (anton@progsoc.uts.edu.au) * Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz) */ #include <asm/ptrace.h> #include <asm/psr.h> #include <asm/smp.h> #incl...
alibaba/LVS
2,787
kernel/arch/sparc/lib/rwsem_64.S
/* rwsem.S: RW semaphore assembler. * * Written by David S. Miller (davem@redhat.com), 2001. * Derived from asm-i386/rwsem.h */ #include <asm/rwsem-const.h> .section .sched.text, "ax" .globl __down_read __down_read: 1: lduw [%o0], %g1 add %g1, 1, %g7 cas [%o0], %g1, %g7 cmp %g1, %g7 bne,pn %icc, 1b ...
alibaba/LVS
1,957
kernel/arch/sparc/lib/GENmemcpy.S
/* GENmemcpy.S: Generic sparc64 memcpy. * * Copyright (C) 2007 David S. Miller (davem@davemloft.net) */ #ifdef __KERNEL__ #define GLOBAL_SPARE %g7 #else #define GLOBAL_SPARE %g5 #endif #ifndef EX_LD #define EX_LD(x) x #endif #ifndef EX_ST #define EX_ST(x) x #endif #ifndef EX_RETVAL #define EX_RETVAL(x) x #endif ...
alibaba/LVS
3,173
kernel/arch/sparc/lib/strncpy_from_user_64.S
/* * strncpy_from_user.S: Sparc64 strncpy from userspace. * * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz) */ #include <asm/asi.h> #include <asm/errno.h> .data .align 8 0: .xword 0x0101010101010101 .text .align 32 /* Must return: * * -EFAULT for an exception * count if we hit the buf...
alibaba/LVS
9,580
kernel/arch/sparc/lib/NGmemcpy.S
/* NGmemcpy.S: Niagara optimized memcpy. * * Copyright (C) 2006, 2007 David S. Miller (davem@davemloft.net) */ #ifdef __KERNEL__ #include <asm/asi.h> #include <asm/thread_info.h> #define GLOBAL_SPARE %g7 #define RESTORE_ASI(TMP) \ ldub [%g6 + TI_CURRENT_DS], TMP; \ wr TMP, 0x0, %asi; #else #define GLOBAL_SPARE %...
alibaba/LVS
1,816
kernel/arch/sparc/lib/strlen_user_64.S
/* strlen_user.S: Sparc64 optimized strlen_user code * * Return length of string in userspace including terminating 0 * or 0 for error * * Copyright (C) 1991,1996 Free Software Foundation * Copyright (C) 1996,1999 David S. Miller (davem@redhat.com) * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz)...
alibaba/LVS
3,423
kernel/arch/sparc/lib/NGbzero.S
/* NGbzero.S: Niagara optimized memset/clear_user. * * Copyright (C) 2006 David S. Miller (davem@davemloft.net) */ #include <asm/asi.h> #define EX_ST(x,y) \ 98: x,y; \ .section __ex_table,"a";\ .align 4; \ .word 98b, __retl_o1; \ .text; \ .align 4; .text .globl NGmemset .type NGmemset, #function N...
alibaba/LVS
3,304
kernel/arch/sparc/lib/GENbzero.S
/* GENbzero.S: Generic sparc64 memset/clear_user. * * Copyright (C) 2007 David S. Miller (davem@davemloft.net) */ #include <asm/asi.h> #define EX_ST(x,y) \ 98: x,y; \ .section __ex_table,"a";\ .align 4; \ .word 98b, __retl_o1; \ .text; \ .align 4; .align 32 .text .globl GENmemset .type GENmemset,...
alibaba/LVS
2,710
kernel/arch/sparc/lib/NGpage.S
/* NGpage.S: Niagara optimize clear and copy page. * * Copyright (C) 2006 (davem@davemloft.net) */ #include <asm/asi.h> #include <asm/page.h> .text .align 32 /* This is heavily simplified from the sun4u variants * because Niagara does not have any D-cache aliasing issues * and also we don't need to use the...
alibaba/LVS
3,581
kernel/arch/sparc/lib/bzero.S
/* bzero.S: Simple prefetching memset, bzero, and clear_user * implementations. * * Copyright (C) 2005 David S. Miller <davem@davemloft.net> */ .text .globl __memset .type __memset, #function __memset: /* %o0=buf, %o1=pat, %o2=len */ .globl memset .type memset, #function memset: /* %o0=buf, %o1=...
alibaba/LVS
1,685
kernel/arch/sparc/lib/GENpage.S
/* GENpage.S: Generic clear and copy page. * * Copyright (C) 2007 (davem@davemloft.net) */ #include <asm/page.h> .text .align 32 GENcopy_user_page: set PAGE_SIZE, %g7 1: ldx [%o1 + 0x00], %o2 ldx [%o1 + 0x08], %o3 ldx [%o1 + 0x10], %o4 ldx [%o1 + 0x18], %o5 stx %o2, [%o0 + 0x00] stx %o3, [%o0 + 0x08] stx ...
alibaba/LVS
6,280
kernel/arch/sparc/lib/divdi3.S
/* Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC 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 ve...
alibaba/LVS
14,848
kernel/arch/sparc/lib/U1memcpy.S
/* U1memcpy.S: UltraSPARC-I/II/IIi/IIe optimized memcpy. * * Copyright (C) 1997, 2004 David S. Miller (davem@redhat.com) * Copyright (C) 1996, 1997, 1998, 1999 Jakub Jelinek (jj@ultra.linux.cz) */ #ifdef __KERNEL__ #include <asm/visasm.h> #include <asm/asi.h> #define GLOBAL_SPARE g7 #else #define GLOBAL_SPARE g5 #...
alibaba/LVS
5,913
kernel/arch/sparc/lib/copy_page.S
/* clear_page.S: UltraSparc optimized copy page. * * Copyright (C) 1996, 1998, 1999, 2000, 2004 David S. Miller (davem@redhat.com) * Copyright (C) 1997 Jakub Jelinek (jakub@redhat.com) */ #include <asm/visasm.h> #include <asm/thread_info.h> #include <asm/page.h> #include <asm/pgtable.h> #include <asm/spitfire.h> #...
alibaba/LVS
1,659
kernel/arch/sparc/lib/copy_in_user.S
/* copy_in_user.S: Copy from userspace to userspace. * * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) */ #include <linux/linkage.h> #include <asm/asi.h> #define XCC xcc #define EX(x,y) \ 98: x,y; \ .section __ex_table,"a";\ .align 4; \ .word 98b, __retl_one; \ .text; \ .align 4; ...
alibaba/LVS
7,663
kernel/arch/sparc/lib/sdiv.S
/* * sdiv.S: This routine was taken from glibc-1.09 and is covered * by the GNU Library General Public License Version 2. */ /* This file is generated from divrem.m4; DO NOT EDIT! */ /* * Division and remainder, from Appendix E of the Sparc Version 8 * Architecture Manual, with fixes from Gordo...
alibaba/LVS
1,910
kernel/arch/sparc/lib/muldi3.S
/* Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. This file is part of GNU CC. GNU CC 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 ve...
alibaba/LVS
7,702
kernel/arch/sparc/lib/rem.S
/* * rem.S: This routine was taken from glibc-1.09 and is covered * by the GNU Library General Public License Version 2. */ /* This file is generated from divrem.m4; DO NOT EDIT! */ /* * Division and remainder, from Appendix E of the Sparc Version 8 * Architecture Manual, with fixes from Gordo...
alibaba/LVS
9,344
kernel/arch/sparc/lib/U3memcpy.S
/* U3memcpy.S: UltraSparc-III optimized memcpy. * * Copyright (C) 1999, 2000, 2004 David S. Miller (davem@redhat.com) */ #ifdef __KERNEL__ #include <asm/visasm.h> #include <asm/asi.h> #define GLOBAL_SPARE %g7 #else #define ASI_BLK_P 0xf0 #define FPRS_FEF 0x04 #ifdef MEMCPY_DEBUG #define VISEntryHalf rd %fprs, %o5;...
alibaba/LVS
17,074
kernel/arch/sparc/lib/checksum_32.S
/* checksum.S: Sparc optimized checksum code. * * Copyright(C) 1995 Linus Torvalds * Copyright(C) 1995 Miguel de Icaza * Copyright(C) 1996 David S. Miller * Copyright(C) 1997 Jakub Jelinek * * derived from: * Linux/Alpha checksum c-code * Linux/ix86 inline checksum assembly * RFC1071 Computing t...
alibaba/LVS
3,791
kernel/arch/sparc/lib/memset.S
/* linux/arch/sparc/lib/memset.S: Sparc optimized memset, bzero and clear_user code * Copyright (C) 1991,1996 Free Software Foundation * Copyright (C) 1996,1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) * Copyright (C) 1996 David S. Miller (davem@caip.rutgers.edu) * * Returns 0, if ok, and number of bytes not yet set...
alibaba/LVS
10,627
kernel/arch/sparc/lib/copy_user.S
/* copy_user.S: Sparc optimized copy_from_user and copy_to_user code. * * Copyright(C) 1995 Linus Torvalds * Copyright(C) 1996 David S. Miller * Copyright(C) 1996 Eddie C. Dost * Copyright(C) 1996,1998 Jakub Jelinek * * derived from: * e-mail between David and Eddie. * * Returns 0 if successful, otherwise...
alibaba/LVS
2,938
kernel/arch/sparc/lib/rwsem_32.S
/* * Assembly part of rw semaphores. * * Copyright (C) 1999 Jakub Jelinek (jakub@redhat.com) */ #include <asm/ptrace.h> #include <asm/psr.h> .section .sched.text, "ax" .align 4 .globl ___down_read ___down_read: rd %psr, %g3 nop nop nop or %g3, PSR_PIL, %g7 wr %g7, 0, %psr nop nop nop #ifdef CONFI...
alibaba/LVS
2,963
kernel/arch/sparc/lib/VISsave.S
/* * VISsave.S: Code for saving FPU register state for * VIS routines. One should not call this directly, * but use macros provided in <asm/visasm.h>. * * Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz) */ #include <asm/asi.h> #include <asm/page.h> #include <asm/ptrace.h> #include <asm...
alibaba/LVS
7,018
kernel/arch/sparc/lib/csum_copy.S
/* csum_copy.S: Checksum+copy code for sparc64 * * Copyright (C) 2005 David S. Miller <davem@davemloft.net> */ #ifdef __KERNEL__ #define GLOBAL_SPARE %g7 #else #define GLOBAL_SPARE %g5 #endif #ifndef EX_LD #define EX_LD(x) x #endif #ifndef EX_ST #define EX_ST(x) x #endif #ifndef EX_RETVAL #define EX_RETVAL(x) x ...
alibaba/LVS
3,010
kernel/arch/sparc/lib/mcount.S
/* * Copyright (C) 2000 Anton Blanchard (anton@linuxcare.com) * * This file implements mcount(), which is used to collect profiling data. * This can also be tweaked for kernel stack overflow detection. */ #include <linux/linkage.h> #include <asm/ptrace.h> #include <asm/thread_info.h> /* * This is the main vari...
alibaba/LVS
2,925
kernel/arch/sparc/lib/atomic_64.S
/* atomic.S: These things are too big to do inline. * * Copyright (C) 1999, 2007 David S. Miller (davem@davemloft.net) */ #include <asm/asi.h> #include <asm/backoff.h> .text /* Two versions of the atomic routines, one that * does not return a value and does not perform * memory barriers, and a second which ...
alibaba/LVS
4,856
kernel/arch/sparc/lib/umul.S
/* * umul.S: This routine was taken from glibc-1.09 and is covered * by the GNU Library General Public License Version 2. */ /* * Unsigned multiply. Returns %o0 * %o1 in %o1%o0 (i.e., %o1 holds the * upper 32 bits of the 64-bit product). * * This code optimizes short (less than 13-bit) multi...
alibaba/LVS
7,131
kernel/arch/sparc/lib/urem.S
/* * urem.S: This routine was taken from glibc-1.09 and is covered * by the GNU Library General Public License Version 2. */ /* This file is generated from divrem.m4; DO NOT EDIT! */ /* * Division and remainder, from Appendix E of the Sparc Version 8 * Architecture Manual, with fixes from Gordon...
alibaba/LVS
2,663
kernel/arch/sparc/lib/atomic_32.S
/* atomic.S: Move this stuff here for better ICACHE hit rates. * * Copyright (C) 1996 David S. Miller (davem@caipfs.rutgers.edu) */ #include <asm/ptrace.h> #include <asm/psr.h> .text .align 4 .globl __atomic_begin __atomic_begin: #ifndef CONFIG_SMP .globl ___xchg32_sun4c ___xchg32_sun4c: rd %psr, %g3 andc...
alibaba/LVS
1,523
kernel/arch/sparc/lib/strlen.S
/* strlen.S: Sparc optimized strlen code * Hand optimized from GNU libc's strlen * Copyright (C) 1991,1996 Free Software Foundation * Copyright (C) 1996,2008 David S. Miller (davem@davemloft.net) * Copyright (C) 1996, 1997 Jakub Jelinek (jj@sunsite.mff.cuni.cz) */ #include <linux/linkage.h> #include <asm/asm.h> ...
alibaba/LVS
16,397
kernel/arch/sparc/lib/xor.S
/* * arch/sparc64/lib/xor.S * * High speed xor_block operation for RAID4/5 utilizing the * UltraSparc Visual Instruction Set and Niagara store-init/twin-load. * * Copyright (C) 1997, 1999 Jakub Jelinek (jj@ultra.linux.cz) * Copyright (C) 2006 David S. Miller <davem@davemloft.net> */ #include <asm/visasm.h> #in...
alibaba/LVS
3,861
kernel/arch/sparc/lib/checksum_64.S
/* checksum.S: Sparc V9 optimized checksum code. * * Copyright(C) 1995 Linus Torvalds * Copyright(C) 1995 Miguel de Icaza * Copyright(C) 1996, 2000 David S. Miller * Copyright(C) 1997 Jakub Jelinek * * derived from: * Linux/Alpha checksum c-code * Linux/ix86 inline checksum assembly * RFC1071 Co...
alibaba/LVS
9,818
kernel/arch/sparc/mm/hypersparc.S
/* * hypersparc.S: High speed Hypersparc mmu/cache operations. * * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/ptrace.h> #include <asm/psr.h> #include <asm/asm-offsets.h> #include <asm/asi.h> #include <asm/page.h> #include <asm/pgtsrmmu.h> #include <linux/init.h> .text .align 4 ...
alibaba/LVS
17,849
kernel/arch/sparc/mm/ultra.S
/* * ultra.S: Don't expand these all over the place... * * Copyright (C) 1997, 2000, 2008 David S. Miller (davem@davemloft.net) */ #include <asm/asi.h> #include <asm/pgtable.h> #include <asm/page.h> #include <asm/spitfire.h> #include <asm/mmu_context.h> #include <asm/mmu.h> #include <asm/pil.h> #include <asm/head....
alibaba/LVS
6,264
kernel/arch/sparc/mm/viking.S
/* * viking.S: High speed Viking cache/mmu operations * * Copyright (C) 1997 Eddie C. Dost (ecd@skynet.be) * Copyright (C) 1997,1998,1999 Jakub Jelinek (jj@ultra.linux.cz) * Copyright (C) 1999 Pavel Semerad (semerad@ss1000.ms.mff.cuni.cz) */ #include <asm/ptrace.h> #include <asm/psr.h> #include <asm/asm-of...
alibaba/LVS
3,258
kernel/arch/sparc/mm/tsunami.S
/* * tsunami.S: High speed MicroSparc-I mmu/cache operations. * * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu) */ #include <asm/ptrace.h> #include <asm/asm-offsets.h> #include <asm/psr.h> #include <asm/asi.h> #include <asm/page.h> #include <asm/pgtsrmmu.h> .text .align 4 .globl tsunami_flush_ca...
alibaba/LVS
5,416
kernel/arch/sparc/mm/swift.S
/* * swift.S: MicroSparc-II mmu/cache operations. * * Copyright (C) 1999 David S. Miller (davem@redhat.com) */ #include <asm/psr.h> #include <asm/asi.h> #include <asm/page.h> #include <asm/pgtsrmmu.h> #include <asm/asm-offsets.h> .text .align 4 #if 1 /* XXX screw this, I can't get the VAC flushes working * X...
alibaba/LVS
5,159
kernel/arch/mn10300/kernel/head.S
/* Boot entry point for MN10300 kernel * * Copyright (C) 2005 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Fou...
alibaba/LVS
2,791
kernel/arch/mn10300/kernel/gdb-cache.S
############################################################################### # # MN10300 Low-level cache purging routines for gdbstub # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify i...
alibaba/LVS
17,686
kernel/arch/mn10300/kernel/entry.S
############################################################################### # # MN10300 Exception and interrupt entry points # # Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd. # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Modified by David Howells (dhowells@redhat.com) # # This program is f...
alibaba/LVS
1,685
kernel/arch/mn10300/kernel/switch_to.S
############################################################################### # # MN10300 Context switch operation # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify it under the terms of...
alibaba/LVS
1,628
kernel/arch/mn10300/kernel/profile-low.S
############################################################################### # # Fast profiling interrupt handler # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify it under the terms of...
alibaba/LVS
1,096
kernel/arch/mn10300/kernel/kernel_execve.S
/* MN10300 In-kernel program execution * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Fou...
alibaba/LVS
1,698
kernel/arch/mn10300/kernel/mn10300-watchdog-low.S
############################################################################### # # MN10300 Watchdog interrupt handler # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify it under the terms ...
alibaba/LVS
2,243
kernel/arch/mn10300/kernel/gdb-io-serial-low.S
############################################################################### # # 16550 serial Rx interrupt handler for gdbstub I/O # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify it u...
alibaba/LVS
2,117
kernel/arch/mn10300/kernel/vmlinux.lds.S
/* MN10300 Main kernel linker script * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Found...
alibaba/LVS
2,835
kernel/arch/mn10300/kernel/gdb-low.S
############################################################################### # # MN10300 Low-level gdbstub routines # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify it under the terms ...
alibaba/LVS
2,411
kernel/arch/mn10300/kernel/gdb-io-ttysm-low.S
############################################################################### # # MN10300 On-chip serial Rx interrupt handler for GDB stub I/O # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # ...
alibaba/LVS
3,785
kernel/arch/mn10300/kernel/fpu-low.S
/* MN10300 Low level FPU management operations * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Soft...
alibaba/LVS
5,294
kernel/arch/mn10300/kernel/mn10300-serial-low.S
############################################################################### # # Virtual DMA driver for MN10300 serial ports # # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Written by David Howells (dhowells@redhat.com) # # This program is free software; you can redistribute it and/or # modify it under t...
alibaba/LVS
1,270
kernel/arch/mn10300/lib/__ashldi3.S
/* MN10300 64-bit arithmetic left shift * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Fo...
alibaba/LVS
1,187
kernel/arch/mn10300/lib/__ucmpdi2.S
/* __ucmpdi2.S: 64-bit unsigned compare * * Copyright (C) 2008 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * 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 Fo...
alibaba/LVS
2,586
kernel/arch/mn10300/lib/memcpy.S
/* MN10300 Optimised simple memory to memory copy * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free S...
alibaba/LVS
3,040
kernel/arch/mn10300/lib/memmove.S
/* MN10300 Optimised simple memory to memory copy, with support for overlapping * regions * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Pub...
alibaba/LVS
1,321
kernel/arch/mn10300/lib/__ashrdi3.S
/* MN10300 64-bit arithmetic right shift * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software F...
alibaba/LVS
2,991
kernel/arch/mn10300/lib/do_csum.S
/* Optimised simple memory checksum * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Founda...
alibaba/LVS
2,323
kernel/arch/mn10300/lib/memset.S
/* Optimised simple memory fill * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Foundation...
alibaba/LVS
1,271
kernel/arch/mn10300/lib/__lshrdi3.S
/* MN10300 64-bit logical right shift * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Foun...
alibaba/LVS
6,477
kernel/arch/mn10300/mm/cache-mn10300.S
/* MN10300 CPU core caching routines * * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. * Written by David Howells (dhowells@redhat.com) * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public Licence * as published by the Free Software Found...
alibaba/LVS
4,509
kernel/arch/mn10300/mm/tlb-mn10300.S
############################################################################### # # TLB loading functions # # Copyright (C) 2007 Matsushita Electric Industrial Co., Ltd. # Copyright (C) 2007 Red Hat, Inc. All Rights Reserved. # Modified by David Howells (dhowells@redhat.com) # # This program is free software; you can r...