hash.c 30.5 KB
Newer Older
Alexandre Julliard's avatar
Alexandre Julliard committed
1 2 3 4 5 6 7
/*
 * File hash.c - generate hash tables for Wine debugger symbols
 *
 * Copyright (C) 1993, Eric Youngdale.
 */


8
#include "config.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
9 10 11
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
12
#include <limits.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
13
#include <sys/types.h>
Alexandre Julliard's avatar
Alexandre Julliard committed
14
#include "debugger.h"
Alexandre Julliard's avatar
Alexandre Julliard committed
15

Alexandre Julliard's avatar
Alexandre Julliard committed
16
#define NR_NAME_HASH 16384
Alexandre Julliard's avatar
Alexandre Julliard committed
17 18 19
#ifndef PATH_MAX
#define PATH_MAX _MAX_PATH
#endif
Alexandre Julliard's avatar
Alexandre Julliard committed
20

21
#ifdef __i386__
Alexandre Julliard's avatar
Alexandre Julliard committed
22 23 24 25 26
static char * reg_name[] =
{
  "eax", "ecx", "edx", "ebx", "esp", "ebp", "esi", "edi"
};

27 28 29 30 31 32 33
static unsigned reg_ofs[] =
{
  FIELD_OFFSET(CONTEXT, Eax), FIELD_OFFSET(CONTEXT, Ecx),
  FIELD_OFFSET(CONTEXT, Edx), FIELD_OFFSET(CONTEXT, Ebx),
  FIELD_OFFSET(CONTEXT, Esp), FIELD_OFFSET(CONTEXT, Ebp),
  FIELD_OFFSET(CONTEXT, Esi), FIELD_OFFSET(CONTEXT, Edi)
};
34 35 36 37
#else
static char * reg_name[] = { NULL };   /* FIXME */
static unsigned reg_ofs[] = { 0 };
#endif
38

Alexandre Julliard's avatar
Alexandre Julliard committed
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53

struct name_hash
{
    struct name_hash * next;		/* Used to look up within name hash */
    char *             name;
    char *             sourcefile;

    int		       n_locals;
    int		       locals_alloc;
    WineLocals       * local_vars;
  
    int		       n_lines;
    int		       lines_alloc;
    WineLineNo       * linetab;

54
    DBG_VALUE          value;
Alexandre Julliard's avatar
Alexandre Julliard committed
55 56 57 58 59 60
    unsigned short     flags;
    unsigned short     breakpoint_offset;
    unsigned int       symbol_size;
};


61
static BOOL DEBUG_GetStackSymbolValue( const char * name, DBG_VALUE *value );
Alexandre Julliard's avatar
Alexandre Julliard committed
62 63 64 65
static int sortlist_valid = FALSE;

static int sorttab_nsym;
static struct name_hash ** addr_sorttab = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
66

Alexandre Julliard's avatar
Alexandre Julliard committed
67
static struct name_hash * name_hash_table[NR_NAME_HASH];
Alexandre Julliard's avatar
Alexandre Julliard committed
68

Alexandre Julliard's avatar
Alexandre Julliard committed
69 70 71
static unsigned int name_hash( const char * name )
{
    unsigned int hash = 0;
Alexandre Julliard's avatar
Alexandre Julliard committed
72
    unsigned int tmp;
Alexandre Julliard's avatar
Alexandre Julliard committed
73
    const char * p;
Alexandre Julliard's avatar
Alexandre Julliard committed
74

Alexandre Julliard's avatar
Alexandre Julliard committed
75
    p = name;
Alexandre Julliard's avatar
Alexandre Julliard committed
76

Alexandre Julliard's avatar
Alexandre Julliard committed
77 78 79 80 81 82 83 84 85 86
    while (*p) 
      {
	hash = (hash << 4) + *p++;

	if( (tmp = (hash & 0xf0000000)) )
	  {
	    hash ^= tmp >> 24;
	  }
	hash &= ~tmp;
      }
Alexandre Julliard's avatar
Alexandre Julliard committed
87
    return hash % NR_NAME_HASH;
Alexandre Julliard's avatar
Alexandre Julliard committed
88 89
}

Alexandre Julliard's avatar
Alexandre Julliard committed
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
int
DEBUG_cmp_sym(const void * p1, const void * p2)
{
  struct name_hash ** name1 = (struct name_hash **) p1;
  struct name_hash ** name2 = (struct name_hash **) p2;

  if( ((*name1)->flags & SYM_INVALID) != 0 )
    {
      return -1;
    }

  if( ((*name2)->flags & SYM_INVALID) != 0 )
    {
      return 1;
    }

106
  if( (*name1)->value.addr.seg > (*name2)->value.addr.seg )
Alexandre Julliard's avatar
Alexandre Julliard committed
107 108 109 110
    {
      return 1;
    }

111
  if( (*name1)->value.addr.seg < (*name2)->value.addr.seg )
Alexandre Julliard's avatar
Alexandre Julliard committed
112 113 114 115
    {
      return -1;
    }

116
  if( (*name1)->value.addr.off > (*name2)->value.addr.off )
Alexandre Julliard's avatar
Alexandre Julliard committed
117 118 119 120
    {
      return 1;
    }

121
  if( (*name1)->value.addr.off < (*name2)->value.addr.off )
Alexandre Julliard's avatar
Alexandre Julliard committed
122 123 124 125 126 127 128 129 130 131 132 133 134 135
    {
      return -1;
    }

  return 0;
}

/***********************************************************************
 *           DEBUG_ResortSymbols
 *
 * Rebuild sorted list of symbols.
 */
static
void
136
DEBUG_ResortSymbols(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
137 138 139 140 141 142 143 144 145
{
    struct name_hash *nh;
    int		nsym = 0;
    int		i;

    for(i=0; i<NR_NAME_HASH; i++)
    {
        for (nh = name_hash_table[i]; nh; nh = nh->next)
	  {
146 147 148
	    if( (nh->flags & SYM_INVALID) == 0 )
	       nsym++;
	    else
149
	       DEBUG_Printf( DBG_CHN_MESG, "Symbol %s is invalid\n", nh->name );
Alexandre Julliard's avatar
Alexandre Julliard committed
150 151 152 153 154 155 156 157 158
	  }
    }

    sorttab_nsym = nsym;
    if( nsym == 0 )
      {
	return;
      }

159
    addr_sorttab = (struct name_hash **) DBG_realloc(addr_sorttab, 
Alexandre Julliard's avatar
Alexandre Julliard committed
160 161 162 163 164 165 166
					 nsym * sizeof(struct name_hash *));

    nsym = 0;
    for(i=0; i<NR_NAME_HASH; i++)
    {
        for (nh = name_hash_table[i]; nh; nh = nh->next)
	  {
167 168
	    if( (nh->flags & SYM_INVALID) == 0 )
	       addr_sorttab[nsym++] = nh;
Alexandre Julliard's avatar
Alexandre Julliard committed
169 170 171 172 173 174 175 176
	  }
    }

    qsort(addr_sorttab, nsym,
	  sizeof(struct name_hash *), DEBUG_cmp_sym);
    sortlist_valid = TRUE;

}
Alexandre Julliard's avatar
Alexandre Julliard committed
177

Alexandre Julliard's avatar
Alexandre Julliard committed
178 179 180 181 182
/***********************************************************************
 *           DEBUG_AddSymbol
 *
 * Add a symbol to the table.
 */
Alexandre Julliard's avatar
Alexandre Julliard committed
183
struct name_hash *
184 185
DEBUG_AddSymbol( const char * name, const DBG_VALUE *value, 
		 const char * source, int flags)
Alexandre Julliard's avatar
Alexandre Julliard committed
186
{
Alexandre Julliard's avatar
Alexandre Julliard committed
187
    struct name_hash  * new;
Alexandre Julliard's avatar
Alexandre Julliard committed
188 189 190
    struct name_hash *nh;
    static char  prev_source[PATH_MAX] = {'\0', };
    static char * prev_duped_source = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
191 192
    int hash;

193 194
    assert(value->cookie == DV_TARGET || value->cookie == DV_HOST);

Alexandre Julliard's avatar
Alexandre Julliard committed
195 196 197 198 199
    hash = name_hash(name);
    for (nh = name_hash_table[hash]; nh; nh = nh->next)
    {
 	if( ((nh->flags & SYM_INVALID) != 0) && strcmp(name, nh->name) == 0 )
        {
200 201 202 203
#if 0
	    DEBUG_Printf(DBG_CHN_MESG, "Changing address for symbol %s (%08lx:%08lx => %08lx:%08lx)\n",
			 name, nh->value.addr.seg, nh->value.addr.off, value->addr.seg, value->addr.off);
#endif
204 205
 	    nh->value.addr = value->addr;
 	    if( nh->value.type == NULL && value->type != NULL )
Alexandre Julliard's avatar
Alexandre Julliard committed
206
            {
207 208
 		nh->value.type = value->type;
		nh->value.cookie = value->cookie;
Alexandre Julliard's avatar
Alexandre Julliard committed
209
            }
210 211 212 213 214 215 216
	    /* it may happen that the same symbol is defined in several compilation
	     * units, but the linker decides to merge it into a single instance.
	     * in that case, we don't clear the invalid flag for all the compilation
	     * units (N_GSYM), and wait to get the symbol from the symtab
	     */
 	    if ((flags & SYM_INVALID) == 0)
	       nh->flags &= ~SYM_INVALID;
217

Alexandre Julliard's avatar
Alexandre Julliard committed
218 219
 	    return nh;
        }
220 221
 	if (nh->value.addr.seg == value->addr.seg &&
 	    nh->value.addr.off == value->addr.off &&
Alexandre Julliard's avatar
Alexandre Julliard committed
222 223 224 225 226 227
 	    strcmp(name, nh->name) == 0 )
        {
            return nh;
        }
    }

228 229 230 231 232
#if 0
    DEBUG_Printf(DBG_CHN_TRACE, "adding symbol (%s) from file '%s' at 0x%04lx:%08lx\n",
		 name, source, value->addr.seg, value->addr.off);
#endif

Alexandre Julliard's avatar
Alexandre Julliard committed
233 234 235 236 237
    /*
     * First see if we already have an entry for this symbol.  If so
     * return it, so we don't end up with duplicates.
     */
    
238
    new = (struct name_hash *) DBG_alloc(sizeof(struct name_hash));
239
    new->value = *value;
240
    new->name = DBG_strdup(name);
Alexandre Julliard's avatar
Alexandre Julliard committed
241 242 243

    if( source != NULL )
      {
Alexandre Julliard's avatar
Alexandre Julliard committed
244 245 246 247 248 249 250 251 252 253 254 255
	/*
	 * This is an enhancement to reduce memory consumption.  The idea
	 * is that we duplicate a given string only once.  This is a big
	 * win if there are lots of symbols defined in a given source file.
	 */
	if( strcmp(source, prev_source) == 0 )
	  {
	    new->sourcefile = prev_duped_source;
	  }
	else
	  {
	    strcpy(prev_source, source);
256
	    prev_duped_source = new->sourcefile = DBG_strdup(source);
Alexandre Julliard's avatar
Alexandre Julliard committed
257
	  }
Alexandre Julliard's avatar
Alexandre Julliard committed
258 259 260 261 262 263
      }
    else
      {
	new->sourcefile = NULL;
      }

Alexandre Julliard's avatar
Alexandre Julliard committed
264 265 266
    new->n_lines	= 0;
    new->lines_alloc	= 0;
    new->linetab	= NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
267

Alexandre Julliard's avatar
Alexandre Julliard committed
268 269 270
    new->n_locals	= 0;
    new->locals_alloc	= 0;
    new->local_vars	= NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
271

Alexandre Julliard's avatar
Alexandre Julliard committed
272 273
    new->flags		= flags;
    new->next		= NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
274 275 276 277

    /* Now insert into the hash table */
    new->next = name_hash_table[hash];
    name_hash_table[hash] = new;
Alexandre Julliard's avatar
Alexandre Julliard committed
278

Alexandre Julliard's avatar
Alexandre Julliard committed
279 280 281 282 283 284 285
    /*
     * Check some heuristics based upon the file name to see whether
     * we want to step through this guy or not.  These are machine generated
     * assembly files that are used to translate between the MS way of
     * calling things and the GCC way of calling things.  In general we
     * always want to step through.
     */
286 287 288 289 290 291 292
    if ( source != NULL ) {
        int	len = strlen(source);

	if (len > 2 && source[len-2] == '.' && source[len-1] == 's') {
	    char* c = strrchr(source - 2, '/');
	    if (c != NULL) {
		if (strcmp(c + 1, "asmrelay.s") == 0)
Alexandre Julliard's avatar
Alexandre Julliard committed
293
		    new->flags |= SYM_TRAMPOLINE;
294 295 296
	    }
	}
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
297 298

    sortlist_valid = FALSE;
Alexandre Julliard's avatar
Alexandre Julliard committed
299
    return new;
Alexandre Julliard's avatar
Alexandre Julliard committed
300 301
}

302
BOOL DEBUG_Normalize(struct name_hash * nh )
Alexandre Julliard's avatar
Alexandre Julliard committed
303 304 305 306 307 308 309 310 311 312 313 314 315 316
{

  /*
   * We aren't adding any more locals or linenumbers to this function.
   * Free any spare memory that we might have allocated.
   */
  if( nh == NULL )
    {
      return TRUE;
    }

  if( nh->n_locals != nh->locals_alloc )
    {
      nh->locals_alloc = nh->n_locals;
317
      nh->local_vars = DBG_realloc(nh->local_vars,
Alexandre Julliard's avatar
Alexandre Julliard committed
318 319 320 321 322 323
				  nh->locals_alloc * sizeof(WineLocals));
    }

  if( nh->n_lines != nh->lines_alloc )
    {
      nh->lines_alloc = nh->n_lines;
324
      nh->linetab = DBG_realloc(nh->linetab,
Alexandre Julliard's avatar
Alexandre Julliard committed
325 326 327 328 329
			      nh->lines_alloc * sizeof(WineLineNo));
    }

  return TRUE;
}
Alexandre Julliard's avatar
Alexandre Julliard committed
330

Alexandre Julliard's avatar
Alexandre Julliard committed
331 332 333 334 335
/***********************************************************************
 *           DEBUG_GetSymbolValue
 *
 * Get the address of a named symbol.
 */
336 337
static int    DEBUG_GSV_Helper(const char* name, const int lineno, 
			       DBG_VALUE* value, int num, int bp_flag)
Alexandre Julliard's avatar
Alexandre Julliard committed
338
{
339 340 341 342 343 344 345 346
   struct name_hash*	nh;
   int			i = 0;
   DBG_ADDR		addr;

   for (nh = name_hash_table[name_hash(name)]; nh; nh = nh->next)
   {
      if ((nh->flags & SYM_INVALID) != 0) continue;
      if (!strcmp(nh->name, name) && DEBUG_GetLineNumberAddr( nh, lineno, &addr, bp_flag ))
Alexandre Julliard's avatar
Alexandre Julliard committed
347
      {
348 349 350 351 352
	 if (i >= num) return num + 1;
	 value[i].addr = addr;
	 value[i].type = nh->value.type;
	 value[i].cookie = nh->value.cookie;
	 i++;
Alexandre Julliard's avatar
Alexandre Julliard committed
353
      }
354 355 356
   }
   return i;
}
Alexandre Julliard's avatar
Alexandre Julliard committed
357

358 359 360 361 362 363 364 365 366 367 368 369 370
BOOL DEBUG_GetSymbolValue( const char * name, const int lineno, 
			   DBG_VALUE *rtn, int bp_flag )
{
#define NUMDBGV 10
   /* FIXME: NUMDBGV should be made variable */
   DBG_VALUE 	value[NUMDBGV];
   DBG_VALUE	vtmp;
   int		num, i;

   num = DEBUG_GSV_Helper(name, lineno, value, NUMDBGV, bp_flag);
   if (!num && (name[0] != '_'))
   {
      char buffer[256];
371
	
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
      assert(strlen(name) < sizeof(buffer) - 2); /* one for '_', one for '\0' */
      buffer[0] = '_';
      strcpy(buffer + 1, name);
      num = DEBUG_GSV_Helper(buffer, lineno, value, NUMDBGV, bp_flag);
   }

   /* now get the local symbols if any */
   if (DEBUG_GetStackSymbolValue(name, &vtmp) && num < NUMDBGV) 
   {
      value[num] = vtmp;
      num++;
   }

   if (num == 0) {
      return FALSE;
   } else if (!DEBUG_interactiveP || num == 1) {
      i = 0;
   } else {
      char*	ptr;
      if (num == NUMDBGV+1) {
	 DEBUG_Printf(DBG_CHN_MESG, "Too many addresses for symbol '%s', limiting the first %d\n", name, NUMDBGV);
	 num = NUMDBGV;
Alexandre Julliard's avatar
Alexandre Julliard committed
394
      }
395 396 397 398 399 400 401 402 403 404
      DEBUG_Printf(DBG_CHN_MESG, "Many symbols with name '%s', choose the one you want (<cr> to abort):\n", name);
      for (i = 0; i < num; i++) {
	 DEBUG_Printf(DBG_CHN_MESG, "[%d]: ", i + 1);
	 DEBUG_PrintAddress( &value[i].addr, DEBUG_GetSelectorType(value[i].addr.seg), TRUE);
	 DEBUG_Printf(DBG_CHN_MESG, "\n");
      }
      do {
	 ptr = readline("=> ");
	 if (!*ptr) return FALSE;
	 i = atoi(ptr);
405 406 407 408 409 410
	 if (i < 1 || i > num)
	     DEBUG_Printf(DBG_CHN_MESG, "Invalid choice %d\n", i);
      } while (i < 1 || i > num);

      /* The array is 0-based, but the choices are 1..n, so we have to subtract one before returning. */
      i--;
411 412 413
   }
   *rtn = value[i];
   return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
414
}
Alexandre Julliard's avatar
Alexandre Julliard committed
415

Alexandre Julliard's avatar
Alexandre Julliard committed
416 417 418 419 420
/***********************************************************************
 *           DEBUG_GetLineNumberAddr
 *
 * Get the address of a named symbol.
 */
421
BOOL DEBUG_GetLineNumberAddr( const struct name_hash * nh, const int lineno, 
422
			      DBG_ADDR *addr, int bp_flag )
Alexandre Julliard's avatar
Alexandre Julliard committed
423 424
{
    int i;
Alexandre Julliard's avatar
Alexandre Julliard committed
425 426 427

    if( lineno == -1 )
      {
428
	*addr = nh->value.addr;
Alexandre Julliard's avatar
Alexandre Julliard committed
429 430 431 432
	if( bp_flag )
	  {
	    addr->off += nh->breakpoint_offset;
	  }
Alexandre Julliard's avatar
Alexandre Julliard committed
433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
      }
    else
      {
	/*
	 * Search for the specific line number.  If we don't find it,
	 * then return FALSE.
	 */
	if( nh->linetab == NULL )
	  {
	    return FALSE;
	  }

	for(i=0; i < nh->n_lines; i++ )
	  {
	    if( nh->linetab[i].line_number == lineno )
	      {
		*addr = nh->linetab[i].pc_offset;
		return TRUE;
	      }
	  }

	/*
	 * This specific line number not found.
	 */
	return FALSE;
      }

Alexandre Julliard's avatar
Alexandre Julliard committed
460
    return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
461 462 463
}


Alexandre Julliard's avatar
Alexandre Julliard committed
464 465 466 467 468
/***********************************************************************
 *           DEBUG_SetSymbolValue
 *
 * Set the address of a named symbol.
 */
469
BOOL DEBUG_SetSymbolValue( const char * name, const DBG_VALUE *value )
Alexandre Julliard's avatar
Alexandre Julliard committed
470
{
Alexandre Julliard's avatar
Alexandre Julliard committed
471 472
    char buffer[256];
    struct name_hash *nh;
Alexandre Julliard's avatar
Alexandre Julliard committed
473

474 475
    assert(value->cookie == DV_TARGET || value->cookie == DV_HOST);

Alexandre Julliard's avatar
Alexandre Julliard committed
476 477
    for(nh = name_hash_table[name_hash(name)]; nh; nh = nh->next)
        if (!strcmp(nh->name, name)) break;
Alexandre Julliard's avatar
Alexandre Julliard committed
478

Alexandre Julliard's avatar
Alexandre Julliard committed
479 480 481 482 483 484 485
    if (!nh && (name[0] != '_'))
    {
        buffer[0] = '_';
        strcpy(buffer+1, name);
        for(nh = name_hash_table[name_hash(buffer)]; nh; nh = nh->next)
            if (!strcmp(nh->name, buffer)) break;
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
486

Alexandre Julliard's avatar
Alexandre Julliard committed
487
    if (!nh) return FALSE;
488 489
    nh->value = *value;
    nh->flags &= ~SYM_INVALID;
490 491

#ifdef __i386__
492
    DEBUG_FixAddress( &nh->value.addr, DEBUG_context.SegDs );
493 494
#endif

Alexandre Julliard's avatar
Alexandre Julliard committed
495 496
    return TRUE;
}
Alexandre Julliard's avatar
Alexandre Julliard committed
497 498


Alexandre Julliard's avatar
Alexandre Julliard committed
499 500 501 502
/***********************************************************************
 *           DEBUG_FindNearestSymbol
 *
 * Find the symbol nearest to a given address.
Alexandre Julliard's avatar
Alexandre Julliard committed
503 504
 * If ebp is specified as non-zero, it means we should dump the argument
 * list into the string we return as well.
Alexandre Julliard's avatar
Alexandre Julliard committed
505
 */
Alexandre Julliard's avatar
Alexandre Julliard committed
506 507
const char * DEBUG_FindNearestSymbol( const DBG_ADDR *addr, int flag,
				      struct name_hash ** rtn,
Alexandre Julliard's avatar
Alexandre Julliard committed
508 509
				      unsigned int ebp,
				      struct list_id * source)
Alexandre Julliard's avatar
Alexandre Julliard committed
510
{
Alexandre Julliard's avatar
Alexandre Julliard committed
511 512 513
    static char name_buffer[MAX_PATH + 256];
    static char arglist[1024];
    static char argtmp[256];
Alexandre Julliard's avatar
Alexandre Julliard committed
514
    struct name_hash * nearest = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
515
    int mid, high, low;
Alexandre Julliard's avatar
Alexandre Julliard committed
516 517 518
    unsigned	int * ptr;
    int lineno;
    char * lineinfo, *sourcefile;
Alexandre Julliard's avatar
Alexandre Julliard committed
519
    int i;
Alexandre Julliard's avatar
Alexandre Julliard committed
520
    char linebuff[16];
521
    unsigned val;
522 523
    DBG_MODULE*	module;
    char modbuf[256];
Alexandre Julliard's avatar
Alexandre Julliard committed
524

Alexandre Julliard's avatar
Alexandre Julliard committed
525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
    if( rtn != NULL )
      {
	*rtn = NULL;
      }

    if( source != NULL )
      {
 	source->sourcefile = NULL;
	source->line = -1;
      }

    if( sortlist_valid == FALSE )
      {
	DEBUG_ResortSymbols();
      }

    if( sortlist_valid == FALSE )
      {
	return NULL;
      }

    /*
     * FIXME  - use the binary search that we added to
     * the function DEBUG_CheckLinenoStatus.  Better yet, we should
     * probably keep some notion of the current function so we don't
     * have to search every time.
     */
    /*
     * Binary search to find closest symbol.
     */
    low = 0;
    high = sorttab_nsym;
557 558 559
    if( addr_sorttab[0]->value.addr.seg > addr->seg
	|| (   addr_sorttab[0]->value.addr.seg == addr->seg 
	    && addr_sorttab[0]->value.addr.off > addr->off) )
Alexandre Julliard's avatar
Alexandre Julliard committed
560 561 562
      {
	nearest = NULL;
      }
563 564 565
    else if( addr_sorttab[high - 1]->value.addr.seg < addr->seg
	|| (   addr_sorttab[high - 1]->value.addr.seg == addr->seg 
	    && addr_sorttab[high - 1]->value.addr.off < addr->off) )
Alexandre Julliard's avatar
Alexandre Julliard committed
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
      {
	nearest = addr_sorttab[high - 1];
      }
    else
      {
	while(1==1)
	  {
	    mid = (high + low)/2;
	    if( mid == low )
	      {
		/* 
		 * See if there are any other entries that might also
		 * have the same address, and would also have a line
		 * number table.  
		 */
		if( mid > 0 && addr_sorttab[mid]->linetab == NULL )
		  {
583 584 585 586
		    if(    (addr_sorttab[mid - 1]->value.addr.seg ==
			    addr_sorttab[mid]->value.addr.seg)
			&& (addr_sorttab[mid - 1]->value.addr.off ==
			    addr_sorttab[mid]->value.addr.off)
Alexandre Julliard's avatar
Alexandre Julliard committed
587 588 589 590 591 592 593 594 595
		        && (addr_sorttab[mid - 1]->linetab != NULL) )
		      {
			mid--;
		      }
		  }

		if(    (mid < sorttab_nsym - 1)
		    && (addr_sorttab[mid]->linetab == NULL) )
		  {
596 597 598 599
		    if(    (addr_sorttab[mid + 1]->value.addr.seg ==
			    addr_sorttab[mid]->value.addr.seg)
			&& (addr_sorttab[mid + 1]->value.addr.off ==
			    addr_sorttab[mid]->value.addr.off)
Alexandre Julliard's avatar
Alexandre Julliard committed
600 601 602 603 604 605 606
		        && (addr_sorttab[mid + 1]->linetab != NULL) )
		      {
			mid++;
		      }
		  }
		nearest = addr_sorttab[mid];
#if 0
607 608 609 610 611 612
		DEBUG_Printf(DBG_CHN_MESG, "Found %x:%x when looking for %x:%x %x %s\n",
			     addr_sorttab[mid ]->value.addr.seg,
			     addr_sorttab[mid ]->value.addr.off,
			     addr->seg, addr->off,
			     addr_sorttab[mid ]->linetab,
			     addr_sorttab[mid ]->name);
Alexandre Julliard's avatar
Alexandre Julliard committed
613 614 615
#endif
		break;
	      }
616 617 618
	    if(    (addr_sorttab[mid]->value.addr.seg < addr->seg)
		|| (   addr_sorttab[mid]->value.addr.seg == addr->seg 
		    && addr_sorttab[mid]->value.addr.off <= addr->off) )
Alexandre Julliard's avatar
Alexandre Julliard committed
619 620 621 622 623 624 625 626 627
	      {
		low = mid;
	      }
	    else
	      {
		high = mid;
	      }
	  }
      }
Alexandre Julliard's avatar
Alexandre Julliard committed
628

Alexandre Julliard's avatar
Alexandre Julliard committed
629 630
    if (!nearest) return NULL;

Alexandre Julliard's avatar
Alexandre Julliard committed
631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
    if( rtn != NULL )
      {
	*rtn = nearest;
      }

    /*
     * Fill in the relevant bits to the structure so that we can
     * locate the source and line for this bit of code.
     */
    if( source != NULL )
      {
	source->sourcefile = nearest->sourcefile;
	if( nearest->linetab == NULL )
	  {
	    source->line = -1;
	  }
	else
	  {
	    source->line = nearest->linetab[0].line_number;
	  }
      }

Alexandre Julliard's avatar
Alexandre Julliard committed
653 654 655
    lineinfo = "";
    lineno = -1;

Alexandre Julliard's avatar
Alexandre Julliard committed
656 657 658 659 660
    /*
     * Prepare to display the argument list.  If ebp is specified, it is
     * the framepointer for the function in question.  If not specified,
     * we don't want the arglist.
     */
Alexandre Julliard's avatar
Alexandre Julliard committed
661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683
    memset(arglist, '\0', sizeof(arglist));
    if( ebp != 0 )
      {
	for(i=0; i < nearest->n_locals; i++ )
	  {
	    /*
	     * If this is a register (offset == 0) or a local
	     * variable, we don't want to know about it.
	     */
	    if( nearest->local_vars[i].offset <= 0 )
	      {
		continue;
	      }

	    ptr = (unsigned int *) (ebp + nearest->local_vars[i].offset);
	    if( arglist[0] == '\0' )
	      {
		arglist[0] = '(';
	      }
	    else
	      {
		strcat(arglist, ", ");
	      }
684 685
	    DEBUG_READ_MEM_VERBOSE(ptr, &val, sizeof(val));
	    sprintf(argtmp, "%s=0x%x", nearest->local_vars[i].name, val);
Alexandre Julliard's avatar
Alexandre Julliard committed
686 687 688 689 690 691 692 693 694

	    strcat(arglist, argtmp);
	  }
	if( arglist[0] == '(' )
	  {
	    strcat(arglist, ")");
	  }
      }

695 696 697 698 699 700 701 702 703 704
    module = DEBUG_FindModuleByAddr((void*)DEBUG_ToLinear(addr), DMT_UNKNOWN);
    if (module) {
       char*	ptr = strrchr(module->module_name, '/');
       
       if (!ptr++) ptr = module->module_name;
       sprintf( modbuf, " in %s", ptr);
    }
    else
       modbuf[0] = '\0';

Alexandre Julliard's avatar
Alexandre Julliard committed
705
    if( (nearest->sourcefile != NULL) && (flag == TRUE)
706
	&& (addr->off - nearest->value.addr.off < 0x100000) )
Alexandre Julliard's avatar
Alexandre Julliard committed
707 708 709 710 711 712
      {

	/*
	 * Try and find the nearest line number to the current offset.
	 */
	if( nearest->linetab != NULL )
Alexandre Julliard's avatar
Alexandre Julliard committed
713 714 715 716 717 718 719 720 721 722 723 724 725
        {
            low = 0;
            high = nearest->n_lines;
            while ((high - low) > 1)
            {
                mid = (high + low) / 2;
                if (addr->off < nearest->linetab[mid].pc_offset.off)
                    high = mid;
                else
                    low = mid;
            }
            lineno = nearest->linetab[low].line_number;
        }
Alexandre Julliard's avatar
Alexandre Julliard committed
726 727 728 729 730

	if( lineno != -1 )
	  {
	    sprintf(linebuff, ":%d", lineno);
	    lineinfo = linebuff;
Alexandre Julliard's avatar
Alexandre Julliard committed
731 732 733 734
	    if( source != NULL )
	      {
		source->line = lineno;
	      }
Alexandre Julliard's avatar
Alexandre Julliard committed
735 736 737 738 739 740
	  }

        /* Remove the path from the file name */
        sourcefile = strrchr( nearest->sourcefile, '/' );
        if (!sourcefile) sourcefile = nearest->sourcefile;
        else sourcefile++;
741
	
742
	if (addr->off == nearest->value.addr.off)
743 744
	  sprintf( name_buffer, "%s%s [%s%s]%s", nearest->name, 
		   arglist, sourcefile, lineinfo, modbuf);
Alexandre Julliard's avatar
Alexandre Julliard committed
745
	else
746
	  sprintf( name_buffer, "%s+0x%lx%s [%s%s]%s", nearest->name,
747
		   addr->off - nearest->value.addr.off, 
748
		   arglist, sourcefile, lineinfo, modbuf );
Alexandre Julliard's avatar
Alexandre Julliard committed
749
      }
Alexandre Julliard's avatar
Alexandre Julliard committed
750
    else
Alexandre Julliard's avatar
Alexandre Julliard committed
751
      {
752
	if (addr->off == nearest->value.addr.off)
753
	  sprintf( name_buffer, "%s%s%s", nearest->name, arglist, modbuf);
Alexandre Julliard's avatar
Alexandre Julliard committed
754
	else {
755
	  if (addr->seg && (nearest->value.addr.seg!=addr->seg))
Alexandre Julliard's avatar
Alexandre Julliard committed
756 757
	      return NULL;
	  else
758 759
	      sprintf( name_buffer, "%s+0x%lx%s%s", nearest->name,
		       addr->off - nearest->value.addr.off, arglist, modbuf);
Alexandre Julliard's avatar
Alexandre Julliard committed
760
 	}
Alexandre Julliard's avatar
Alexandre Julliard committed
761
      }
Alexandre Julliard's avatar
Alexandre Julliard committed
762
    return name_buffer;
Alexandre Julliard's avatar
Alexandre Julliard committed
763 764 765
}


Alexandre Julliard's avatar
Alexandre Julliard committed
766 767 768 769 770
/***********************************************************************
 *           DEBUG_ReadSymbolTable
 *
 * Read a symbol file into the hash table.
 */
771
void DEBUG_ReadSymbolTable( const char* filename )
Alexandre Julliard's avatar
Alexandre Julliard committed
772
{
Alexandre Julliard's avatar
Alexandre Julliard committed
773
    FILE * symbolfile;
774
    DBG_VALUE value;
Alexandre Julliard's avatar
Alexandre Julliard committed
775 776
    char type;
    char * cpnt;
Alexandre Julliard's avatar
Alexandre Julliard committed
777
    char buffer[256];
Alexandre Julliard's avatar
Alexandre Julliard committed
778
    char name[256];
Alexandre Julliard's avatar
Alexandre Julliard committed
779

Alexandre Julliard's avatar
Alexandre Julliard committed
780 781
    if (!(symbolfile = fopen(filename, "r")))
    {
782
        DEBUG_Printf( DBG_CHN_WARN, "Unable to open symbol table %s\n", filename );
Alexandre Julliard's avatar
Alexandre Julliard committed
783 784
        return;
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
785

786
    DEBUG_Printf( DBG_CHN_MESG, "Reading symbols from file %s\n", filename );
Alexandre Julliard's avatar
Alexandre Julliard committed
787

788 789 790 791 792
    value.type = NULL;
    value.addr.seg = 0;
    value.addr.off = 0;
    value.cookie = DV_TARGET;
 
Alexandre Julliard's avatar
Alexandre Julliard committed
793
    while (1)
Alexandre Julliard's avatar
Alexandre Julliard committed
794
    {
Alexandre Julliard's avatar
Alexandre Julliard committed
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811
        fgets( buffer, sizeof(buffer), symbolfile );
        if (feof(symbolfile)) break;
		
        /* Strip any text after a # sign (i.e. comments) */
        cpnt = buffer;
        while (*cpnt)
            if(*cpnt++ == '#') { *cpnt = 0; break; }
		
        /* Quietly ignore any lines that have just whitespace */
        cpnt = buffer;
        while(*cpnt)
        {
            if(*cpnt != ' ' && *cpnt != '\t') break;
            cpnt++;
        }
        if (!(*cpnt) || *cpnt == '\n') continue;
		
812 813
        if (sscanf(buffer, "%lx %c %s", &value.addr.off, &type, name) == 3)
	   DEBUG_AddSymbol( name, &value, NULL, SYM_WINE );
Alexandre Julliard's avatar
Alexandre Julliard committed
814
    }
Alexandre Julliard's avatar
Alexandre Julliard committed
815 816 817
    fclose(symbolfile);
}

Alexandre Julliard's avatar
Alexandre Julliard committed
818

Alexandre Julliard's avatar
Alexandre Julliard committed
819 820 821 822 823 824 825 826 827 828 829
void
DEBUG_AddLineNumber( struct name_hash * func, int line_num, 
		     unsigned long offset )
{
  if( func == NULL )
    {
      return;
    }

  if( func->n_lines + 1 >= func->lines_alloc )
    {
Alexandre Julliard's avatar
Alexandre Julliard committed
830
      func->lines_alloc += 64;
831
      func->linetab = DBG_realloc(func->linetab,
Alexandre Julliard's avatar
Alexandre Julliard committed
832 833 834 835
			      func->lines_alloc * sizeof(WineLineNo));
    }

  func->linetab[func->n_lines].line_number = line_num;
836 837
  func->linetab[func->n_lines].pc_offset.seg = func->value.addr.seg;
  func->linetab[func->n_lines].pc_offset.off = func->value.addr.off + offset;
Alexandre Julliard's avatar
Alexandre Julliard committed
838 839 840 841
  func->n_lines++;
}


Alexandre Julliard's avatar
Alexandre Julliard committed
842
struct wine_locals *
Alexandre Julliard's avatar
Alexandre Julliard committed
843 844 845 846 847 848 849 850
DEBUG_AddLocal( struct name_hash * func, int regno, 
		int offset,
		int pc_start,
		int pc_end,
		char * name)
{
  if( func == NULL )
    {
Alexandre Julliard's avatar
Alexandre Julliard committed
851
      return NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
852 853 854 855 856
    }

  if( func->n_locals + 1 >= func->locals_alloc )
    {
      func->locals_alloc += 32;
857
      func->local_vars = DBG_realloc(func->local_vars,
Alexandre Julliard's avatar
Alexandre Julliard committed
858 859 860 861 862 863 864
			      func->locals_alloc * sizeof(WineLocals));
    }

  func->local_vars[func->n_locals].regno = regno;
  func->local_vars[func->n_locals].offset = offset;
  func->local_vars[func->n_locals].pc_start = pc_start;
  func->local_vars[func->n_locals].pc_end = pc_end;
865
  func->local_vars[func->n_locals].name = DBG_strdup(name);
Alexandre Julliard's avatar
Alexandre Julliard committed
866
  func->local_vars[func->n_locals].type = NULL;
Alexandre Julliard's avatar
Alexandre Julliard committed
867
  func->n_locals++;
Alexandre Julliard's avatar
Alexandre Julliard committed
868 869 870 871 872

  return &func->local_vars[func->n_locals - 1];
}

void
873
DEBUG_DumpHashInfo(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
874 875 876 877 878 879 880 881 882 883 884 885 886 887 888
{
  int i;
  int depth;
  struct name_hash *nh;

  /*
   * Utility function to dump stats about the hash table.
   */
    for(i=0; i<NR_NAME_HASH; i++)
    {
      depth = 0;
      for (nh = name_hash_table[i]; nh; nh = nh->next)
	{
	  depth++;
	}
889
      DEBUG_Printf(DBG_CHN_MESG, "Bucket %d: %d\n", i, depth);
Alexandre Julliard's avatar
Alexandre Julliard committed
890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
    }
}

/***********************************************************************
 *           DEBUG_CheckLinenoStatus
 *
 * Find the symbol nearest to a given address.
 * If ebp is specified as non-zero, it means we should dump the argument
 * list into the string we return as well.
 */
int DEBUG_CheckLinenoStatus( const DBG_ADDR *addr)
{
    struct name_hash * nearest = NULL;
    int mid, high, low;

    if( sortlist_valid == FALSE )
      {
	DEBUG_ResortSymbols();
      }

    /*
     * Binary search to find closest symbol.
     */
    low = 0;
    high = sorttab_nsym;
915 916 917
    if( addr_sorttab[0]->value.addr.seg > addr->seg
	|| (   addr_sorttab[0]->value.addr.seg == addr->seg 
	    && addr_sorttab[0]->value.addr.off > addr->off) )
Alexandre Julliard's avatar
Alexandre Julliard committed
918 919 920
      {
	nearest = NULL;
      }
921 922 923
    else if( addr_sorttab[high - 1]->value.addr.seg < addr->seg
	|| (   addr_sorttab[high - 1]->value.addr.seg == addr->seg 
	    && addr_sorttab[high - 1]->value.addr.off < addr->off) )
Alexandre Julliard's avatar
Alexandre Julliard committed
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
      {
	nearest = addr_sorttab[high - 1];
      }
    else
      {
	while(1==1)
	  {
	    mid = (high + low)/2;
	    if( mid == low )
	      {
		/* 
		 * See if there are any other entries that might also
		 * have the same address, and would also have a line
		 * number table.  
		 */
		if( mid > 0 && addr_sorttab[mid]->linetab == NULL )
		  {
941 942 943 944
		    if(    (addr_sorttab[mid - 1]->value.addr.seg ==
			    addr_sorttab[mid]->value.addr.seg)
			&& (addr_sorttab[mid - 1]->value.addr.off ==
			    addr_sorttab[mid]->value.addr.off)
Alexandre Julliard's avatar
Alexandre Julliard committed
945 946 947 948 949 950 951 952 953
		        && (addr_sorttab[mid - 1]->linetab != NULL) )
		      {
			mid--;
		      }
		  }

		if(    (mid < sorttab_nsym - 1)
		    && (addr_sorttab[mid]->linetab == NULL) )
		  {
954 955 956 957
		    if(    (addr_sorttab[mid + 1]->value.addr.seg ==
			    addr_sorttab[mid]->value.addr.seg)
			&& (addr_sorttab[mid + 1]->value.addr.off ==
			    addr_sorttab[mid]->value.addr.off)
Alexandre Julliard's avatar
Alexandre Julliard committed
958 959 960 961 962 963 964
		        && (addr_sorttab[mid + 1]->linetab != NULL) )
		      {
			mid++;
		      }
		  }
		nearest = addr_sorttab[mid];
#if 0
965 966 967 968 969 970
		DEBUG_Printf(DBG_CHN_MESG, "Found %x:%x when looking for %x:%x %x %s\n",
			     addr_sorttab[mid ]->value.addr.seg,
			     addr_sorttab[mid ]->value.addr.off,
			     addr->seg, addr->off,
			     addr_sorttab[mid ]->linetab,
			     addr_sorttab[mid ]->name);
Alexandre Julliard's avatar
Alexandre Julliard committed
971 972 973
#endif
		break;
	      }
974 975 976
	    if(    (addr_sorttab[mid]->value.addr.seg < addr->seg)
		|| (   addr_sorttab[mid]->value.addr.seg == addr->seg 
		    && addr_sorttab[mid]->value.addr.off <= addr->off) )
Alexandre Julliard's avatar
Alexandre Julliard committed
977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018
	      {
		low = mid;
	      }
	    else
	      {
		high = mid;
	      }
	  }
      }

    if (!nearest) return FUNC_HAS_NO_LINES;

    if( nearest->flags & SYM_STEP_THROUGH )
      {
	/*
	 * This will cause us to keep single stepping until
	 * we get to the other side somewhere.
	 */
	return NOT_ON_LINENUMBER;
      }

    if( (nearest->flags & SYM_TRAMPOLINE) )
      {
	/*
	 * This will cause us to keep single stepping until
	 * we get to the other side somewhere.
	 */
	return FUNC_IS_TRAMPOLINE;
      }

    if( nearest->linetab == NULL )
      {
	return FUNC_HAS_NO_LINES;
      }


    /*
     * We never want to stop on the first instruction of a function
     * even if it has it's own linenumber.  Let the thing keep running
     * until it gets past the function prologue.  We only do this if there
     * is more than one line number for the function, of course.
     */
1019
    if( nearest->value.addr.off == addr->off && nearest->n_lines > 1 )
Alexandre Julliard's avatar
Alexandre Julliard committed
1020 1021 1022 1023 1024
      {
	return NOT_ON_LINENUMBER;
      }

    if( (nearest->sourcefile != NULL)
1025
	&& (addr->off - nearest->value.addr.off < 0x100000) )
Alexandre Julliard's avatar
Alexandre Julliard committed
1026
      {
Alexandre Julliard's avatar
Alexandre Julliard committed
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
          low = 0;
          high = nearest->n_lines;
          while ((high - low) > 1)
          {
              mid = (high + low) / 2;
              if (addr->off < nearest->linetab[mid].pc_offset.off) high = mid;
              else low = mid;
          }
          if (addr->off == nearest->linetab[low].pc_offset.off)
              return AT_LINENUMBER;
          else
              return NOT_ON_LINENUMBER;
Alexandre Julliard's avatar
Alexandre Julliard committed
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
      }

    return FUNC_HAS_NO_LINES;
}

/***********************************************************************
 *           DEBUG_GetFuncInfo
 *
 * Find the symbol nearest to a given address.
 * Returns sourcefile name and line number in a format that the listing
 * handler can deal with.
 */
void
DEBUG_GetFuncInfo( struct list_id * ret, const char * filename, 
		   const char * name)
{
    char buffer[256];
    char * pnt;
    struct name_hash *nh;

    for(nh = name_hash_table[name_hash(name)]; nh; nh = nh->next)
      {
	if( filename != NULL )
	  {

	    if( nh->sourcefile == NULL )
	      {
		continue;
	      }

	    pnt = strrchr(nh->sourcefile, '/');
	    if( strcmp(nh->sourcefile, filename) != 0
		&& (pnt == NULL || strcmp(pnt + 1, filename) != 0) )
	      {
		continue;
	      }
	  }
        if (!strcmp(nh->name, name)) break;
      }

    if (!nh && (name[0] != '_'))
    {
        buffer[0] = '_';
        strcpy(buffer+1, name);
        for(nh = name_hash_table[name_hash(buffer)]; nh; nh = nh->next)
	  {
	    if( filename != NULL )
	      {
		if( nh->sourcefile == NULL )
		  {
		    continue;
		  }

		pnt = strrchr(nh->sourcefile, '/');
		if( strcmp(nh->sourcefile, filename) != 0
		    && (pnt == NULL || strcmp(pnt + 1, filename) != 0) )
		  {
		    continue;
		  }
	      }
            if (!strcmp(nh->name, buffer)) break;
	  }
    }

    if( !nh )
      {
	if( filename != NULL )
	  {
1107
	    DEBUG_Printf(DBG_CHN_MESG, "No such function %s in %s\n", name, filename);
Alexandre Julliard's avatar
Alexandre Julliard committed
1108 1109 1110
	  }
	else
	  {
1111
	    DEBUG_Printf(DBG_CHN_MESG, "No such function %s\n", name);
Alexandre Julliard's avatar
Alexandre Julliard committed
1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
	  }
	ret->sourcefile = NULL;
	ret->line = -1;
	return;
      }

    ret->sourcefile = nh->sourcefile;

    /*
     * Search for the specific line number.  If we don't find it,
     * then return FALSE.
     */
    if( nh->linetab == NULL )
      {
	ret->line = -1;
      }
    else
      {
	ret->line = nh->linetab[0].line_number;
      }
}

/***********************************************************************
 *           DEBUG_GetStackSymbolValue
 *
 * Get the address of a named symbol from the current stack frame.
 */
static
1140
BOOL DEBUG_GetStackSymbolValue( const char * name, DBG_VALUE *value )
Alexandre Julliard's avatar
Alexandre Julliard committed
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158
{
  struct name_hash * curr_func;
  unsigned int	     ebp;
  unsigned int	     eip;
  int		     i;

  if( DEBUG_GetCurrentFrame(&curr_func, &eip, &ebp) == FALSE )
    {
      return FALSE;
    }

  for(i=0; i < curr_func->n_locals; i++ )
    {
      /*
       * Test the range of validity of the local variable.  This
       * comes up with RBRAC/LBRAC stabs in particular.
       */
      if(    (curr_func->local_vars[i].pc_start != 0)
1159
	  && ((eip - curr_func->value.addr.off) 
Alexandre Julliard's avatar
Alexandre Julliard committed
1160 1161 1162 1163 1164 1165
	      < curr_func->local_vars[i].pc_start) )
	{
	  continue;
	}

      if(    (curr_func->local_vars[i].pc_end != 0)
1166
	  && ((eip - curr_func->value.addr.off) 
Alexandre Julliard's avatar
Alexandre Julliard committed
1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
	      > curr_func->local_vars[i].pc_end) )
	{
	  continue;
	}

      if( strcmp(name, curr_func->local_vars[i].name) == 0 )
	{
	  /*
	   * OK, we found it.  Now figure out what to do with this.
	   */
	  if( curr_func->local_vars[i].regno != 0 )
	    {
	      /*
1180
	       * Register variable.  Point to DEBUG_context field.
Alexandre Julliard's avatar
Alexandre Julliard committed
1181
	       */
1182
	      assert(curr_func->local_vars[i].regno - 1 < sizeof(reg_ofs)/sizeof(reg_ofs[0]));
1183 1184 1185
	      value->addr.off = ((DWORD)&DEBUG_context) + 
		 reg_ofs[curr_func->local_vars[i].regno - 1];
	      value->cookie = DV_HOST;
Alexandre Julliard's avatar
Alexandre Julliard committed
1186
	    }
1187 1188 1189 1190 1191 1192 1193
	  else 
	    {
	      value->addr.off = ebp + curr_func->local_vars[i].offset;
	      value->cookie = DV_TARGET;
	    }
	  value->addr.seg = 0;
	  value->type = curr_func->local_vars[i].type;
Alexandre Julliard's avatar
Alexandre Julliard committed
1194 1195 1196 1197

	  return TRUE;
	}
    }
1198

Alexandre Julliard's avatar
Alexandre Julliard committed
1199 1200 1201 1202
  return FALSE;
}

int
1203
DEBUG_InfoLocals(void)
Alexandre Julliard's avatar
Alexandre Julliard committed
1204 1205 1206 1207 1208 1209
{
  struct name_hash  * curr_func;
  unsigned int	      ebp;
  unsigned int	      eip;
  int		      i;
  unsigned int      * ptr;
1210
  unsigned int	      val;
Alexandre Julliard's avatar
Alexandre Julliard committed
1211 1212 1213 1214 1215 1216

  if( DEBUG_GetCurrentFrame(&curr_func, &eip, &ebp) == FALSE )
    {
      return FALSE;
    }

1217 1218
  DEBUG_Printf(DBG_CHN_MESG, "%s:\n", curr_func->name);

Alexandre Julliard's avatar
Alexandre Julliard committed
1219 1220 1221 1222 1223 1224 1225
  for(i=0; i < curr_func->n_locals; i++ )
    {
      /*
       * Test the range of validity of the local variable.  This
       * comes up with RBRAC/LBRAC stabs in particular.
       */
      if(    (curr_func->local_vars[i].pc_start != 0)
1226
	  && ((eip - curr_func->value.addr.off) 
Alexandre Julliard's avatar
Alexandre Julliard committed
1227 1228 1229 1230 1231 1232
	      < curr_func->local_vars[i].pc_start) )
	{
	  continue;
	}

      if(    (curr_func->local_vars[i].pc_end != 0)
1233
	  && ((eip - curr_func->value.addr.off) 
Alexandre Julliard's avatar
Alexandre Julliard committed
1234 1235 1236 1237 1238
	      > curr_func->local_vars[i].pc_end) )
	{
	  continue;
	}
      
1239 1240
      DEBUG_PrintTypeCast(curr_func->local_vars[i].type);

1241
      if( curr_func->local_vars[i].regno != 0 )
Alexandre Julliard's avatar
Alexandre Julliard committed
1242
	{
1243 1244
	  ptr = (unsigned int *)(((DWORD)&DEBUG_context)
				 + reg_ofs[curr_func->local_vars[i].regno - 1]);
1245 1246
	  DEBUG_Printf(DBG_CHN_MESG, " %s (optimized into register $%s) == 0x%8.8x\n",
		       curr_func->local_vars[i].name,
1247 1248
		       reg_name[curr_func->local_vars[i].regno - 1],
		       *ptr);
Alexandre Julliard's avatar
Alexandre Julliard committed
1249 1250 1251
	}
      else
	{
1252 1253
	  DEBUG_READ_MEM_VERBOSE((void*)(ebp + curr_func->local_vars[i].offset), 
				 &val, sizeof(val));
1254 1255
	  DEBUG_Printf(DBG_CHN_MESG, " %s == 0x%8.8x\n",
		       curr_func->local_vars[i].name, val);
Alexandre Julliard's avatar
Alexandre Julliard committed
1256 1257 1258
	}
    }

1259
  return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275
}

int
DEBUG_SetSymbolSize(struct name_hash * sym, unsigned int len)
{
  sym->symbol_size = len;

  return TRUE;
}

int
DEBUG_SetSymbolBPOff(struct name_hash * sym, unsigned int off)
{
  sym->breakpoint_offset = off;

  return TRUE;
Alexandre Julliard's avatar
Alexandre Julliard committed
1276 1277
}

Alexandre Julliard's avatar
Alexandre Julliard committed
1278 1279 1280 1281
int
DEBUG_GetSymbolAddr(struct name_hash * sym, DBG_ADDR * addr)
{

1282
  *addr = sym->value.addr;
Alexandre Julliard's avatar
Alexandre Julliard committed
1283 1284 1285 1286 1287 1288 1289 1290 1291 1292

  return TRUE;
}

int DEBUG_SetLocalSymbolType(struct wine_locals * sym, struct datatype * type)
{
  sym->type = type;

  return TRUE;
}