diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:36:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:46:02 -0500 |
commit | c583a2520616c2736cffc389c89a48b159366e6c (patch) | |
tree | b4925f26506fcee96c16119431c01760f05db95d /gdb/c-exp.h | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | binutils-users/simark/clang-format.zip binutils-users/simark/clang-format.tar.gz binutils-users/simark/clang-format.tar.bz2 |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/c-exp.h')
-rw-r--r-- | gdb/c-exp.h | 129 |
1 files changed, 49 insertions, 80 deletions
diff --git a/gdb/c-exp.h b/gdb/c-exp.h index 20eeaca..113a1c6 100644 --- a/gdb/c-exp.h +++ b/gdb/c-exp.h @@ -28,21 +28,17 @@ extern struct value *eval_op_objc_selector (struct type *expect_type, enum noside noside, const char *sel); extern struct value *opencl_value_cast (struct type *type, struct value *arg); -extern struct value *eval_opencl_assign (struct type *expect_type, - struct expression *exp, - enum noside noside, - enum exp_opcode op, - struct value *arg1, - struct value *arg2); +extern struct value * +eval_opencl_assign (struct type *expect_type, struct expression *exp, + enum noside noside, enum exp_opcode op, struct value *arg1, + struct value *arg2); extern struct value *opencl_relop (struct type *expect_type, - struct expression *exp, - enum noside noside, enum exp_opcode op, - struct value *arg1, struct value *arg2); -extern struct value *opencl_logical_not (struct type *expect_type, - struct expression *exp, - enum noside noside, - enum exp_opcode op, - struct value *arg); + struct expression *exp, enum noside noside, + enum exp_opcode op, struct value *arg1, + struct value *arg2); +extern struct value * +opencl_logical_not (struct type *expect_type, struct expression *exp, + enum noside noside, enum exp_opcode op, struct value *arg); namespace expr { @@ -55,50 +51,42 @@ public: using tuple_holding_operation::tuple_holding_operation; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override; - enum exp_opcode opcode () const override - { return OP_STRING; } + enum exp_opcode opcode () const override { return OP_STRING; } }; -class objc_nsstring_operation - : public tuple_holding_operation<std::string> +class objc_nsstring_operation : public tuple_holding_operation<std::string> { public: using tuple_holding_operation::tuple_holding_operation; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override { const std::string &str = std::get<0> (m_storage); return value_nsstring (exp->gdbarch, str.c_str (), str.size () + 1); } - enum exp_opcode opcode () const override - { return OP_OBJC_NSSTRING; } + enum exp_opcode opcode () const override { return OP_OBJC_NSSTRING; } }; -class objc_selector_operation - : public tuple_holding_operation<std::string> +class objc_selector_operation : public tuple_holding_operation<std::string> { public: using tuple_holding_operation::tuple_holding_operation; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override { return eval_op_objc_selector (expect_type, exp, noside, std::get<0> (m_storage).c_str ()); } - enum exp_opcode opcode () const override - { return OP_OBJC_SELECTOR; } + enum exp_opcode opcode () const override { return OP_OBJC_SELECTOR; } }; /* An Objective C message call. */ @@ -110,93 +98,76 @@ public: using tuple_holding_operation::tuple_holding_operation; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override; - enum exp_opcode opcode () const override - { return OP_OBJC_MSGCALL; } + enum exp_opcode opcode () const override { return OP_OBJC_MSGCALL; } }; -using opencl_cast_type_operation = cxx_cast_operation<UNOP_CAST_TYPE, - opencl_value_cast>; +using opencl_cast_type_operation + = cxx_cast_operation<UNOP_CAST_TYPE, opencl_value_cast>; /* Binary operations, as needed for OpenCL. */ template<enum exp_opcode OP, binary_ftype FUNC, typename BASE = maybe_constant_operation<operation_up, operation_up>> -class opencl_binop_operation - : public BASE +class opencl_binop_operation : public BASE { public: using BASE::BASE; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override { value *lhs = std::get<0> (this->m_storage)->evaluate (nullptr, exp, noside); - value *rhs - = std::get<1> (this->m_storage)->evaluate (value_type (lhs), exp, - noside); + value *rhs = std::get<1> (this->m_storage) + ->evaluate (value_type (lhs), exp, noside); return FUNC (expect_type, exp, noside, OP, lhs, rhs); } - enum exp_opcode opcode () const override - { return OP; } + enum exp_opcode opcode () const override { return OP; } }; -using opencl_assign_operation = opencl_binop_operation<BINOP_ASSIGN, - eval_opencl_assign, - assign_operation>; -using opencl_equal_operation = opencl_binop_operation<BINOP_EQUAL, - opencl_relop>; -using opencl_notequal_operation = opencl_binop_operation<BINOP_NOTEQUAL, - opencl_relop>; -using opencl_less_operation = opencl_binop_operation<BINOP_LESS, - opencl_relop>; -using opencl_gtr_operation = opencl_binop_operation<BINOP_GTR, - opencl_relop>; -using opencl_geq_operation = opencl_binop_operation<BINOP_GEQ, - opencl_relop>; -using opencl_leq_operation = opencl_binop_operation<BINOP_LEQ, - opencl_relop>; - -using opencl_not_operation = unop_operation<UNOP_LOGICAL_NOT, - opencl_logical_not>; +using opencl_assign_operation + = opencl_binop_operation<BINOP_ASSIGN, eval_opencl_assign, assign_operation>; +using opencl_equal_operation + = opencl_binop_operation<BINOP_EQUAL, opencl_relop>; +using opencl_notequal_operation + = opencl_binop_operation<BINOP_NOTEQUAL, opencl_relop>; +using opencl_less_operation = opencl_binop_operation<BINOP_LESS, opencl_relop>; +using opencl_gtr_operation = opencl_binop_operation<BINOP_GTR, opencl_relop>; +using opencl_geq_operation = opencl_binop_operation<BINOP_GEQ, opencl_relop>; +using opencl_leq_operation = opencl_binop_operation<BINOP_LEQ, opencl_relop>; + +using opencl_not_operation + = unop_operation<UNOP_LOGICAL_NOT, opencl_logical_not>; /* STRUCTOP_STRUCT implementation for OpenCL. */ -class opencl_structop_operation - : public structop_base_operation +class opencl_structop_operation : public structop_base_operation { public: using structop_base_operation::structop_base_operation; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override; - enum exp_opcode opcode () const override - { return STRUCTOP_STRUCT; } + enum exp_opcode opcode () const override { return STRUCTOP_STRUCT; } }; /* This handles the "&&" and "||" operations for OpenCL. */ class opencl_logical_binop_operation - : public tuple_holding_operation<enum exp_opcode, - operation_up, operation_up> + : public tuple_holding_operation<enum exp_opcode, operation_up, operation_up> { public: using tuple_holding_operation::tuple_holding_operation; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override; - enum exp_opcode opcode () const override - { return std::get<0> (m_storage); } + enum exp_opcode opcode () const override { return std::get<0> (m_storage); } }; /* The ?: ternary operator for OpenCL. */ @@ -207,14 +178,12 @@ public: using tuple_holding_operation::tuple_holding_operation; - value *evaluate (struct type *expect_type, - struct expression *exp, + value *evaluate (struct type *expect_type, struct expression *exp, enum noside noside) override; - enum exp_opcode opcode () const override - { return TERNOP_COND; } + enum exp_opcode opcode () const override { return TERNOP_COND; } }; -}/* namespace expr */ +} /* namespace expr */ #endif /* C_EXP_H */ |