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
11 #define R_RELATIVE R_C60_RELATIVE
13 #define R_NUM R_C60_NUM
15 #define ELF_START_ADDR 0x00000400
16 #define ELF_PAGE_SIZE 0x1000
18 #define PCRELATIVE_DLLPLT 0
19 #define RELOCATE_DLLPLT 0
21 #else /* !TARGET_DEFS_ONLY */
25 /* Returns 1 for a code relocation, 0 for a data relocation. For unknown
26 relocations, returns -1. */
27 int code_reloc (int reloc_type
)
45 /* Returns an enumerator to describe whether and when the relocation needs a
46 GOT and/or PLT entry to be created. See tcc.h for a description of the
48 int gotplt_entry_type (int reloc_type
)
55 return NO_GOTPLT_ENTRY
;
59 return BUILD_GOT_ONLY
;
63 return ALWAYS_GOTPLT_ENTRY
;
68 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
)
70 tcc_error("C67 got not implemented");
74 /* relocate the PLT: compute addresses and offsets in the PLT now that final
75 address for PLT and GOT are known (see fill_program_header) */
76 ST_FUNC
void relocate_plt(TCCState
*s1
)
84 p_end
= p
+ s1
->plt
->data_offset
;
94 void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, unsigned char *ptr
, addr_t addr
, addr_t val
)
104 /* put the low 16 bits of the absolute address add to what is
106 orig
= ((*(int *)(ptr
)) >> 7) & 0xffff;
107 orig
|= (((*(int *)(ptr
+4)) >> 7) & 0xffff) << 16;
109 /* patch both at once - assumes always in pairs Low - High */
110 *(int *) ptr
= (*(int *) ptr
& (~(0xffff << 7)) ) |
111 (((val
+orig
) & 0xffff) << 7);
112 *(int *)(ptr
+4) = (*(int *)(ptr
+4) & (~(0xffff << 7)) ) |
113 ((((val
+orig
)>>16) & 0xffff) << 7);
119 fprintf(stderr
,"FIXME: handle reloc type %x at %x [%p] to %x\n",
120 type
, (unsigned) addr
, ptr
, (unsigned) val
);
125 #endif /* !TARGET_DEFS_ONLY */