aboutsummaryrefslogtreecommitdiff
path: root/libiberty/simple-object.c
diff options
context:
space:
mode:
authorRishi Raj <rishiraj45035@gmail.com>2023-07-06 18:44:40 +0530
committerRishi Raj <rishiraj45035@gmail.com>2023-07-06 18:44:40 +0530
commit48ef456a8ec8b6df2f6e097a55872921b9f9b08c (patch)
tree99e30a500e266024ef915869a1c28c98d0684774 /libiberty/simple-object.c
parentb13c0682ab290166a4a4c25513fec96beab5e211 (diff)
downloadgcc-48ef456a8ec8b6df2f6e097a55872921b9f9b08c.zip
gcc-48ef456a8ec8b6df2f6e097a55872921b9f9b08c.tar.gz
gcc-48ef456a8ec8b6df2f6e097a55872921b9f9b08c.tar.bz2
libiberty: lto: Addition of .symtab in elf file.
This patch is continutaion of previous patch (bypass-asm: Bypass assembler when generating LTO object files.). Now the emitted object file contains .symtab along with __gnu_lto_slim symbol. gcc/ChangeLog: * lto-object.cc (lto_obj_file_close): include/ChangeLog: * simple-object.h (simple_object_write_add_symbol): libiberty/ChangeLog: * simple-object-common.h (struct simple_object_symbol_struct): * simple-object-elf.c (simple_object_elf_write_ehdr): (simple_object_elf_write_symbol): (simple_object_elf_write_to_file): * simple-object.c (simple_object_start_write): (simple_object_write_add_symbol): (simple_object_release_write): Signed-off-by: Rishi Raj <rishiraj45035@gmail.com>
Diffstat (limited to 'libiberty/simple-object.c')
-rw-r--r--libiberty/simple-object.c34
1 files changed, 34 insertions, 0 deletions
diff --git a/libiberty/simple-object.c b/libiberty/simple-object.c
index 163e58a..1f9141a 100644
--- a/libiberty/simple-object.c
+++ b/libiberty/simple-object.c
@@ -455,6 +455,8 @@ simple_object_start_write (simple_object_attributes *attrs,
ret->sections = NULL;
ret->last_section = NULL;
ret->data = data;
+ ret->symbols=NULL;
+ ret->last_symbol=NULL;
return ret;
}
@@ -538,6 +540,28 @@ simple_object_write_to_file (simple_object_write *sobj, int descriptor,
{
return sobj->functions->write_to_file (sobj, descriptor, err);
}
+/*Adds a symbol in to common*/
+void
+simple_object_write_add_symbol(simple_object_write *sobj, const char *name,
+size_t size, unsigned int align)
+{
+ simple_object_symbol *symbol;
+ symbol=XNEW(simple_object_symbol);
+ symbol->next=NULL;
+ symbol->name=xstrdup(name);
+ symbol->align=align;
+ symbol->size=size;
+ if(sobj->last_symbol==NULL)
+ {
+ sobj->symbols=symbol;
+ sobj->last_symbol=symbol;
+ }
+ else
+ {
+ sobj->last_symbol->next=symbol;
+ sobj->last_symbol=symbol;
+ }
+}
/* Release an simple_object_write. */
@@ -571,6 +595,16 @@ simple_object_release_write (simple_object_write *sobj)
XDELETE (section);
section = next_section;
}
+ simple_object_symbol *symbol,*next_symbol;
+ symbol=sobj->symbols;
+ while(symbol!=NULL)
+ {
+ next_symbol=symbol->next;
+ free(symbol->name);
+ XDELETE(symbol);
+ symbol=next_symbol;
+
+ }
sobj->functions->release_write (sobj->data);
XDELETE (sobj);