1 #ifdef TARGET_DEFS_ONLY
3 #define EM_TCC_TARGET EM_386
5 /* relocation type for 32 bit data relocation */
6 #define R_DATA_32 R_386_32
7 #define R_DATA_PTR R_386_32
8 #define R_JMP_SLOT R_386_JMP_SLOT
9 #define R_GLOB_DAT R_386_GLOB_DAT
10 #define R_COPY R_386_COPY
12 #define R_NUM R_386_NUM
14 #define ELF_START_ADDR 0x08048000
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
)
47 tcc_error ("Unknown relocation type: %d", reloc_type
);
51 /* Returns an enumerator to describe wether and when the relocation needs a
52 GOT and/or PLT entry to be created. See tcc.h for a description of the
54 int gotplt_entry_type (int reloc_type
)
62 return NO_GOTPLT_ENTRY
;
65 /* This relocations shouldn't normally need GOT or PLT
66 slots if it weren't for simplicity in the code generator.
67 See our caller for comments. */
68 return AUTO_GOTPLT_ENTRY
;
72 return AUTO_GOTPLT_ENTRY
;
76 return BUILD_GOT_ONLY
;
81 return ALWAYS_GOTPLT_ENTRY
;
84 tcc_error ("Unknown relocation type: %d", reloc_type
);
88 ST_FUNC
unsigned create_plt_entry(TCCState
*s1
, unsigned got_offset
, struct sym_attr
*attr
)
90 Section
*plt
= s1
->plt
;
93 unsigned plt_offset
, relofs
;
95 /* on i386 if we build a DLL, we add a %ebx offset */
96 if (s1
->output_type
== TCC_OUTPUT_DLL
)
101 /* empty PLT: create PLT0 entry that pushes the library indentifier
102 (GOT + PTR_SIZE) and jumps to ld.so resolution routine
103 (GOT + 2 * PTR_SIZE) */
104 if (plt
->data_offset
== 0) {
105 p
= section_ptr_add(plt
, 16);
106 p
[0] = 0xff; /* pushl got + PTR_SIZE */
108 write32le(p
+ 2, PTR_SIZE
);
109 p
[6] = 0xff; /* jmp *(got + PTR_SIZE * 2) */
111 write32le(p
+ 8, PTR_SIZE
* 2);
113 plt_offset
= plt
->data_offset
;
115 /* The PLT slot refers to the relocation entry it needs via offset.
116 The reloc entry is created below, so its offset is the current
118 relofs
= s1
->got
->reloc
? s1
->got
->reloc
->data_offset
: 0;
120 /* Jump to GOT entry where ld.so initially put the address of ip + 4 */
121 p
= section_ptr_add(plt
, 16);
122 p
[0] = 0xff; /* jmp *(got + x) */
124 write32le(p
+ 2, got_offset
);
125 p
[6] = 0x68; /* push $xxx */
126 write32le(p
+ 7, relofs
);
127 p
[11] = 0xe9; /* jmp plt_start */
128 write32le(p
+ 12, -(plt
->data_offset
));
132 /* relocate the PLT: compute addresses and offsets in the PLT now that final
133 address for PLT and GOT are known (see fill_program_header) */
134 ST_FUNC
void relocate_plt(TCCState
*s1
)
142 p_end
= p
+ s1
->plt
->data_offset
;
145 add32le(p
+ 2, s1
->got
->sh_addr
);
146 add32le(p
+ 8, s1
->got
->sh_addr
);
149 add32le(p
+ 2, s1
->got
->sh_addr
);
155 static ElfW_Rel
*qrel
; /* ptr to next reloc entry reused */
157 void relocate_init(Section
*sr
)
159 qrel
= (ElfW_Rel
*) sr
->data
;
162 void relocate(TCCState
*s1
, ElfW_Rel
*rel
, int type
, char *ptr
, addr_t addr
, addr_t val
)
164 int sym_index
, esym_index
;
166 sym_index
= ELFW(R_SYM
)(rel
->r_info
);
170 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
171 esym_index
= s1
->sym_attrs
[sym_index
].dyn_index
;
172 qrel
->r_offset
= rel
->r_offset
;
174 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_386_32
);
178 qrel
->r_info
= ELFW(R_INFO
)(0, R_386_RELATIVE
);
185 if (s1
->output_type
== TCC_OUTPUT_DLL
) {
187 esym_index
= s1
->sym_attrs
[sym_index
].dyn_index
;
189 qrel
->r_offset
= rel
->r_offset
;
190 qrel
->r_info
= ELFW(R_INFO
)(esym_index
, R_386_PC32
);
195 add32le(ptr
, val
- addr
);
198 add32le(ptr
, val
- addr
);
205 add32le(ptr
, s1
->got
->sh_addr
- addr
);
208 add32le(ptr
, val
- s1
->got
->sh_addr
);
212 /* we load the got offset */
213 add32le(ptr
, s1
->sym_attrs
[sym_index
].got_offset
);
216 if (s1
->output_format
!= TCC_OUTPUT_FORMAT_BINARY
) {
218 tcc_error("can only produce 16-bit binary files");
220 write16le(ptr
, read16le(ptr
) + val
);
223 if (s1
->output_format
!= TCC_OUTPUT_FORMAT_BINARY
)
225 write16le(ptr
, read16le(ptr
) + val
- addr
);
231 /* This reloction must copy initialized data from the library
232 to the program .bss segment. Currently made like for ARM
233 (to remove noise of defaukt case). Is this true?
237 fprintf(stderr
,"FIXME: handle reloc type %d at %x [%p] to %x\n",
238 type
, (unsigned)addr
, ptr
, (unsigned)val
);
243 #endif /* !TARGET_DEFS_ONLY */