Release 971130
[wine/hacks.git] / debugger / hash.c
blobacf281f0905d5642a5f22ad722f1c080291a7038
1 /*
2 * File hash.c - generate hash tables for Wine debugger symbols
4 * Copyright (C) 1993, Eric Youngdale.
5 */
8 #include <stdlib.h>
9 #include <stdio.h>
10 #include <string.h>
11 #include <limits.h>
12 #include <sys/types.h>
13 #include <neexe.h>
14 #include "module.h"
15 #include "process.h"
16 #include "selectors.h"
17 #include "debugger.h"
18 #include "toolhelp.h"
19 #include "xmalloc.h"
21 #define NR_NAME_HASH 16384
22 #ifndef PATH_MAX
23 #define PATH_MAX _MAX_PATH
24 #endif
26 static char * reg_name[] =
28 "eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi"
32 struct name_hash
34 struct name_hash * next; /* Used to look up within name hash */
35 char * name;
36 char * sourcefile;
38 int n_locals;
39 int locals_alloc;
40 WineLocals * local_vars;
42 int n_lines;
43 int lines_alloc;
44 WineLineNo * linetab;
46 DBG_ADDR addr;
47 unsigned short flags;
48 unsigned short breakpoint_offset;
49 unsigned int symbol_size;
53 static BOOL32 DEBUG_GetStackSymbolValue( const char * name, DBG_ADDR *addr );
54 static int sortlist_valid = FALSE;
56 static int sorttab_nsym;
57 static struct name_hash ** addr_sorttab = NULL;
59 static struct name_hash * name_hash_table[NR_NAME_HASH];
61 static unsigned int name_hash( const char * name )
63 unsigned int hash = 0;
64 unsigned int tmp;
65 const char * p;
67 p = name;
69 while (*p)
71 hash = (hash << 4) + *p++;
73 if( (tmp = (hash & 0xf0000000)) )
75 hash ^= tmp >> 24;
77 hash &= ~tmp;
79 return hash % NR_NAME_HASH;
82 int
83 DEBUG_cmp_sym(const void * p1, const void * p2)
85 struct name_hash ** name1 = (struct name_hash **) p1;
86 struct name_hash ** name2 = (struct name_hash **) p2;
88 if( ((*name1)->flags & SYM_INVALID) != 0 )
90 return -1;
93 if( ((*name2)->flags & SYM_INVALID) != 0 )
95 return 1;
98 if( (*name1)->addr.seg > (*name2)->addr.seg )
100 return 1;
103 if( (*name1)->addr.seg < (*name2)->addr.seg )
105 return -1;
108 if( (*name1)->addr.off > (*name2)->addr.off )
110 return 1;
113 if( (*name1)->addr.off < (*name2)->addr.off )
115 return -1;
118 return 0;
121 /***********************************************************************
122 * DEBUG_ResortSymbols
124 * Rebuild sorted list of symbols.
126 static
127 void
128 DEBUG_ResortSymbols()
130 struct name_hash *nh;
131 int nsym = 0;
132 int i;
134 for(i=0; i<NR_NAME_HASH; i++)
136 for (nh = name_hash_table[i]; nh; nh = nh->next)
138 nsym++;
142 sorttab_nsym = nsym;
143 if( nsym == 0 )
145 return;
148 addr_sorttab = (struct name_hash **) xrealloc(addr_sorttab,
149 nsym * sizeof(struct name_hash *));
151 nsym = 0;
152 for(i=0; i<NR_NAME_HASH; i++)
154 for (nh = name_hash_table[i]; nh; nh = nh->next)
156 addr_sorttab[nsym++] = nh;
160 qsort(addr_sorttab, nsym,
161 sizeof(struct name_hash *), DEBUG_cmp_sym);
162 sortlist_valid = TRUE;
166 /***********************************************************************
167 * DEBUG_AddSymbol
169 * Add a symbol to the table.
171 struct name_hash *
172 DEBUG_AddSymbol( const char * name, const DBG_ADDR *addr, const char * source,
173 int flags)
175 struct name_hash * new;
176 struct name_hash *nh;
177 static char prev_source[PATH_MAX] = {'\0', };
178 static char * prev_duped_source = NULL;
179 char * c;
180 int hash;
182 hash = name_hash(name);
183 for (nh = name_hash_table[hash]; nh; nh = nh->next)
185 if( ((nh->flags & SYM_INVALID) != 0) && strcmp(name, nh->name) == 0 )
187 nh->addr.off = addr->off;
188 nh->addr.seg = addr->seg;
189 if( nh->addr.type == NULL && addr->type != NULL )
191 nh->addr.type = addr->type;
193 nh->flags &= ~SYM_INVALID;
194 return nh;
196 if (nh->addr.seg == addr->seg &&
197 nh->addr.off == addr->off &&
198 strcmp(name, nh->name) == 0 )
200 return nh;
205 * First see if we already have an entry for this symbol. If so
206 * return it, so we don't end up with duplicates.
209 new = (struct name_hash *) xmalloc(sizeof(struct name_hash));
210 new->addr = *addr;
211 new->name = xstrdup(name);
213 if( source != NULL )
216 * This is an enhancement to reduce memory consumption. The idea
217 * is that we duplicate a given string only once. This is a big
218 * win if there are lots of symbols defined in a given source file.
220 if( strcmp(source, prev_source) == 0 )
222 new->sourcefile = prev_duped_source;
224 else
226 strcpy(prev_source, source);
227 prev_duped_source = new->sourcefile = xstrdup(source);
230 else
232 new->sourcefile = NULL;
235 new->n_lines = 0;
236 new->lines_alloc = 0;
237 new->linetab = NULL;
239 new->n_locals = 0;
240 new->locals_alloc = 0;
241 new->local_vars = NULL;
243 new->flags = flags;
244 new->next = NULL;
246 /* Now insert into the hash table */
247 new->next = name_hash_table[hash];
248 name_hash_table[hash] = new;
251 * Check some heuristics based upon the file name to see whether
252 * we want to step through this guy or not. These are machine generated
253 * assembly files that are used to translate between the MS way of
254 * calling things and the GCC way of calling things. In general we
255 * always want to step through.
257 if( source != NULL )
259 c = strrchr(source, '.');
260 if( c != NULL && strcmp(c, ".s") == 0 )
262 c = strrchr(source, '/');
263 if( c != NULL )
265 c++;
266 if( (strcmp(c, "callfrom16.s") == 0)
267 || (strcmp(c, "callto16.s") == 0)
268 || (strcmp(c, "call32.s") == 0) )
270 new->flags |= SYM_TRAMPOLINE;
276 sortlist_valid = FALSE;
277 return new;
280 BOOL32 DEBUG_Normalize(struct name_hash * nh )
284 * We aren't adding any more locals or linenumbers to this function.
285 * Free any spare memory that we might have allocated.
287 if( nh == NULL )
289 return TRUE;
292 if( nh->n_locals != nh->locals_alloc )
294 nh->locals_alloc = nh->n_locals;
295 nh->local_vars = xrealloc(nh->local_vars,
296 nh->locals_alloc * sizeof(WineLocals));
299 if( nh->n_lines != nh->lines_alloc )
301 nh->lines_alloc = nh->n_lines;
302 nh->linetab = xrealloc(nh->linetab,
303 nh->lines_alloc * sizeof(WineLineNo));
306 return TRUE;
309 /***********************************************************************
310 * DEBUG_GetSymbolValue
312 * Get the address of a named symbol.
314 BOOL32 DEBUG_GetSymbolValue( const char * name, const int lineno,
315 DBG_ADDR *addr, int bp_flag )
317 char buffer[256];
318 struct name_hash *nh;
320 for(nh = name_hash_table[name_hash(name)]; nh; nh = nh->next)
322 if( (nh->flags & SYM_INVALID) != 0 )
324 continue;
327 if (!strcmp(nh->name, name)) break;
330 if (!nh && (name[0] != '_'))
332 buffer[0] = '_';
333 strcpy(buffer+1, name);
334 for(nh = name_hash_table[name_hash(buffer)]; nh; nh = nh->next)
336 if( (nh->flags & SYM_INVALID) != 0 )
338 continue;
340 if (!strcmp(nh->name, buffer)) break;
345 * If we don't have anything here, then try and see if this
346 * is a local symbol to the current stack frame. No matter
347 * what, we have nothing more to do, so we let that function
348 * decide what we ultimately return.
350 if (!nh)
352 return DEBUG_GetStackSymbolValue(name, addr);
355 return DEBUG_GetLineNumberAddr( nh, lineno, addr, bp_flag );
358 /***********************************************************************
359 * DEBUG_GetLineNumberAddr
361 * Get the address of a named symbol.
363 BOOL32 DEBUG_GetLineNumberAddr( struct name_hash * nh, const int lineno,
364 DBG_ADDR *addr, int bp_flag )
366 int i;
368 if( lineno == -1 )
370 *addr = nh->addr;
371 if( bp_flag )
373 addr->off += nh->breakpoint_offset;
376 else
379 * Search for the specific line number. If we don't find it,
380 * then return FALSE.
382 if( nh->linetab == NULL )
384 return FALSE;
387 for(i=0; i < nh->n_lines; i++ )
389 if( nh->linetab[i].line_number == lineno )
391 *addr = nh->linetab[i].pc_offset;
392 return TRUE;
397 * This specific line number not found.
399 return FALSE;
402 return TRUE;
406 /***********************************************************************
407 * DEBUG_SetSymbolValue
409 * Set the address of a named symbol.
411 BOOL32 DEBUG_SetSymbolValue( const char * name, const DBG_ADDR *addr )
413 char buffer[256];
414 struct name_hash *nh;
416 for(nh = name_hash_table[name_hash(name)]; nh; nh = nh->next)
417 if (!strcmp(nh->name, name)) break;
419 if (!nh && (name[0] != '_'))
421 buffer[0] = '_';
422 strcpy(buffer+1, name);
423 for(nh = name_hash_table[name_hash(buffer)]; nh; nh = nh->next)
424 if (!strcmp(nh->name, buffer)) break;
427 if (!nh) return FALSE;
428 nh->addr = *addr;
429 nh->flags &= SYM_INVALID;
430 DBG_FIX_ADDR_SEG( &nh->addr, DS_reg(&DEBUG_context) );
431 return TRUE;
435 /***********************************************************************
436 * DEBUG_FindNearestSymbol
438 * Find the symbol nearest to a given address.
439 * If ebp is specified as non-zero, it means we should dump the argument
440 * list into the string we return as well.
442 const char * DEBUG_FindNearestSymbol( const DBG_ADDR *addr, int flag,
443 struct name_hash ** rtn,
444 unsigned int ebp,
445 struct list_id * source)
447 static char name_buffer[MAX_PATH + 256];
448 static char arglist[1024];
449 static char argtmp[256];
450 struct name_hash * nearest = NULL;
451 int mid, high, low;
452 unsigned int * ptr;
453 int lineno;
454 char * lineinfo, *sourcefile;
455 int i;
456 char linebuff[16];
458 if( rtn != NULL )
460 *rtn = NULL;
463 if( source != NULL )
465 source->sourcefile = NULL;
466 source->line = -1;
469 if( sortlist_valid == FALSE )
471 DEBUG_ResortSymbols();
474 if( sortlist_valid == FALSE )
476 return NULL;
480 * FIXME - use the binary search that we added to
481 * the function DEBUG_CheckLinenoStatus. Better yet, we should
482 * probably keep some notion of the current function so we don't
483 * have to search every time.
486 * Binary search to find closest symbol.
488 low = 0;
489 high = sorttab_nsym;
490 if( addr_sorttab[0]->addr.seg > addr->seg
491 || ( addr_sorttab[0]->addr.seg == addr->seg
492 && addr_sorttab[0]->addr.off > addr->off) )
494 nearest = NULL;
496 else if( addr_sorttab[high - 1]->addr.seg < addr->seg
497 || ( addr_sorttab[high - 1]->addr.seg == addr->seg
498 && addr_sorttab[high - 1]->addr.off < addr->off) )
500 nearest = addr_sorttab[high - 1];
502 else
504 while(1==1)
506 mid = (high + low)/2;
507 if( mid == low )
510 * See if there are any other entries that might also
511 * have the same address, and would also have a line
512 * number table.
514 if( mid > 0 && addr_sorttab[mid]->linetab == NULL )
516 if( (addr_sorttab[mid - 1]->addr.seg ==
517 addr_sorttab[mid]->addr.seg)
518 && (addr_sorttab[mid - 1]->addr.off ==
519 addr_sorttab[mid]->addr.off)
520 && (addr_sorttab[mid - 1]->linetab != NULL) )
522 mid--;
526 if( (mid < sorttab_nsym - 1)
527 && (addr_sorttab[mid]->linetab == NULL) )
529 if( (addr_sorttab[mid + 1]->addr.seg ==
530 addr_sorttab[mid]->addr.seg)
531 && (addr_sorttab[mid + 1]->addr.off ==
532 addr_sorttab[mid]->addr.off)
533 && (addr_sorttab[mid + 1]->linetab != NULL) )
535 mid++;
538 nearest = addr_sorttab[mid];
539 #if 0
540 fprintf(stderr, "Found %x:%x when looking for %x:%x %x %s\n",
541 addr_sorttab[mid ]->addr.seg,
542 addr_sorttab[mid ]->addr.off,
543 addr->seg, addr->off,
544 addr_sorttab[mid ]->linetab,
545 addr_sorttab[mid ]->name);
546 #endif
547 break;
549 if( (addr_sorttab[mid]->addr.seg < addr->seg)
550 || ( addr_sorttab[mid]->addr.seg == addr->seg
551 && addr_sorttab[mid]->addr.off <= addr->off) )
553 low = mid;
555 else
557 high = mid;
562 if (!nearest) return NULL;
564 if( rtn != NULL )
566 *rtn = nearest;
570 * Fill in the relevant bits to the structure so that we can
571 * locate the source and line for this bit of code.
573 if( source != NULL )
575 source->sourcefile = nearest->sourcefile;
576 if( nearest->linetab == NULL )
578 source->line = -1;
580 else
582 source->line = nearest->linetab[0].line_number;
586 lineinfo = "";
587 lineno = -1;
590 * Prepare to display the argument list. If ebp is specified, it is
591 * the framepointer for the function in question. If not specified,
592 * we don't want the arglist.
594 memset(arglist, '\0', sizeof(arglist));
595 if( ebp != 0 )
597 for(i=0; i < nearest->n_locals; i++ )
600 * If this is a register (offset == 0) or a local
601 * variable, we don't want to know about it.
603 if( nearest->local_vars[i].offset <= 0 )
605 continue;
608 ptr = (unsigned int *) (ebp + nearest->local_vars[i].offset);
609 if( arglist[0] == '\0' )
611 arglist[0] = '(';
613 else
615 strcat(arglist, ", ");
618 sprintf(argtmp, "%s=0x%x", nearest->local_vars[i].name,
619 *ptr);
620 strcat(arglist, argtmp);
622 if( arglist[0] == '(' )
624 strcat(arglist, ")");
628 if( (nearest->sourcefile != NULL) && (flag == TRUE)
629 && (addr->off - nearest->addr.off < 0x100000) )
633 * Try and find the nearest line number to the current offset.
635 if( nearest->linetab != NULL )
637 low = 0;
638 high = nearest->n_lines;
639 while ((high - low) > 1)
641 mid = (high + low) / 2;
642 if (addr->off < nearest->linetab[mid].pc_offset.off)
643 high = mid;
644 else
645 low = mid;
647 lineno = nearest->linetab[low].line_number;
650 if( lineno != -1 )
652 sprintf(linebuff, ":%d", lineno);
653 lineinfo = linebuff;
654 if( source != NULL )
656 source->line = lineno;
660 /* Remove the path from the file name */
661 sourcefile = strrchr( nearest->sourcefile, '/' );
662 if (!sourcefile) sourcefile = nearest->sourcefile;
663 else sourcefile++;
665 if (addr->off == nearest->addr.off)
666 sprintf( name_buffer, "%s%s [%s%s]", nearest->name,
667 arglist, sourcefile, lineinfo);
668 else
669 sprintf( name_buffer, "%s+0x%lx%s [%s%s]", nearest->name,
670 addr->off - nearest->addr.off,
671 arglist, sourcefile, lineinfo );
673 else
675 if (addr->off == nearest->addr.off)
676 sprintf( name_buffer, "%s%s", nearest->name, arglist);
677 else {
678 if (addr->seg && (nearest->addr.seg!=addr->seg))
679 return NULL;
680 else
681 sprintf( name_buffer, "%s+0x%lx%s", nearest->name,
682 addr->off - nearest->addr.off, arglist);
685 return name_buffer;
689 /***********************************************************************
690 * DEBUG_ReadSymbolTable
692 * Read a symbol file into the hash table.
694 void DEBUG_ReadSymbolTable( const char * filename )
696 FILE * symbolfile;
697 DBG_ADDR addr = { 0, 0 };
698 int nargs;
699 char type;
700 char * cpnt;
701 char buffer[256];
702 char name[256];
704 if (!(symbolfile = fopen(filename, "r")))
706 fprintf( stderr, "Unable to open symbol table %s\n", filename );
707 return;
710 fprintf( stderr, "Reading symbols from file %s\n", filename );
712 while (1)
714 fgets( buffer, sizeof(buffer), symbolfile );
715 if (feof(symbolfile)) break;
717 /* Strip any text after a # sign (i.e. comments) */
718 cpnt = buffer;
719 while (*cpnt)
720 if(*cpnt++ == '#') { *cpnt = 0; break; }
722 /* Quietly ignore any lines that have just whitespace */
723 cpnt = buffer;
724 while(*cpnt)
726 if(*cpnt != ' ' && *cpnt != '\t') break;
727 cpnt++;
729 if (!(*cpnt) || *cpnt == '\n') continue;
731 nargs = sscanf(buffer, "%lx %c %s", &addr.off, &type, name);
732 DEBUG_AddSymbol( name, &addr, NULL, SYM_WINE );
734 fclose(symbolfile);
738 /***********************************************************************
739 * DEBUG_LoadEntryPoints16
741 * Load the entry points of a Win16 module into the hash table.
743 static void DEBUG_LoadEntryPoints16( HMODULE16 hModule, NE_MODULE *pModule,
744 const char *name )
746 DBG_ADDR addr;
747 char buffer[256];
748 FARPROC16 address;
750 /* First search the resident names */
752 unsigned char *cpnt = (unsigned char *)pModule + pModule->name_table;
753 while (*cpnt)
755 cpnt += *cpnt + 1 + sizeof(WORD);
756 sprintf( buffer, "%s.%.*s", name, *cpnt, cpnt + 1 );
757 if ((address = MODULE_GetEntryPoint( hModule,
758 *(WORD *)(cpnt + *cpnt + 1) )))
760 addr.seg = HIWORD(address);
761 addr.off = LOWORD(address);
762 addr.type = NULL;
763 DEBUG_AddSymbol( buffer, &addr, NULL, SYM_WIN32 | SYM_FUNC );
767 /* Now search the non-resident names table */
769 if (!pModule->nrname_handle) return; /* No non-resident table */
770 cpnt = (char *)GlobalLock16( pModule->nrname_handle );
771 while (*cpnt)
773 cpnt += *cpnt + 1 + sizeof(WORD);
774 sprintf( buffer, "%s.%.*s", name, *cpnt, cpnt + 1 );
775 if ((address = MODULE_GetEntryPoint( hModule,
776 *(WORD *)(cpnt + *cpnt + 1) )))
778 addr.seg = HIWORD(address);
779 addr.off = LOWORD(address);
780 addr.type = NULL;
781 DEBUG_AddSymbol( buffer, &addr, NULL, SYM_WIN32 | SYM_FUNC );
787 /***********************************************************************
788 * DEBUG_LoadEntryPoints32
790 * Load the entry points of a Win32 module into the hash table.
792 static void DEBUG_LoadEntryPoints32( HMODULE32 hModule, const char *name )
794 #define RVA(x) (hModule+(DWORD)(x))
796 DBG_ADDR addr;
797 char buffer[256];
798 int i, j;
799 IMAGE_SECTION_HEADER *pe_seg;
800 IMAGE_EXPORT_DIRECTORY *exports;
801 IMAGE_DATA_DIRECTORY *debug_dir;
802 WORD *ordinals;
803 void **functions;
804 const char **names;
806 PE_MODREF *pem = pCurrentProcess->modref_list;
807 while (pem && (pem->module != hModule)) pem = pem->next;
808 if (!pem) return;
809 exports = pem->pe_export;
811 addr.seg = 0;
812 addr.type = NULL;
814 /* Add start of DLL */
816 addr.off = hModule;
817 DEBUG_AddSymbol( name, &addr, NULL, SYM_WIN32 | SYM_FUNC );
819 /* Add entry point */
821 sprintf( buffer, "%s.EntryPoint", name );
822 addr.off = (DWORD)RVA_PTR( hModule, OptionalHeader.AddressOfEntryPoint );
823 DEBUG_AddSymbol( buffer, &addr, NULL, SYM_WIN32 | SYM_FUNC );
825 /* Add start of sections */
827 pe_seg = PE_SECTIONS(hModule);
828 for (i = 0; i < PE_HEADER(hModule)->FileHeader.NumberOfSections; i++)
830 sprintf( buffer, "%s.%s", name, pe_seg->Name );
831 addr.off = RVA(pe_seg->VirtualAddress );
832 DEBUG_AddSymbol( buffer, &addr, NULL, SYM_WIN32 | SYM_FUNC );
833 pe_seg++;
836 /* Add exported functions */
838 if (!exports) return;
839 ordinals = (WORD *)RVA( exports->AddressOfNameOrdinals );
840 names = (const char **)RVA( exports->AddressOfNames );
841 functions = (void **)RVA( exports->AddressOfFunctions );
843 for (i = 0; i < exports->NumberOfNames; i++)
845 if (!names[i]) continue;
846 sprintf( buffer, "%s.%s", name, (char *)RVA(names[i]) );
847 addr.off = RVA( functions[ordinals[i]] );
848 DEBUG_AddSymbol( buffer, &addr, NULL, SYM_WIN32 | SYM_FUNC );
851 for (i = 0; i < exports->NumberOfFunctions; i++)
853 if (!functions[i]) continue;
854 /* Check if we already added it with a name */
855 for (j = 0; j < exports->NumberOfNames; j++)
856 if ((ordinals[j] == i) && names[j]) break;
857 if (j < exports->NumberOfNames) continue;
858 sprintf( buffer, "%s.%ld", name, i + exports->Base );
859 addr.off = (DWORD)RVA( functions[i] );
860 DEBUG_AddSymbol( buffer, &addr, NULL, SYM_WIN32 | SYM_FUNC );
863 debug_dir = &PE_HEADER(hModule)->OptionalHeader.DataDirectory[IMAGE_DIRECTORY_ENTRY_DEBUG];
864 if (debug_dir->Size)
865 DEBUG_RegisterDebugInfo( hModule, name,
866 debug_dir->VirtualAddress, debug_dir->Size );
867 #undef RVA
871 /***********************************************************************
872 * DEBUG_LoadEntryPoints
874 * Load the entry points of all the modules into the hash table.
876 void DEBUG_LoadEntryPoints(void)
878 MODULEENTRY entry;
879 NE_MODULE *pModule;
880 BOOL32 ok;
882 for (ok = ModuleFirst(&entry); ok; ok = ModuleNext(&entry))
884 if (!(pModule = MODULE_GetPtr( entry.hModule ))) continue;
885 fprintf( stderr, " %s", entry.szModule );
887 if (pModule->flags & NE_FFLAGS_WIN32) /* PE module */
888 DEBUG_LoadEntryPoints32( pModule->module32, entry.szModule );
889 else /* NE module */
890 DEBUG_LoadEntryPoints16( entry.hModule, pModule, entry.szModule );
895 void
896 DEBUG_AddLineNumber( struct name_hash * func, int line_num,
897 unsigned long offset )
899 if( func == NULL )
901 return;
904 if( func->n_lines + 1 >= func->lines_alloc )
906 func->lines_alloc += 64;
907 func->linetab = xrealloc(func->linetab,
908 func->lines_alloc * sizeof(WineLineNo));
911 func->linetab[func->n_lines].line_number = line_num;
912 func->linetab[func->n_lines].pc_offset.seg = func->addr.seg;
913 func->linetab[func->n_lines].pc_offset.off = func->addr.off + offset;
914 func->linetab[func->n_lines].pc_offset.type = NULL;
915 func->n_lines++;
919 struct wine_locals *
920 DEBUG_AddLocal( struct name_hash * func, int regno,
921 int offset,
922 int pc_start,
923 int pc_end,
924 char * name)
926 if( func == NULL )
928 return NULL;
931 if( func->n_locals + 1 >= func->locals_alloc )
933 func->locals_alloc += 32;
934 func->local_vars = xrealloc(func->local_vars,
935 func->locals_alloc * sizeof(WineLocals));
938 func->local_vars[func->n_locals].regno = regno;
939 func->local_vars[func->n_locals].offset = offset;
940 func->local_vars[func->n_locals].pc_start = pc_start;
941 func->local_vars[func->n_locals].pc_end = pc_end;
942 func->local_vars[func->n_locals].name = xstrdup(name);
943 func->local_vars[func->n_locals].type = NULL;
944 func->n_locals++;
946 return &func->local_vars[func->n_locals - 1];
949 void
950 DEBUG_DumpHashInfo()
952 int i;
953 int depth;
954 struct name_hash *nh;
957 * Utility function to dump stats about the hash table.
959 for(i=0; i<NR_NAME_HASH; i++)
961 depth = 0;
962 for (nh = name_hash_table[i]; nh; nh = nh->next)
964 depth++;
966 fprintf(stderr, "Bucket %d: %d\n", i, depth);
970 /***********************************************************************
971 * DEBUG_CheckLinenoStatus
973 * Find the symbol nearest to a given address.
974 * If ebp is specified as non-zero, it means we should dump the argument
975 * list into the string we return as well.
977 int DEBUG_CheckLinenoStatus( const DBG_ADDR *addr)
979 struct name_hash * nearest = NULL;
980 int mid, high, low;
982 if( sortlist_valid == FALSE )
984 DEBUG_ResortSymbols();
988 * Binary search to find closest symbol.
990 low = 0;
991 high = sorttab_nsym;
992 if( addr_sorttab[0]->addr.seg > addr->seg
993 || ( addr_sorttab[0]->addr.seg == addr->seg
994 && addr_sorttab[0]->addr.off > addr->off) )
996 nearest = NULL;
998 else if( addr_sorttab[high - 1]->addr.seg < addr->seg
999 || ( addr_sorttab[high - 1]->addr.seg == addr->seg
1000 && addr_sorttab[high - 1]->addr.off < addr->off) )
1002 nearest = addr_sorttab[high - 1];
1004 else
1006 while(1==1)
1008 mid = (high + low)/2;
1009 if( mid == low )
1012 * See if there are any other entries that might also
1013 * have the same address, and would also have a line
1014 * number table.
1016 if( mid > 0 && addr_sorttab[mid]->linetab == NULL )
1018 if( (addr_sorttab[mid - 1]->addr.seg ==
1019 addr_sorttab[mid]->addr.seg)
1020 && (addr_sorttab[mid - 1]->addr.off ==
1021 addr_sorttab[mid]->addr.off)
1022 && (addr_sorttab[mid - 1]->linetab != NULL) )
1024 mid--;
1028 if( (mid < sorttab_nsym - 1)
1029 && (addr_sorttab[mid]->linetab == NULL) )
1031 if( (addr_sorttab[mid + 1]->addr.seg ==
1032 addr_sorttab[mid]->addr.seg)
1033 && (addr_sorttab[mid + 1]->addr.off ==
1034 addr_sorttab[mid]->addr.off)
1035 && (addr_sorttab[mid + 1]->linetab != NULL) )
1037 mid++;
1040 nearest = addr_sorttab[mid];
1041 #if 0
1042 fprintf(stderr, "Found %x:%x when looking for %x:%x %x %s\n",
1043 addr_sorttab[mid ]->addr.seg,
1044 addr_sorttab[mid ]->addr.off,
1045 addr->seg, addr->off,
1046 addr_sorttab[mid ]->linetab,
1047 addr_sorttab[mid ]->name);
1048 #endif
1049 break;
1051 if( (addr_sorttab[mid]->addr.seg < addr->seg)
1052 || ( addr_sorttab[mid]->addr.seg == addr->seg
1053 && addr_sorttab[mid]->addr.off <= addr->off) )
1055 low = mid;
1057 else
1059 high = mid;
1064 if (!nearest) return FUNC_HAS_NO_LINES;
1066 if( nearest->flags & SYM_STEP_THROUGH )
1069 * This will cause us to keep single stepping until
1070 * we get to the other side somewhere.
1072 return NOT_ON_LINENUMBER;
1075 if( (nearest->flags & SYM_TRAMPOLINE) )
1078 * This will cause us to keep single stepping until
1079 * we get to the other side somewhere.
1081 return FUNC_IS_TRAMPOLINE;
1084 if( nearest->linetab == NULL )
1086 return FUNC_HAS_NO_LINES;
1091 * We never want to stop on the first instruction of a function
1092 * even if it has it's own linenumber. Let the thing keep running
1093 * until it gets past the function prologue. We only do this if there
1094 * is more than one line number for the function, of course.
1096 if( nearest->addr.off == addr->off && nearest->n_lines > 1 )
1098 return NOT_ON_LINENUMBER;
1101 if( (nearest->sourcefile != NULL)
1102 && (addr->off - nearest->addr.off < 0x100000) )
1104 low = 0;
1105 high = nearest->n_lines;
1106 while ((high - low) > 1)
1108 mid = (high + low) / 2;
1109 if (addr->off < nearest->linetab[mid].pc_offset.off) high = mid;
1110 else low = mid;
1112 if (addr->off == nearest->linetab[low].pc_offset.off)
1113 return AT_LINENUMBER;
1114 else
1115 return NOT_ON_LINENUMBER;
1118 return FUNC_HAS_NO_LINES;
1121 /***********************************************************************
1122 * DEBUG_GetFuncInfo
1124 * Find the symbol nearest to a given address.
1125 * Returns sourcefile name and line number in a format that the listing
1126 * handler can deal with.
1128 void
1129 DEBUG_GetFuncInfo( struct list_id * ret, const char * filename,
1130 const char * name)
1132 char buffer[256];
1133 char * pnt;
1134 struct name_hash *nh;
1136 for(nh = name_hash_table[name_hash(name)]; nh; nh = nh->next)
1138 if( filename != NULL )
1141 if( nh->sourcefile == NULL )
1143 continue;
1146 pnt = strrchr(nh->sourcefile, '/');
1147 if( strcmp(nh->sourcefile, filename) != 0
1148 && (pnt == NULL || strcmp(pnt + 1, filename) != 0) )
1150 continue;
1153 if (!strcmp(nh->name, name)) break;
1156 if (!nh && (name[0] != '_'))
1158 buffer[0] = '_';
1159 strcpy(buffer+1, name);
1160 for(nh = name_hash_table[name_hash(buffer)]; nh; nh = nh->next)
1162 if( filename != NULL )
1164 if( nh->sourcefile == NULL )
1166 continue;
1169 pnt = strrchr(nh->sourcefile, '/');
1170 if( strcmp(nh->sourcefile, filename) != 0
1171 && (pnt == NULL || strcmp(pnt + 1, filename) != 0) )
1173 continue;
1176 if (!strcmp(nh->name, buffer)) break;
1180 if( !nh )
1182 if( filename != NULL )
1184 fprintf(stderr, "No such function %s in %s\n", name, filename);
1186 else
1188 fprintf(stderr, "No such function %s\n", name);
1190 ret->sourcefile = NULL;
1191 ret->line = -1;
1192 return;
1195 ret->sourcefile = nh->sourcefile;
1198 * Search for the specific line number. If we don't find it,
1199 * then return FALSE.
1201 if( nh->linetab == NULL )
1203 ret->line = -1;
1205 else
1207 ret->line = nh->linetab[0].line_number;
1211 /***********************************************************************
1212 * DEBUG_GetStackSymbolValue
1214 * Get the address of a named symbol from the current stack frame.
1216 static
1217 BOOL32 DEBUG_GetStackSymbolValue( const char * name, DBG_ADDR *addr )
1219 struct name_hash * curr_func;
1220 unsigned int ebp;
1221 unsigned int eip;
1222 int i;
1224 if( DEBUG_GetCurrentFrame(&curr_func, &eip, &ebp) == FALSE )
1226 return FALSE;
1229 for(i=0; i < curr_func->n_locals; i++ )
1232 * Test the range of validity of the local variable. This
1233 * comes up with RBRAC/LBRAC stabs in particular.
1235 if( (curr_func->local_vars[i].pc_start != 0)
1236 && ((eip - curr_func->addr.off)
1237 < curr_func->local_vars[i].pc_start) )
1239 continue;
1242 if( (curr_func->local_vars[i].pc_end != 0)
1243 && ((eip - curr_func->addr.off)
1244 > curr_func->local_vars[i].pc_end) )
1246 continue;
1249 if( strcmp(name, curr_func->local_vars[i].name) == 0 )
1252 * OK, we found it. Now figure out what to do with this.
1254 if( curr_func->local_vars[i].regno != 0 )
1257 * Register variable. We don't know how to treat
1258 * this yet.
1260 return FALSE;
1263 addr->seg = 0;
1264 addr->off = ebp + curr_func->local_vars[i].offset;
1265 addr->type = curr_func->local_vars[i].type;
1267 return TRUE;
1270 return FALSE;
1274 DEBUG_InfoLocals()
1276 struct name_hash * curr_func;
1277 unsigned int ebp;
1278 unsigned int eip;
1279 int i;
1280 unsigned int * ptr;
1281 int rtn = FALSE;
1283 if( DEBUG_GetCurrentFrame(&curr_func, &eip, &ebp) == FALSE )
1285 return FALSE;
1288 for(i=0; i < curr_func->n_locals; i++ )
1291 * Test the range of validity of the local variable. This
1292 * comes up with RBRAC/LBRAC stabs in particular.
1294 if( (curr_func->local_vars[i].pc_start != 0)
1295 && ((eip - curr_func->addr.off)
1296 < curr_func->local_vars[i].pc_start) )
1298 continue;
1301 if( (curr_func->local_vars[i].pc_end != 0)
1302 && ((eip - curr_func->addr.off)
1303 > curr_func->local_vars[i].pc_end) )
1305 continue;
1308 if( curr_func->local_vars[i].offset == 0 )
1310 fprintf(stderr, "%s:%s optimized into register $%s \n",
1311 curr_func->name, curr_func->local_vars[i].name,
1312 reg_name[curr_func->local_vars[i].regno]);
1314 else
1316 ptr = (unsigned int *) (ebp + curr_func->local_vars[i].offset);
1317 fprintf(stderr, "%s:%s == 0x%8.8x\n",
1318 curr_func->name, curr_func->local_vars[i].name,
1319 *ptr);
1323 rtn = TRUE;
1325 return (rtn);
1329 DEBUG_SetSymbolSize(struct name_hash * sym, unsigned int len)
1331 sym->symbol_size = len;
1333 return TRUE;
1337 DEBUG_SetSymbolBPOff(struct name_hash * sym, unsigned int off)
1339 sym->breakpoint_offset = off;
1341 return TRUE;
1345 DEBUG_GetSymbolAddr(struct name_hash * sym, DBG_ADDR * addr)
1348 *addr = sym->addr;
1350 return TRUE;
1353 int DEBUG_SetLocalSymbolType(struct wine_locals * sym, struct datatype * type)
1355 sym->type = type;
1357 return TRUE;