Home | History | Annotate | Download | only in gdb

Lines Matching defs:bitness

54 /* The various possibilities of bitness defined for a probe's argument.
58 - STAP_ARG_BITNESS_UNDEFINED: The user hasn't specified the bitness.
88 : bitness (bitness_), atype (atype_), aexpr (std::move (aexpr_))
91 /* The bitness of this argument. */
92 enum stap_arg_bitness bitness;
94 /* The corresponding `struct type *' to the bitness. */
211 unsigned bitness. This function basically handles them, properly
449 /* Given the bitness of the argument, represented by B, return the
491 error (_("Undefined bitness for probe '%s'."), probe_name);
1263 enum stap_arg_bitness bitness;
1283 /* Defining the bitness. */
1287 bitness = (got_minus ? STAP_ARG_BITNESS_8BIT_SIGNED
1292 bitness = (got_minus ? STAP_ARG_BITNESS_16BIT_SIGNED
1297 bitness = (got_minus ? STAP_ARG_BITNESS_32BIT_SIGNED
1302 bitness = (got_minus ? STAP_ARG_BITNESS_64BIT_SIGNED
1310 warning (_("unrecognized bitness %s%c' for probe `%s'"),
1320 bitness = STAP_ARG_BITNESS_UNDEFINED;
1323 = stap_get_expected_argument_type (gdbarch, bitness,
1331 m_parsed_args.emplace_back (bitness, atype, std::move (expr));