-
-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #915 from no92/arch-generic-rtdl
- Loading branch information
Showing
10 changed files
with
511 additions
and
277 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#pragma once | ||
|
||
#include <elf.h> | ||
|
||
#define ELF_CLASS 64 | ||
|
||
using elf_ehdr = Elf64_Ehdr; | ||
using elf_phdr = Elf64_Phdr; | ||
using elf_dyn = Elf64_Dyn; | ||
using elf_rel = Elf64_Rel; | ||
using elf_rela = Elf64_Rela; | ||
using elf_sym = Elf64_Sym; | ||
using elf_addr = Elf64_Addr; | ||
|
||
using elf_info = Elf64_Xword; | ||
using elf_addend = Elf64_Sxword; | ||
|
||
#define ELF_R_SYM ELF64_R_SYM | ||
#define ELF_R_TYPE ELF64_R_TYPE | ||
#define ELF_ST_BIND ELF64_ST_BIND | ||
|
||
#define R_NONE R_AARCH64_NONE | ||
#define R_JUMP_SLOT R_AARCH64_JUMP_SLOT | ||
#define R_ABSOLUTE R_AARCH64_ABS64 | ||
#define R_GLOB_DAT R_AARCH64_GLOB_DAT | ||
#define R_RELATIVE R_AARCH64_RELATIVE | ||
#define R_IRELATIVE R_AARCH64_IRELATIVE | ||
// #define R_OFFSET | ||
#define R_COPY R_AARCH64_COPY | ||
#define R_TLS_DTPMOD R_AARCH64_TLS_DTPMOD | ||
#define R_TLS_DTPREL R_AARCH64_TLS_DTPREL | ||
#define R_TLS_TPREL R_AARCH64_TLS_TPREL | ||
#define R_TLSDESC R_AARCH64_TLSDESC | ||
|
||
#define TP_TCB_OFFSET (16) |
Oops, something went wrong.