Commit c0e0de6c authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

dbghelp: Compiland and source files are not the same thing.

- in MSC debug info parsing, clearly separate a source file information from a compiland (including in linetab structure) - in ELF debug info parsing, now storing compiland directly in symtab_elt while browsing the symtab section (we still create twice the compilands, once in stabs/dwarf parsing, a second time in symtab parsing)
parent a1a54e7b
...@@ -118,7 +118,7 @@ struct symtab_elt ...@@ -118,7 +118,7 @@ struct symtab_elt
{ {
struct hash_table_elt ht_elt; struct hash_table_elt ht_elt;
const Elf32_Sym* symp; const Elf32_Sym* symp;
const char* filename; struct symt_compiland* compiland;
unsigned used; unsigned used;
}; };
...@@ -251,14 +251,14 @@ static void elf_unmap_file(struct elf_file_map* fmap) ...@@ -251,14 +251,14 @@ static void elf_unmap_file(struct elf_file_map* fmap)
* *
* creating an internal hash table to ease use ELF symtab information lookup * creating an internal hash table to ease use ELF symtab information lookup
*/ */
static void elf_hash_symtab(const struct module* module, struct pool* pool, static void elf_hash_symtab(struct module* module, struct pool* pool,
struct hash_table* ht_symtab, struct elf_file_map* fmap, struct hash_table* ht_symtab, struct elf_file_map* fmap,
int symtab_idx, struct thunk_area* thunks) int symtab_idx, struct thunk_area* thunks)
{ {
int i, j, nsym; int i, j, nsym;
const char* strp; const char* strp;
const char* symname; const char* symname;
const char* filename = NULL; struct symt_compiland* compiland = NULL;
const char* ptr; const char* ptr;
const Elf32_Sym* symp; const Elf32_Sym* symp;
struct symtab_elt* ste; struct symtab_elt* ste;
...@@ -289,7 +289,7 @@ static void elf_hash_symtab(const struct module* module, struct pool* pool, ...@@ -289,7 +289,7 @@ static void elf_hash_symtab(const struct module* module, struct pool* pool,
if (ELF32_ST_TYPE(symp->st_info) == STT_FILE) if (ELF32_ST_TYPE(symp->st_info) == STT_FILE)
{ {
filename = symname; compiland = symname ? symt_new_compiland(module, symname) : NULL;
continue; continue;
} }
for (j = 0; thunks[j].symname; j++) for (j = 0; thunks[j].symname; j++)
...@@ -331,7 +331,7 @@ static void elf_hash_symtab(const struct module* module, struct pool* pool, ...@@ -331,7 +331,7 @@ static void elf_hash_symtab(const struct module* module, struct pool* pool,
} }
} }
ste->symp = symp; ste->symp = symp;
ste->filename = filename; ste->compiland = compiland;
ste->used = 0; ste->used = 0;
hash_table_add(ht_symtab, &ste->ht_elt); hash_table_add(ht_symtab, &ste->ht_elt);
} }
...@@ -377,22 +377,24 @@ static const Elf32_Sym* elf_lookup_symtab(const struct module* module, ...@@ -377,22 +377,24 @@ static const Elf32_Sym* elf_lookup_symtab(const struct module* module,
if (ste->used || strcmp(ste->ht_elt.name, name)) continue; if (ste->used || strcmp(ste->ht_elt.name, name)) continue;
weak_result = ste; weak_result = ste;
if ((ste->filename && !compiland_name) || (!ste->filename && compiland_name)) if ((ste->compiland && !compiland_name) || (!ste->compiland && compiland_name))
continue; continue;
if (ste->filename && compiland_name) if (ste->compiland && compiland_name)
{ {
if (strcmp(ste->filename, compiland_name)) const char* filename = source_get(module, ste->compiland->source);
if (strcmp(filename, compiland_name))
{ {
base = strrchr(ste->filename, '/'); base = strrchr(filename, '/');
if (!base++) base = ste->filename; if (!base++) base = filename;
if (strcmp(base, compiland_basename)) continue; if (strcmp(base, compiland_basename)) continue;
} }
} }
if (result) if (result)
{ {
FIXME("Already found symbol %s (%s) in symtab %s @%08x and %s @%08x\n", FIXME("Already found symbol %s (%s) in symtab %s @%08x and %s @%08x\n",
name, compiland_name, result->filename, result->symp->st_value, name, compiland_name,
ste->filename, ste->symp->st_value); source_get(module, result->compiland->source), result->symp->st_value,
source_get(module, ste->compiland->source), ste->symp->st_value);
} }
else else
{ {
...@@ -496,8 +498,6 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt ...@@ -496,8 +498,6 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt
unsigned num_areas, struct thunk_area* thunks) unsigned num_areas, struct thunk_area* thunks)
{ {
int j; int j;
struct symt_compiland* compiland = NULL;
const char* compiland_name = NULL;
struct hash_table_iter hti; struct hash_table_iter hti;
struct symtab_elt* ste; struct symtab_elt* ste;
DWORD addr; DWORD addr;
...@@ -508,16 +508,6 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt ...@@ -508,16 +508,6 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt
{ {
if (ste->used) continue; if (ste->used) continue;
/* FIXME: this is not a good idea anyway... we are creating several
* compiland objects for a same compilation unit
* We try to cache the last compiland used, but it's not enough
* (we should here only create compilands if they are not yet
* defined)
*/
if (!compiland_name || compiland_name != ste->filename)
compiland = symt_new_compiland(module,
compiland_name = ste->filename);
addr = module->elf_info->elf_addr + ste->symp->st_value; addr = module->elf_info->elf_addr + ste->symp->st_value;
for (j = 0; j < num_areas; j++) for (j = 0; j < num_areas; j++)
...@@ -528,7 +518,7 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt ...@@ -528,7 +518,7 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt
} }
if (j < num_areas) /* thunk found */ if (j < num_areas) /* thunk found */
{ {
symt_new_thunk(module, compiland, ste->ht_elt.name, thunks[j].ordinal, symt_new_thunk(module, ste->compiland, ste->ht_elt.name, thunks[j].ordinal,
addr, ste->symp->st_size); addr, ste->symp->st_size);
} }
else else
...@@ -548,11 +538,11 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt ...@@ -548,11 +538,11 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt
switch (ELF32_ST_TYPE(ste->symp->st_info)) switch (ELF32_ST_TYPE(ste->symp->st_info))
{ {
case STT_FUNC: case STT_FUNC:
symt_new_function(module, compiland, ste->ht_elt.name, symt_new_function(module, ste->compiland, ste->ht_elt.name,
addr, ste->symp->st_size, NULL); addr, ste->symp->st_size, NULL);
break; break;
case STT_OBJECT: case STT_OBJECT:
symt_new_global_variable(module, compiland, ste->ht_elt.name, symt_new_global_variable(module, ste->compiland, ste->ht_elt.name,
ELF32_ST_BIND(ste->symp->st_info) == STB_LOCAL, ELF32_ST_BIND(ste->symp->st_info) == STB_LOCAL,
addr, ste->symp->st_size, NULL); addr, ste->symp->st_size, NULL);
break; break;
...@@ -605,8 +595,6 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt ...@@ -605,8 +595,6 @@ static int elf_new_wine_thunks(struct module* module, struct hash_table* ht_symt
*/ */
static int elf_new_public_symbols(struct module* module, struct hash_table* symtab) static int elf_new_public_symbols(struct module* module, struct hash_table* symtab)
{ {
struct symt_compiland* compiland = NULL;
const char* compiland_name = NULL;
struct hash_table_iter hti; struct hash_table_iter hti;
struct symtab_elt* ste; struct symtab_elt* ste;
...@@ -617,17 +605,7 @@ static int elf_new_public_symbols(struct module* module, struct hash_table* symt ...@@ -617,17 +605,7 @@ static int elf_new_public_symbols(struct module* module, struct hash_table* symt
hash_table_iter_init(symtab, &hti, NULL); hash_table_iter_init(symtab, &hti, NULL);
while ((ste = hash_table_iter_up(&hti))) while ((ste = hash_table_iter_up(&hti)))
{ {
/* FIXME: this is not a good idea anyway... we are creating several symt_new_public(module, ste->compiland, ste->ht_elt.name,
* compiland objects for a same compilation unit
* We try to cache the last compiland used, but it's not enough
* (we should here only create compilands if they are not yet
* defined)
*/
if (!compiland_name || compiland_name != ste->filename)
compiland = symt_new_compiland(module,
compiland_name = ste->filename);
symt_new_public(module, compiland, ste->ht_elt.name,
module->elf_info->elf_addr + ste->symp->st_value, module->elf_info->elf_addr + ste->symp->st_value,
ste->symp->st_size, TRUE /* FIXME */, ste->symp->st_size, TRUE /* FIXME */,
ELF32_ST_TYPE(ste->symp->st_info) == STT_FUNC); ELF32_ST_TYPE(ste->symp->st_info) == STT_FUNC);
......
...@@ -1084,9 +1084,17 @@ union codeview_symbol ...@@ -1084,9 +1084,17 @@ union codeview_symbol
{ {
short int len; short int len;
short int id; short int id;
char signature[4];
struct p_string p_name;
} objname_v1;
struct
{
short int len;
short int id;
unsigned int unknown; unsigned int unknown;
struct p_string p_name; struct p_string p_name;
} compiland_v1; } compile_v1;
struct struct
{ {
...@@ -1095,7 +1103,7 @@ union codeview_symbol ...@@ -1095,7 +1103,7 @@ union codeview_symbol
unsigned unknown1[4]; unsigned unknown1[4];
unsigned short unknown2; unsigned short unknown2;
struct p_string p_name; struct p_string p_name;
} compiland_v2; } compile_v2;
struct struct
{ {
...@@ -1103,10 +1111,10 @@ union codeview_symbol ...@@ -1103,10 +1111,10 @@ union codeview_symbol
short int id; short int id;
unsigned int unknown; unsigned int unknown;
char name[1]; char name[1];
} compiland_v3; } compile_v3;
}; };
#define S_COMPILAND_V1 0x0001 #define S_COMPILE_V1 0x0001
#define S_REGISTER_V1 0x0002 #define S_REGISTER_V1 0x0002
#define S_CONSTANT_V1 0x0003 #define S_CONSTANT_V1 0x0003
#define S_UDT_V1 0x0004 #define S_UDT_V1 0x0004
...@@ -1160,9 +1168,9 @@ union codeview_symbol ...@@ -1160,9 +1168,9 @@ union codeview_symbol
#if 0 #if 0
#define S_XXXXXXXXX_32 0x1012 /* seems linked to a function, content unknown */ #define S_XXXXXXXXX_32 0x1012 /* seems linked to a function, content unknown */
#endif #endif
#define S_COMPILAND_V2 0x1013 #define S_COMPILE_V2 0x1013
#define S_COMPILAND_V3 0x1101 #define S_COMPILE_V3 0x1101
#define S_THUNK_V3 0x1102 #define S_THUNK_V3 0x1102
#define S_BLOCK_V3 0x1103 #define S_BLOCK_V3 0x1103
#define S_LABEL_V3 0x1105 #define S_LABEL_V3 0x1105
...@@ -1203,7 +1211,7 @@ struct codeview_linetab ...@@ -1203,7 +1211,7 @@ struct codeview_linetab
unsigned int segno; unsigned int segno;
unsigned int start; unsigned int start;
unsigned int end; unsigned int end;
struct symt_compiland* compiland; unsigned int source;
const unsigned short* linetab; const unsigned short* linetab;
const unsigned int* offtab; const unsigned int* offtab;
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment