/* This is not a perfect test, because if a function alloca's some
memory, puts some code there, and then jumps into it, then the test
- will succeed even though there is no call dummy. A better
- solution would be to keep track of where the call dummies are.
- Probably the best way to do that is by setting a breakpoint.c
- breakpoint at the end of the call dummy (wanted anyway, to clean
- up wait_for_inferior). Then we know that the sizeof (CALL_DUMMY)
- (or some such) bytes before that breakpoint are a call dummy.
- Only problem I see with this approach is figuring out to get rid
- of the breakpoint whenever the call dummy vanishes (e.g.
- return_command, or longjmp out of the called function), which we
- probably can solve (it's very similar to figuring out when a
- watchpoint on a local variable goes out of scope if it is being
- watched via something like a 386 debug register). */
+ will succeed even though there is no call dummy. Probably best is
+ to check for a bp_call_dummy breakpoint. */
if (PC_IN_CALL_DUMMY (fi->pc, sp, fi->frame))
{
/* Do this regardless of SOURCE because we don't have any source
printf_filtered ("#%-2d ", level);
if (addressprint)
if (fi->pc != sal.pc || !sal.symtab)
- printf_filtered ("%s in ", local_hex_string(fi->pc));
+ printf_filtered ("%s in ", local_hex_string((unsigned long) fi->pc));
fprintf_symbol_filtered (stdout, funname ? funname : "??", funlang,
DMGL_NO_OPTS);
wrap_here (" ");
if (!done)
{
if (addressprint && mid_statement)
- printf_filtered ("%s\t", local_hex_string(fi->pc));
+ printf_filtered ("%s\t", local_hex_string((unsigned long) fi->pc));
print_source_lines (sal.symtab, sal.line, sal.line + 1, 0);
}
current_source_line = max (sal.line - lines_to_list/2, 1);
{
int numargs = 0;
#define MAXARGS 4
- int args[MAXARGS];
+ CORE_ADDR args[MAXARGS];
if (frame_exp)
{
if (!addr_exp && selected_frame_level >= 0) {
printf_filtered ("Stack level %d, frame at %s:\n",
selected_frame_level,
- local_hex_string(FRAME_FP(frame)));
+ local_hex_string((unsigned long) FRAME_FP(frame)));
} else {
printf_filtered ("Stack frame at %s:\n",
- local_hex_string(FRAME_FP(frame)));
+ local_hex_string((unsigned long) FRAME_FP(frame)));
}
printf_filtered (" %s = %s",
reg_names[PC_REGNUM],
- local_hex_string(fi->pc));
+ local_hex_string((unsigned long) fi->pc));
wrap_here (" ");
if (funname)
puts_filtered ("; ");
wrap_here (" ");
printf_filtered ("saved %s %s\n", reg_names[PC_REGNUM],
- local_hex_string(FRAME_SAVED_PC (frame)));
+ local_hex_string((unsigned long) FRAME_SAVED_PC (frame)));
{
int frameless = 0;
if (calling_frame)
printf_filtered (" called by frame at %s",
- local_hex_string(FRAME_FP (calling_frame)));
+ local_hex_string((unsigned long) FRAME_FP (calling_frame)));
if (fi->next && calling_frame)
puts_filtered (",");
wrap_here (" ");
if (fi->next)
printf_filtered (" caller of frame at %s",
- local_hex_string (fi->next->frame));
+ local_hex_string ((unsigned long) fi->next->frame));
if (fi->next || calling_frame)
puts_filtered ("\n");
if (s)
printf_filtered (" Arglist at unknown address.\n");
else
{
- printf_filtered (" Arglist at %s,", local_hex_string(arg_list));
+ printf_filtered (" Arglist at %s,",
+ local_hex_string((unsigned long) arg_list));
FRAME_NUM_ARGS (numargs, fi);
if (numargs < 0)
if (arg_list == 0)
printf_filtered (" Locals at unknown address,");
else
- printf_filtered (" Locals at %s,", local_hex_string(arg_list));
+ printf_filtered (" Locals at %s,",
+ local_hex_string((unsigned long) arg_list));
}
#if defined (FRAME_FIND_SAVED_REGS)
/* The sp is special; what's returned isn't the save address, but
actually the value of the previous frame's sp. */
printf_filtered (" Previous frame's sp is %s\n",
- local_hex_string(fsr.regs[SP_REGNUM]));
+ local_hex_string((unsigned long) fsr.regs[SP_REGNUM]));
count = 0;
for (i = 0; i < NUM_REGS; i++)
if (fsr.regs[i] && i != SP_REGNUM)
puts_filtered (",");
wrap_here (" ");
printf_filtered (" %s at %s", reg_names[i],
- local_hex_string(fsr.regs[i]));
+ local_hex_string((unsigned long) fsr.regs[i]));
count++;
}
if (count)
fputs_filtered (SYMBOL_SOURCE_NAME (sym), stream);
if (addressprint)
fprintf_filtered (stream, " %s",
- local_hex_string(SYMBOL_VALUE_ADDRESS (sym)));
+ local_hex_string((unsigned long) SYMBOL_VALUE_ADDRESS (sym)));
fprintf_filtered (stream, " in file %s, line %d\n",
sal.symtab->filename, sal.line);
}
selected_frame_addr = FRAME_FP (selected_frame);
selected_frame_pc = (get_frame_info (selected_frame))->pc;
- /* Compute the return value (if any -- possibly getting errors here).
- Call VALUE_CONTENTS to make sure we have fully evaluated it, since
- it might live in the stack frame we're about to pop. */
+ /* Compute the return value (if any -- possibly getting errors here). */
if (retval_exp)
{
return_value = parse_and_eval (retval_exp);
- VALUE_CONTENTS (return_value);
+
+ /* Make sure we have fully evaluated it, since
+ it might live in the stack frame we're about to pop. */
+ if (VALUE_LAZY (return_value))
+ value_fetch_lazy (return_value);
}
/* If interactive, require confirmation. */