1 #ifdef TARGET_DEFS_ONLY
3 #define EM_TCC_TARGET EM_C60
5 /* relocation type for 32 bit data relocation */
6 #define R_DATA_32 R_C60_32
7 #define R_DATA_PTR R_C60_32
8 #define R_JMP_SLOT R_C60_JMP_SLOT
9 #define R_GLOB_DAT R_C60_GLOB_DAT
10 #define R_COPY R_C60_COPY
12 #define R_NUM R_C60_NUM
14 #define ELF_START_ADDR 0x00000400
15 #define ELF_PAGE_SIZE 0x1000
17 #define PCRELATIVE_DLLPLT 0
18 #define RELOCATE_DLLPLT 0
20 #else /* !TARGET_DEFS_ONLY */
24 /* Returns 1 for a code relocation, 0 for a data relocation. For unknown
25 relocations, returns -1. */
26 int code_reloc (int reloc_type
)
42 tcc_error ("Unknown relocation type: %d", reloc_type
);
46 /* Returns an enumerator to describe wether and when the relocation needs a
47 GOT and/or PLT entry to be created. See tcc.h for a description of the
49 int gotplt_entry_type (int reloc_type
)
56 return NO_GOTPLT_ENTRY
;
60 return BUILD_GOT_ONLY
;
64 return ALWAYS_GOTPLT_ENTRY
;
67 tcc_error ("Unknown relocation type: %d", reloc_type
);
71 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
)
73 tcc_error("C67 got not implemented");
77 /* relocate the PLT: compute addresses and offsets in the PLT now that final
78 address for PLT and GOT are known (see fill_program_header) */
79 ST_FUNC
void relocate_plt(TCCState
*s1
)
87 p_end
= p
+ s1
->plt
->data_offset
;
97 void relocate_init(Section
*sr
) {}
99 void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, char *ptr
, addr_t addr
, addr_t val
)
109 /* put the low 16 bits of the absolute address add to what is
111 orig
= ((*(int *)(ptr
)) >> 7) & 0xffff;
112 orig
|= (((*(int *)(ptr
+4)) >> 7) & 0xffff) << 16;
114 /* patch both at once - assumes always in pairs Low - High */
115 *(int *) ptr
= (*(int *) ptr
& (~(0xffff << 7)) ) |
116 (((val
+orig
) & 0xffff) << 7);
117 *(int *)(ptr
+4) = (*(int *)(ptr
+4) & (~(0xffff << 7)) ) |
118 ((((val
+orig
)>>16) & 0xffff) << 7);
124 fprintf(stderr
,"FIXME: handle reloc type %x at %x [%p] to %x\n",
125 type
, (unsigned) addr
, ptr
, (unsigned) val
);
130 #endif /* !TARGET_DEFS_ONLY */