Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
1
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
9d056df
Documentation
LICENSES
arch
alpha
arc
arm
arm64
c6x
csky
abiv1
inc/abi
cacheflush.h
ckmmu.h
elf.h
entry.h
page.h
pgtable-bits.h
vdso.h
Makefile
alignment.c
cacheflush.c
mmap.c
abiv2
boot
configs
include
kernel
lib
mm
Kconfig
Kconfig.debug
Makefile
h8300
hexagon
ia64
m68k
microblaze
mips
nds32
nios2
openrisc
parisc
powerpc
riscv
s390
sh
sparc
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
certs
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
arch
/
csky
/
abiv1
/
inc
/
abi
/
elf.h
Blame
Blame
Latest commit
History
History
26 lines (24 loc) · 717 Bytes
Breadcrumbs
linux
/
arch
/
csky
/
abiv1
/
inc
/
abi
/
elf.h
Top
File metadata and controls
Code
Blame
26 lines (24 loc) · 717 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __ABI_CSKY_ELF_H #define __ABI_CSKY_ELF_H #define ELF_CORE_COPY_REGS(pr_reg, regs) do { \ pr_reg[0] = regs->pc; \ pr_reg[1] = regs->regs[9]; \ pr_reg[2] = regs->usp; \ pr_reg[3] = regs->sr; \ pr_reg[4] = regs->a0; \ pr_reg[5] = regs->a1; \ pr_reg[6] = regs->a2; \ pr_reg[7] = regs->a3; \ pr_reg[8] = regs->regs[0]; \ pr_reg[9] = regs->regs[1]; \ pr_reg[10] = regs->regs[2]; \ pr_reg[11] = regs->regs[3]; \ pr_reg[12] = regs->regs[4]; \ pr_reg[13] = regs->regs[5]; \ pr_reg[14] = regs->regs[6]; \ pr_reg[15] = regs->regs[7]; \ pr_reg[16] = regs->regs[8]; \ pr_reg[17] = regs->lr; \ } while (0); #endif /* __ABI_CSKY_ELF_H */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
You can’t perform that action at this time.