mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-04 13:57:12 +08:00
Remove eval_op_string
eval_op_string is only used in a single place -- the implementation of string_operation. This patch turns it into the string_operation::evaluate method, removing a bit of extraneous code.
This commit is contained in:
17
gdb/eval.c
17
gdb/eval.c
@ -1078,17 +1078,22 @@ eval_op_register (struct type *expect_type, struct expression *exp,
|
|||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Helper function that implements the body of OP_STRING. */
|
namespace expr
|
||||||
|
|
||||||
struct value *
|
|
||||||
eval_op_string (struct type *expect_type, struct expression *exp,
|
|
||||||
enum noside noside, int len, const char *string)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
value *
|
||||||
|
string_operation::evaluate (struct type *expect_type,
|
||||||
|
struct expression *exp,
|
||||||
|
enum noside noside)
|
||||||
|
{
|
||||||
|
const std::string &str = std::get<0> (m_storage);
|
||||||
struct type *type = language_string_char_type (exp->language_defn,
|
struct type *type = language_string_char_type (exp->language_defn,
|
||||||
exp->gdbarch);
|
exp->gdbarch);
|
||||||
return value_string (string, len, type);
|
return value_string (str.c_str (), str.size (), type);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
} /* namespace expr */
|
||||||
|
|
||||||
/* Helper function that implements the body of OP_OBJC_SELECTOR. */
|
/* Helper function that implements the body of OP_OBJC_SELECTOR. */
|
||||||
|
|
||||||
struct value *
|
struct value *
|
||||||
|
11
gdb/expop.h
11
gdb/expop.h
@ -64,10 +64,6 @@ extern struct value *eval_op_func_static_var (struct type *expect_type,
|
|||||||
extern struct value *eval_op_register (struct type *expect_type,
|
extern struct value *eval_op_register (struct type *expect_type,
|
||||||
struct expression *exp,
|
struct expression *exp,
|
||||||
enum noside noside, const char *name);
|
enum noside noside, const char *name);
|
||||||
extern struct value *eval_op_string (struct type *expect_type,
|
|
||||||
struct expression *exp,
|
|
||||||
enum noside noside, int len,
|
|
||||||
const char *string);
|
|
||||||
extern struct value *eval_op_ternop (struct type *expect_type,
|
extern struct value *eval_op_ternop (struct type *expect_type,
|
||||||
struct expression *exp,
|
struct expression *exp,
|
||||||
enum noside noside,
|
enum noside noside,
|
||||||
@ -912,12 +908,7 @@ public:
|
|||||||
|
|
||||||
value *evaluate (struct type *expect_type,
|
value *evaluate (struct type *expect_type,
|
||||||
struct expression *exp,
|
struct expression *exp,
|
||||||
enum noside noside) override
|
enum noside noside) override;
|
||||||
{
|
|
||||||
const std::string &str = std::get<0> (m_storage);
|
|
||||||
return eval_op_string (expect_type, exp, noside,
|
|
||||||
str.size (), str.c_str ());
|
|
||||||
}
|
|
||||||
|
|
||||||
enum exp_opcode opcode () const override
|
enum exp_opcode opcode () const override
|
||||||
{ return OP_STRING; }
|
{ return OP_STRING; }
|
||||||
|
Reference in New Issue
Block a user