gdb/ax-general.c - gdb
Global variables defined
Functions defined
Macros defined
Source code
- #include "defs.h"
- #include "ax.h"
- #include "value.h"
- #include "user-regs.h"
- static void grow_expr (struct agent_expr *x, int n);
- static void append_const (struct agent_expr *x, LONGEST val, int n);
- static LONGEST read_const (struct agent_expr *x, int o, int n);
- static void generic_ext (struct agent_expr *x, enum agent_op op, int n);
- struct agent_expr *
- new_agent_expr (struct gdbarch *gdbarch, CORE_ADDR scope)
- {
- struct agent_expr *x = xmalloc (sizeof (*x));
- x->len = 0;
- x->size = 1;
- x->buf = xmalloc (x->size);
- x->gdbarch = gdbarch;
- x->scope = scope;
-
- x->reg_mask_len = 1;
- x->reg_mask = xmalloc (x->reg_mask_len * sizeof (x->reg_mask[0]));
- memset (x->reg_mask, 0, x->reg_mask_len * sizeof (x->reg_mask[0]));
- x->tracing = 0;
- x->trace_string = 0;
- return x;
- }
- void
- free_agent_expr (struct agent_expr *x)
- {
- xfree (x->buf);
- xfree (x->reg_mask);
- xfree (x);
- }
- static void
- do_free_agent_expr_cleanup (void *x)
- {
- free_agent_expr (x);
- }
- struct cleanup *
- make_cleanup_free_agent_expr (struct agent_expr *x)
- {
- return make_cleanup (do_free_agent_expr_cleanup, x);
- }
- static void
- grow_expr (struct agent_expr *x, int n)
- {
- if (x->len + n > x->size)
- {
- x->size *= 2;
- if (x->size < x->len + n)
- x->size = x->len + n + 10;
- x->buf = xrealloc (x->buf, x->size);
- }
- }
- static void
- append_const (struct agent_expr *x, LONGEST val, int n)
- {
- int i;
- grow_expr (x, n);
- for (i = n - 1; i >= 0; i--)
- {
- x->buf[x->len + i] = val & 0xff;
- val >>= 8;
- }
- x->len += n;
- }
- static LONGEST
- read_const (struct agent_expr *x, int o, int n)
- {
- int i;
- LONGEST accum = 0;
-
- if (o + n > x->len)
- error (_("GDB bug: ax-general.c (read_const): incomplete constant"));
- for (i = 0; i < n; i++)
- accum = (accum << 8) | x->buf[o + i];
- return accum;
- }
- void
- ax_simple (struct agent_expr *x, enum agent_op op)
- {
- grow_expr (x, 1);
- x->buf[x->len++] = op;
- }
- void
- ax_pick (struct agent_expr *x, int depth)
- {
- if (depth < 0 || depth > 255)
- error (_("GDB bug: ax-general.c (ax_pick): stack depth out of range"));
- ax_simple (x, aop_pick);
- append_const (x, 1, depth);
- }
- static void
- generic_ext (struct agent_expr *x, enum agent_op op, int n)
- {
-
- if (n < 0 || n > 255)
- error (_("GDB bug: ax-general.c (generic_ext): bit count out of range"));
-
- if (sizeof (LONGEST) * 8 > 255)
- error (_("GDB bug: ax-general.c (generic_ext): "
- "opcode has inadequate range"));
- grow_expr (x, 2);
- x->buf[x->len++] = op;
- x->buf[x->len++] = n;
- }
- void
- ax_ext (struct agent_expr *x, int n)
- {
- generic_ext (x, aop_ext, n);
- }
- void
- ax_zero_ext (struct agent_expr *x, int n)
- {
- generic_ext (x, aop_zero_ext, n);
- }
- void
- ax_trace_quick (struct agent_expr *x, int n)
- {
-
- if (n < 0 || n > 255)
- error (_("GDB bug: ax-general.c (ax_trace_quick): "
- "size out of range for trace_quick"));
- grow_expr (x, 2);
- x->buf[x->len++] = aop_trace_quick;
- x->buf[x->len++] = n;
- }
- int
- ax_goto (struct agent_expr *x, enum agent_op op)
- {
- grow_expr (x, 3);
- x->buf[x->len + 0] = op;
- x->buf[x->len + 1] = 0xff;
- x->buf[x->len + 2] = 0xff;
- x->len += 3;
- return x->len - 2;
- }
- void
- ax_label (struct agent_expr *x, int patch, int target)
- {
-
- if (target < 0 || target >= 0xffff)
- error (_("GDB bug: ax-general.c (ax_label): label target out of range"));
- x->buf[patch] = (target >> 8) & 0xff;
- x->buf[patch + 1] = target & 0xff;
- }
- void
- ax_const_l (struct agent_expr *x, LONGEST l)
- {
- static enum agent_op ops[]
- =
- {aop_const8, aop_const16, aop_const32, aop_const64};
- int size;
- int op;
-
- for (op = 0, size = 8; size < 64; size *= 2, op++)
- {
- LONGEST lim = ((LONGEST) 1) << (size - 1);
- if (-lim <= l && l <= lim - 1)
- break;
- }
-
- ax_simple (x, ops[op]);
-
- append_const (x, l, size / 8);
-
- if (l < 0 && size < 64)
- ax_ext (x, size);
- }
- void
- ax_const_d (struct agent_expr *x, LONGEST d)
- {
- FIXME
- error (_("GDB bug: ax-general.c (ax_const_d): "
- "floating point not supported yet"));
- }
- void
- ax_reg (struct agent_expr *x, int reg)
- {
- if (reg >= gdbarch_num_regs (x->gdbarch))
- {
-
- if (!gdbarch_ax_pseudo_register_push_stack_p (x->gdbarch))
- error (_("'%s' is a pseudo-register; "
- "GDB cannot yet trace its contents."),
- user_reg_map_regnum_to_name (x->gdbarch, reg));
- if (gdbarch_ax_pseudo_register_push_stack (x->gdbarch, x, reg))
- error (_("Trace '%s' failed."),
- user_reg_map_regnum_to_name (x->gdbarch, reg));
- }
- else
- {
-
- if (reg < 0 || reg > 0xffff)
- error (_("GDB bug: ax-general.c (ax_reg): "
- "register number out of range"));
- grow_expr (x, 3);
- x->buf[x->len] = aop_reg;
- x->buf[x->len + 1] = (reg >> 8) & 0xff;
- x->buf[x->len + 2] = (reg) & 0xff;
- x->len += 3;
- }
- }
- void
- ax_tsv (struct agent_expr *x, enum agent_op op, int num)
- {
-
- if (num < 0 || num > 0xffff)
- internal_error (__FILE__, __LINE__,
- _("ax-general.c (ax_tsv): variable "
- "number is %d, out of range"), num);
- grow_expr (x, 3);
- x->buf[x->len] = op;
- x->buf[x->len + 1] = (num >> 8) & 0xff;
- x->buf[x->len + 2] = (num) & 0xff;
- x->len += 3;
- }
- void
- ax_string (struct agent_expr *x, const char *str, int slen)
- {
- int i;
-
- if (slen < 0 || slen > 0xffff)
- internal_error (__FILE__, __LINE__,
- _("ax-general.c (ax_string): string "
- "length is %d, out of allowed range"), slen);
- grow_expr (x, 2 + slen + 1);
- x->buf[x->len++] = ((slen + 1) >> 8) & 0xff;
- x->buf[x->len++] = (slen + 1) & 0xff;
- for (i = 0; i < slen; ++i)
- x->buf[x->len++] = str[i];
- x->buf[x->len++] = '\0';
- }
- struct aop_map aop_map[] =
- {
- {0, 0, 0, 0, 0}
- #define DEFOP(NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED, VALUE) \
- , { # NAME, SIZE, DATA_SIZE, CONSUMED, PRODUCED }
- #include "ax.def"
- #undef DEFOP
- };
- void
- ax_print (struct ui_file *f, struct agent_expr *x)
- {
- int i;
- fprintf_filtered (f, _("Scope: %s\n"), paddress (x->gdbarch, x->scope));
- fprintf_filtered (f, _("Reg mask:"));
- for (i = 0; i < x->reg_mask_len; ++i)
- fprintf_filtered (f, _(" %02x"), x->reg_mask[i]);
- fprintf_filtered (f, _("\n"));
-
- if ((sizeof (aop_map) / sizeof (aop_map[0]))
- != aop_last)
- error (_("GDB bug: ax-general.c (ax_print): opcode map out of sync"));
- for (i = 0; i < x->len;)
- {
- enum agent_op op = x->buf[i];
- if (op >= (sizeof (aop_map) / sizeof (aop_map[0]))
- || !aop_map[op].name)
- {
- fprintf_filtered (f, _("%3d <bad opcode %02x>\n"), i, op);
- i++;
- continue;
- }
- if (i + 1 + aop_map[op].op_size > x->len)
- {
- fprintf_filtered (f, _("%3d <incomplete opcode %s>\n"),
- i, aop_map[op].name);
- break;
- }
- fprintf_filtered (f, "%3d %s", i, aop_map[op].name);
- if (aop_map[op].op_size > 0)
- {
- fputs_filtered (" ", f);
- print_longest (f, 'd', 0,
- read_const (x, i + 1, aop_map[op].op_size));
- }
-
- else if (op == aop_printf)
- {
- int slen, nargs;
- i++;
- nargs = x->buf[i++];
- slen = x->buf[i++];
- slen = slen * 256 + x->buf[i++];
- fprintf_filtered (f, _(" \"%s\", %d args"),
- &(x->buf[i]), nargs);
- i += slen - 1;
- }
- fprintf_filtered (f, "\n");
- i += 1 + aop_map[op].op_size;
- }
- }
- void
- ax_reg_mask (struct agent_expr *ax, int reg)
- {
- if (reg >= gdbarch_num_regs (ax->gdbarch))
- {
-
- if (!gdbarch_ax_pseudo_register_collect_p (ax->gdbarch))
- error (_("'%s' is a pseudo-register; "
- "GDB cannot yet trace its contents."),
- user_reg_map_regnum_to_name (ax->gdbarch, reg));
- if (gdbarch_ax_pseudo_register_collect (ax->gdbarch, ax, reg))
- error (_("Trace '%s' failed."),
- user_reg_map_regnum_to_name (ax->gdbarch, reg));
- }
- else
- {
- int byte = reg / 8;
-
- if (byte >= ax->reg_mask_len)
- {
-
- int new_len = byte + 1;
- unsigned char *new_reg_mask = xrealloc (ax->reg_mask,
- new_len
- * sizeof (ax->reg_mask[0]));
- memset (new_reg_mask + ax->reg_mask_len, 0,
- (new_len - ax->reg_mask_len) * sizeof (ax->reg_mask[0]));
- ax->reg_mask_len = new_len;
- ax->reg_mask = new_reg_mask;
- }
- ax->reg_mask[byte] |= 1 << (reg % 8);
- }
- }
- void
- ax_reqs (struct agent_expr *ax)
- {
- int i;
- int height;
-
- char *targets = (char *) alloca (ax->len * sizeof (targets[0]));
-
- char *boundary = (char *) alloca (ax->len * sizeof (boundary[0]));
-
- int *heights = (int *) alloca (ax->len * sizeof (heights[0]));
-
- struct aop_map *op;
- memset (targets, 0, ax->len * sizeof (targets[0]));
- memset (boundary, 0, ax->len * sizeof (boundary[0]));
- ax->max_height = ax->min_height = height = 0;
- ax->flaw = agent_flaw_none;
- ax->max_data_size = 0;
- for (i = 0; i < ax->len; i += 1 + op->op_size)
- {
- if (ax->buf[i] > (sizeof (aop_map) / sizeof (aop_map[0])))
- {
- ax->flaw = agent_flaw_bad_instruction;
- return;
- }
- op = &aop_map[ax->buf[i]];
- if (!op->name)
- {
- ax->flaw = agent_flaw_bad_instruction;
- return;
- }
- if (i + 1 + op->op_size > ax->len)
- {
- ax->flaw = agent_flaw_incomplete_instruction;
- return;
- }
-
- if (targets[i] && (heights[i] != height))
- {
- ax->flaw = agent_flaw_height_mismatch;
- return;
- }
- boundary[i] = 1;
- heights[i] = height;
- height -= op->consumed;
- if (height < ax->min_height)
- ax->min_height = height;
- height += op->produced;
- if (height > ax->max_height)
- ax->max_height = height;
- if (op->data_size > ax->max_data_size)
- ax->max_data_size = op->data_size;
-
- if (aop_goto == op - aop_map
- || aop_if_goto == op - aop_map)
- {
- int target = read_const (ax, i + 1, 2);
- if (target < 0 || target >= ax->len)
- {
- ax->flaw = agent_flaw_bad_jump;
- return;
- }
-
- if (targets[target] || boundary[target])
- {
- if (heights[target] != height)
- {
- ax->flaw = agent_flaw_height_mismatch;
- return;
- }
- }
-
- targets[target] = 1;
- heights[target] = height;
- }
-
- if (aop_goto == op - aop_map
- && i + 3 < ax->len)
- {
- if (!targets[i + 3])
- {
- ax->flaw = agent_flaw_hole;
- return;
- }
- height = heights[i + 3];
- }
-
- if (aop_reg == op - aop_map)
- {
- int reg = read_const (ax, i + 1, 2);
- ax_reg_mask (ax, reg);
- }
- }
-
- for (i = 0; i < ax->len; i++)
- if (targets[i] && !boundary[i])
- {
- ax->flaw = agent_flaw_bad_jump;
- return;
- }
- ax->final_height = height;
- }