Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: fusl/arch/x32/reloc.h

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/arch/x32/pthread_arch.h ('k') | fusl/arch/x32/src/syscall_cp_fixup.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #define LDSO_ARCH "x32"
2
3 /* FIXME: x32 is very strange in its use of 64-bit relocation types in
4 * a 32-bit environment. As long as the memory at reloc_addr is
5 * zero-filled prior to relocations, just treating 64-bit relocations
6 * as operating on 32-bit slots should be fine, but this should be
7 * checked. In particular, R_X86_64_64, R_X86_64_DTPOFF64, and
8 * R_X86_64_TPOFF64 may need checking. */
9
10 /* The R_X86_64_64, R_X86_64_DTPOFF32, and R_X86_64_TPOFF32 reloc types
11 * were previously mapped in the switch table form of this file; however,
12 * they do not seem to be used/usable for anything. If needed, new
13 * mappings will have to be added. */
14
15 #define REL_SYMBOLIC R_X86_64_32
16 #define REL_OFFSET R_X86_64_PC32
17 #define REL_GOT R_X86_64_GLOB_DAT
18 #define REL_PLT R_X86_64_JUMP_SLOT
19 #define REL_RELATIVE R_X86_64_RELATIVE
20 #define REL_COPY R_X86_64_COPY
21 #define REL_DTPMOD R_X86_64_DTPMOD64
22 #define REL_DTPOFF R_X86_64_DTPOFF64
23 #define REL_TPOFF R_X86_64_TPOFF64
24
25 #define CRTJMP(pc,sp) __asm__ __volatile__( \
26 "mov %1,%%esp ; jmp *%0" : : "r"((uint64_t)(uintptr_t)pc), "r"(sp) : "me mory" )
27
28 #define GETFUNCSYM(fp, sym, got) __asm__ ( \
29 ".hidden " #sym "\n" \
30 " lea " #sym "(%%rip),%0\n" \
31 : "=r"(*fp) : : "memory" )
OLDNEW
« no previous file with comments | « fusl/arch/x32/pthread_arch.h ('k') | fusl/arch/x32/src/syscall_cp_fixup.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698