Searched refs:TARGET_CHAR_BIT (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-9.3-release/contrib/gdb/gdb/
H A Dm2-lang.c211 TARGET_INT_BIT / TARGET_CHAR_BIT,
217 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
222 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
227 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
232 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
237 TARGET_CHAR_BIT / TARGET_CHAR_BI
[all...]
H A Dp-lang.c45 are not multiple of TARGET_CHAR_BIT then the results are wrong
61 *length_pos = TYPE_FIELD_BITPOS (type, 0) / TARGET_CHAR_BIT;
65 *string_pos = TYPE_FIELD_BITPOS (type, 1) / TARGET_CHAR_BIT;
79 *length_pos = TYPE_FIELD_BITPOS (type, 1) / TARGET_CHAR_BIT;
83 *string_pos = TYPE_FIELD_BITPOS (type, 2) / TARGET_CHAR_BIT;
287 TARGET_INT_BIT / TARGET_CHAR_BIT,
293 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
298 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
[all...]
H A Dc-lang.c220 TARGET_INT_BIT / TARGET_CHAR_BIT,
226 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
231 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
236 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
241 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
246 TARGET_CHAR_BIT / TARGET_CHAR_BI
[all...]
H A Dgnu-v3-abi.c116 = init_type (TYPE_CODE_INT, TARGET_PTR_BIT / TARGET_CHAR_BIT, 0,
135 FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
142 FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
149 FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
158 FIELD_BITPOS (*field) = offset * TARGET_CHAR_BIT;
184 / TARGET_CHAR_BIT);
H A Dobjc-lang.c463 TARGET_INT_BIT / TARGET_CHAR_BIT,
469 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
474 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
479 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
484 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
489 TARGET_SHORT_BIT / TARGET_CHAR_BIT,
[all...]
H A Ddwarf2expr.c177 if (buf_end - buf < TARGET_ADDR_BIT / TARGET_CHAR_BIT)
180 *bytes_read = TARGET_ADDR_BIT / TARGET_CHAR_BIT;
183 result = extract_unsigned_integer (buf, TARGET_ADDR_BIT / TARGET_CHAR_BIT);
192 switch (TARGET_ADDR_BIT / TARGET_CHAR_BIT)
211 switch (TARGET_ADDR_BIT / TARGET_CHAR_BIT)
497 char *buf = alloca (TARGET_ADDR_BIT / TARGET_CHAR_BIT);
501 TARGET_ADDR_BIT / TARGET_CHAR_BIT);
504 / TARGET_CHAR_BIT),
511 char *buf = alloca (TARGET_ADDR_BIT / TARGET_CHAR_BIT);
517 / TARGET_CHAR_BIT),
[all...]
H A Dmips-nat.c148 buf = alloca (TARGET_PTR_BIT / TARGET_CHAR_BIT);
152 TARGET_PTR_BIT / TARGET_CHAR_BIT))
155 *pc = extract_unsigned_integer (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT);
H A Dmipsv4-nat.c158 buf = alloca (TARGET_PTR_BIT / TARGET_CHAR_BIT);
162 TARGET_PTR_BIT / TARGET_CHAR_BIT))
165 *pc = extract_unsigned_integer (buf, TARGET_PTR_BIT / TARGET_CHAR_BIT);
H A Dax-gdb.c365 ax_ext (ax, TYPE_LENGTH (type) * TARGET_CHAR_BIT);
375 int bits = TYPE_LENGTH (type) * TARGET_CHAR_BIT;
403 case 8 / TARGET_CHAR_BIT:
406 case 16 / TARGET_CHAR_BIT:
409 case 32 / TARGET_CHAR_BIT:
412 case 64 / TARGET_CHAR_BIT:
1240 int bound_start = (start / TARGET_CHAR_BIT) * TARGET_CHAR_BIT;
1241 int bound_end = (((end + TARGET_CHAR_BIT - 1)
1242 / TARGET_CHAR_BIT)
[all...]
H A Dgdbtypes.c262 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
330 TYPE_LENGTH (ntype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
709 *lowp = -(1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1));
717 TYPE_LENGTH (type) * TARGET_CHAR_BIT, which will not work
719 *highp = 1 << (TYPE_LENGTH (type) * TARGET_CHAR_BIT - 1);
808 = (bit_length + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
1763 + TYPE_LENGTH (field) * TARGET_CHAR_BIT);
3146 init_type (TYPE_CODE_INT, TARGET_CHAR_BIT / TARGET_CHAR_BIT,
[all...]
H A Dada-lang.c949 return TARGET_CHAR_BIT * TYPE_LENGTH (TYPE_FIELD_TYPE (type, 0));
1614 TYPE_LENGTH (VALUE_TYPE (fromval)) * TARGET_CHAR_BIT -
5786 return TARGET_CHAR_BIT;
5794 return TARGET_CHAR_BIT;
5796 return atoi (name + align_offset) * TARGET_CHAR_BIT;
6009 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
6010 cond_offset_target (address, off / TARGET_CHAR_BIT), dval);
6020 TYPE_LENGTH (TYPE_FIELD_TYPE (rtype, f)) * TARGET_CHAR_BIT;
6033 cond_offset_host (valaddr, off / TARGET_CHAR_BIT),
6034 cond_offset_target (address, off / TARGET_CHAR_BIT), dva
[all...]
H A Ddoublest.c642 if (len * TARGET_CHAR_BIT == TARGET_FLOAT_BIT)
644 else if (len * TARGET_CHAR_BIT == TARGET_DOUBLE_BIT)
646 else if (len * TARGET_CHAR_BIT == TARGET_LONG_DOUBLE_BIT)
653 && (len * TARGET_CHAR_BIT ==
H A Dvalarith.c232 offset = index / TARGET_CHAR_BIT;
234 bit_index = index % TARGET_CHAR_BIT;
235 byte >>= (BITS_BIG_ENDIAN ? TARGET_CHAR_BIT - 1 - bit_index : bit_index);
1394 valaddr + (rel_index / TARGET_CHAR_BIT));
1395 rel_index %= TARGET_CHAR_BIT;
1397 rel_index = TARGET_CHAR_BIT - 1 - rel_index;
H A Dstabsread.c772 sizeof (int) * HOST_CHAR_BIT / TARGET_CHAR_BIT, 0,
976 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
981 init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT,
1943 TYPE_LENGTH (type) = (type_size + TARGET_CHAR_BIT - 1) / TARGET_CHAR_BIT;
1969 #if TARGET_CHAR_BIT != 8
1970 #error This code wrong for TARGET_CHAR_BIT not 8
1971 /* These definitions all assume that TARGET_CHAR_BIT is 8. I think
1974 TARGET_CHAR_BIT. */
2833 == TARGET_CHAR_BIT * TYPE_LENGT
[all...]
H A Ddefs.h1149 #if !defined (TARGET_CHAR_BIT)
1150 #define TARGET_CHAR_BIT 8
1161 #define HOST_CHAR_BIT TARGET_CHAR_BIT
1147 #define TARGET_CHAR_BIT macro
H A Dscm-lang.c285 TARGET_LONG_BIT / TARGET_CHAR_BIT,
H A Drs6000-tdep.c2847 set_gdbarch_ptr_bit (gdbarch, wordsize * TARGET_CHAR_BIT);
2848 set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT);
2849 set_gdbarch_int_bit (gdbarch, 4 * TARGET_CHAR_BIT);
2850 set_gdbarch_long_bit (gdbarch, wordsize * TARGET_CHAR_BIT);
2851 set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
2852 set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT);
2853 set_gdbarch_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
2855 set_gdbarch_long_double_bit (gdbarch, 16 * TARGET_CHAR_BIT);
2857 set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
H A Dada-valprint.c264 c &= (1 << (type_len * TARGET_CHAR_BIT)) - 1;
H A Ddwarf2loc.c58 unsigned int addr_size = TARGET_ADDR_BIT / TARGET_CHAR_BIT, length;
H A Dmdebugread.c4962 init_type (TYPE_CODE_FLT, TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4966 init_type (TYPE_CODE_FLT, TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4970 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_FLOAT_BIT / TARGET_CHAR_BIT,
4975 init_type (TYPE_CODE_COMPLEX, 2 * TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
4984 TARGET_CHAR_BIT / TARGET_CHAR_BIT,
4993 TARGET_INT_BIT / TARGET_CHAR_BIT,
4999 TARGET_DOUBLE_BIT / TARGET_CHAR_BIT,
H A Dvalops.c1029 container_len = ((len + PARM_BOUNDARY / TARGET_CHAR_BIT - 1)
1030 & ~(PARM_BOUNDARY / TARGET_CHAR_BIT - 1));
2835 int j = i % TARGET_CHAR_BIT;
2837 j = TARGET_CHAR_BIT - 1 - j;
2838 VALUE_CONTENTS_RAW (slice)[i / TARGET_CHAR_BIT] |= (1 << j);
H A Ddwarfread.c206 #define TARGET_FT_POINTER_SIZE(objfile) (TARGET_PTR_BIT / TARGET_CHAR_BIT)
207 #define TARGET_FT_LONG_SIZE(objfile) (TARGET_LONG_BIT / TARGET_CHAR_BIT)
1436 TYPE_LENGTH (utype) = TARGET_PTR_BIT / TARGET_CHAR_BIT;
H A Dfindvar.c43 #if TARGET_CHAR_BIT != 8 || HOST_CHAR_BIT != 8
H A Djv-lang.c590 return (2 * TARGET_PTR_BIT / TARGET_CHAR_BIT);
H A Dgdbarch.c468 current_gdbarch->short_bit = 2*TARGET_CHAR_BIT;
469 current_gdbarch->int_bit = 4*TARGET_CHAR_BIT;
470 current_gdbarch->long_bit = 4*TARGET_CHAR_BIT;
472 current_gdbarch->float_bit = 4*TARGET_CHAR_BIT;
473 current_gdbarch->double_bit = 8*TARGET_CHAR_BIT;
474 current_gdbarch->long_double_bit = 8*TARGET_CHAR_BIT;

Completed in 379 milliseconds

12