• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/gdb/gdb/

Lines Matching defs:word_size

842   int word_size = gdbarch_ptr_bit (gdbarch) / 8;
865 data->gpr_size = word_size;
891 bfd_byte *insn32 = word_size == 4 ? insn : dummy;
892 bfd_byte *insn64 = word_size == 8 ? insn : dummy;
1109 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1134 if (word_size == 4
1140 if (word_size == 4
1146 if (word_size == 8
1173 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1280 cfa = prev_sp + 16*word_size + 32;
1335 info->frame_base = prev_sp + 16*word_size + 32;
1348 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1355 backchain = read_memory_unsigned_integer (reg, word_size);
1362 && safe_read_memory_integer (backchain + 15*word_size, word_size, &sp)
1368 info->saved_regs[S390_SP_REGNUM].addr = backchain + 15*word_size;
1369 info->saved_regs[S390_RETADDR_REGNUM].addr = backchain + 14*word_size;
1376 info->frame_base = backchain + 16*word_size + 32;
1461 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1477 info->frame_base = reg + 16*word_size + 32;
1540 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
1555 next_cfa = this_sp + 16*word_size + 32;
1563 sigreg_ptr = next_cfa + 8 + 128 + align_up (5*word_size, 8);
1571 sigreg_ptr = read_memory_unsigned_integer (next_cfa + 8, word_size);
1584 sigreg_ptr += word_size;
1588 sigreg_ptr += word_size;
1594 sigreg_ptr += word_size;
1618 word_size);
1621 info->frame_base = prev_sp + 16*word_size + 32;
1982 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2048 write_memory_unsigned_integer (starg, word_size, copy_addr[i]);
2049 starg += word_size;
2068 starg = align_up (starg + length, word_size);
2072 else if (s390_function_arg_integer (type) && length <= word_size)
2084 write_memory_signed_integer (starg, word_size,
2086 starg += word_size;
2089 else if (s390_function_arg_integer (type) && length == 2*word_size)
2096 value_contents (arg) + word_size);
2117 sp -= 16*word_size + 32;
2127 return sp + 16*word_size + 32;
2137 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2140 return frame_id_build (sp + 16*word_size + 32,
2179 int word_size = gdbarch_ptr_bit (gdbarch) / 8;
2195 else if (length <= word_size)
2205 else if (length == 2*word_size)
2208 regcache_cooked_write (regcache, S390_R3_REGNUM, in + word_size);
2231 else if (length <= word_size)
2235 word_size - length, length, out);
2237 else if (length == 2*word_size)
2240 regcache_cooked_read (regcache, S390_R3_REGNUM, out + word_size);