public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
[PATCH v2 000/203] Refactor expressions
 2021-02-13 20:02 UTC  (153+ messages)
` [PATCH v2 001/206] Split out eval_op_scope
` [PATCH v2 002/206] Split out eval_op_var_entry_value
` [PATCH v2 003/206] Split out eval_op_var_msym_value
` [PATCH v2 004/206] Split out eval_op_func_static_var
` [PATCH v2 005/206] Split out eval_op_register
` [PATCH v2 006/206] Split out eval_op_string
` [PATCH v2 007/206] Split out eval_op_objc_selector
` [PATCH v2 008/206] Split out eval_op_concat
` [PATCH v2 009/206] Split out eval_op_ternop
` [PATCH v2 010/206] Split out eval_op_structop_struct
` [PATCH v2 011/206] Split out eval_op_structop_ptr
` [PATCH v2 012/206] Split out eval_op_member
` [PATCH v2 013/206] Split out eval_op_add
` [PATCH v2 014/206] Split out eval_op_sub
` [PATCH v2 015/206] Split out eval_op_binary
` [PATCH v2 016/206] Split out eval_op_subscript
` [PATCH v2 017/206] Split out eval_op_equal
` [PATCH v2 018/206] Split out eval_op_notequal
` [PATCH v2 019/206] Split out eval_op_less
` [PATCH v2 020/206] Split out eval_op_gtr
` [PATCH v2 021/206] Split out eval_op_geq
` [PATCH v2 022/206] Split out eval_op_leq
` [PATCH v2 023/206] Split out eval_op_repeat
` [PATCH v2 024/206] Split out eval_op_plus
` [PATCH v2 025/206] Split out eval_op_neg
` [PATCH v2 026/206] Split out eval_op_complement
` [PATCH v2 027/206] Split out eval_op_lognot
` [PATCH v2 028/206] Split out eval_op_ind
` [PATCH v2 029/206] Split out eval_op_alignof
` [PATCH v2 030/206] Split out eval_op_memval
` [PATCH v2 031/206] Split out eval_op_preinc
` [PATCH v2 032/206] Split out eval_op_predec
` [PATCH v2 033/206] Split out eval_op_postinc
` [PATCH v2 034/206] Split out eval_op_postdec
` [PATCH v2 035/206] Split out eval_op_type
` [PATCH v2 036/206] Split out eval_op_f_abs
` [PATCH v2 037/206] Split out eval_op_f_mod
` [PATCH v2 038/206] Split out eval_op_f_ceil
` [PATCH v2 039/206] Split out eval_op_f_floor
` [PATCH v2 040/206] Split out eval_op_f_modulo
` [PATCH v2 041/206] Split out eval_op_f_cmplx
` [PATCH v2 042/206] Split out eval_op_f_kind
` [PATCH v2 043/206] Split ot fortran_require_array
` [PATCH v2 044/206] Split out eval_op_f_allocated
` [PATCH v2 045/206] Change parameters to rust_range
` [PATCH v2 046/206] Change parameters to rust_subscript
` [PATCH v2 047/206] Split out eval_op_rust_ind
` [PATCH v2 048/206] Split out eval_op_rust_complement
` [PATCH v2 049/206] Split out eval_op_rust_array
` [PATCH v2 050/206] Split out eval_op_rust_struct_anon
` [PATCH v2 051/206] Split out eval_op_rust_structop
` [PATCH v2 052/206] Split helper functions
` [PATCH v2 053/206] Split out eval_op_m2_high
` [PATCH v2 054/206] Split out eval_op_m2_subscript
` [PATCH v2 055/206] Split out eval_binop_assign_modify
` [PATCH v2 056/206] Split out eval_op_objc_msgcall
` [PATCH v2 057/206] Split out eval_opencl_assign
` [PATCH v2 058/206] Split out eval_ternop_in_range
` [PATCH v2 059/206] Split out ada_unop_neg
` [PATCH v2 060/206] Split out ada_unop_in_range
` [PATCH v2 061/206] Split out ada_atr_tag
` [PATCH v2 062/206] Split out ada_atr_size
` [PATCH v2 063/206] Split out ada_abs
` [PATCH v2 064/206] Split out ada_mult_binop
` [PATCH v2 065/206] Split out ada_equal_binop
` [PATCH v2 066/206] Split out ada_ternop_slice
` [PATCH v2 067/206] Split out ada_binop_in_bounds
` [PATCH v2 068/206] Split out ada_unop_atr
` [PATCH v2 069/206] Split out ada_binop_minmax
` [PATCH v2 070/206] Change value_val_atr to ada_val_atr
` [PATCH v2 071/206] Split out ada_binop_exp
` [PATCH v2 072/206] Split out eval_multi_subscript
` [PATCH v2 073/206] Split gen_expr_binop_rest
` [PATCH v2 074/206] Introduce class operation
` [PATCH v2 075/206] Implement dumping
` [PATCH v2 076/206] Add two agent expression helper functions
` [PATCH v2 077/206] Introduce float_const_operation
` [PATCH v2 078/206] Introduce scope_operation
` [PATCH v2 079/206] Introduce long_const_operation
` [PATCH v2 080/206] Introduce var_msym_value_operation
` [PATCH v2 081/206] Introduce var_entry_value_operation
` [PATCH v2 082/206] Introduce func_static_var_operation
` [PATCH v2 083/206] Introduce last_operation
` [PATCH v2 084/206] Introduce register_operation
` [PATCH v2 085/206] Introduce bool_operation
` [PATCH v2 086/206] Introduce internalvar_operation
` [PATCH v2 087/206] Introduce string_operation
` [PATCH v2 088/206] Introduce ternop_slice_operation
` [PATCH v2 089/206] Introduce ternop_cond_operation
` [PATCH v2 090/206] Add c-exp.h and c_string_operation
` [PATCH v2 091/206] Introduce objc_nsstring_operation
` [PATCH v2 092/206] Introduce objc_selector_operation
` [PATCH v2 093/206] Introduce complex_operation
` [PATCH v2 094/206] Introduce structop_operation
` [PATCH v2 095/206] Introduce structop_ptr_operation
` [PATCH v2 096/206] Introduce structop_member_operation and structop_mptr_operation
` [PATCH v2 097/206] Introduce concat_operation
` [PATCH v2 098/206] Introduce add_operation
` [PATCH v2 099/206] Introduce sub_operation
` [PATCH v2 100/206] Introduce binop_operation
` [PATCH v2 101/206] Introduce subscript_operation
` [PATCH v2 102/206] Implement binary comparison operations
` [PATCH v2 103/206] Introduce repeat_operation
` [PATCH v2 104/206] Introduce comma_operation
` [PATCH v2 105/206] Implement some unary operations
` [PATCH v2 106/206] Implement unary increment and decrement operations
` [PATCH v2 107/206] Introduce unop_ind_operation
` [PATCH v2 108/206] Introduce type_operation
` [PATCH v2 109/206] Introduce typeof_operation
` [PATCH v2 110/206] Introduce decltype_operation
` [PATCH v2 111/206] Introduce typeid_operation
` [PATCH v2 112/206] Introduce unop_addr_operation
` [PATCH v2 113/206] Introduce unop_sizeof_operation
` [PATCH v2 114/206] Introduce unop_alignof_operation
` [PATCH v2 115/206] Implement UNOP_MEMVAL and UNOP_MEMVAL_TYPE
` [PATCH v2 116/206] Introduce op_this_operation
` [PATCH v2 117/206] Introduce type_instance_operation
` [PATCH v2 118/206] Introduce assign_operation
` [PATCH v2 119/206] Introduce assign_modify_operation
` [PATCH v2 120/206] Introduce unop_cast_operation
` [PATCH v2 121/206] Introduce unop_cast_type_operation
` [PATCH v2 122/206] Implement C++ cast operations
` [PATCH v2 123/206] Introduce var_value_operation
` [PATCH v2 124/206] Introduce objc_msgcall_operation
` [PATCH v2 125/206] Introduce multi_subscript_operation
` [PATCH v2 126/206] Introduce ada_wrapped_operation
` [PATCH v2 127/206] Introduce ada_string_operation
` [PATCH v2 128/206] Introduce ada_qual_operation
` [PATCH v2 129/206] Introduce ada_ternop_range_operation
` [PATCH v2 130/206] Implement several Fortran operations
` [PATCH v2 131/206] Implement some Rust operations
` [PATCH v2 132/206] Introduce rust_unop_ind_operation
` [PATCH v2 133/206] Introduce rust_subscript_operation
` [PATCH v2 134/206] Introduce rust_range_operation
` [PATCH v2 135/206] Implement Rust field operations
` [PATCH v2 136/206] Introduce rust_aggregate_operation
` [PATCH v2 137/206] Add two simple Modula-2 operations
` [PATCH v2 138/206] Implement the "&&" and "||" operators
` [PATCH v2 139/206] Implement some Ada unary operations
` [PATCH v2 140/206] Introduce ada_unop_range_operation
` [PATCH v2 141/206] Introduce class adl_func_operation
` [PATCH v2 142/206] Introduce array_operation
` [PATCH v2 143/206] Implement function call operations
` [PATCH v2 144/206] Implement Rust funcall operation
` [PATCH v2 145/206] Introduce fortran_undetermined
` [PATCH v2 146/206] Introduce classes for Fortran bound intrinsics
` [PATCH v2 147/206] Implement fortran_allocated_operation
` [PATCH v2 148/206] Introduce opencl_cast_type_operation
` [PATCH v2 149/206] Implement OpenCL binary operations
` [PATCH v2 150/206] Introduce opencl_notequal_operation
` [PATCH v2 151/206] Introduce opencl_structop_operation
` [PATCH v2 152/206] Implement OpenCL logical binary operations

[PATCH 000/203] Refactor expressions
 2021-02-13 19:54 UTC  (17+ messages)
` [PATCH 003/203] Split out eval_op_var_msym_value
` [PATCH 009/203] what is this code for
` [PATCH 151/203] Split out some Ada type resolution code
` [PATCH 169/203] Implement Ada resolution

[PATCH] sim: merge configure.tgt into configure.ac
 2021-02-13 19:42 UTC 

GDB 10.2 release (respin) -- 2021-02-13 Update
 2021-02-13 10:12 UTC 

[PATCH] sim: common: split up acinclude.m4 into individual m4 files
 2021-02-13  8:22 UTC 

[PATCH/committed] sim: rx: mitigate fread warning
 2021-02-13  7:44 UTC 

[PATCH] config/debuginfod: do not include pkg.m4 directly
 2021-02-13  5:17 UTC  (3+ messages)

[PATCH] Fix completion related libstdc++ assert when using -D_GLIBCXX_DEBUG
 2021-02-13  1:18 UTC 

[PATCH][gdb/threads] Fix lin_thread_get_thread_signals for glibc 2.28
 2021-02-12 19:11 UTC  (3+ messages)

[PATCHv6 0/2] Restore thread and frame patches
 2021-02-12 18:20 UTC  (4+ messages)
` [PATCHv7 "
  ` [PATCHv7 1/2] gdb: Restore previously selected thread when switching inferior
  ` [PATCHv7 2/2] gdb: Track the current frame for each thread

[PATCH] Add stdio support to gdbreplay
 2021-02-12 17:54 UTC  (2+ messages)

[pushed] Minor constification in gdbreplay
 2021-02-12 17:26 UTC 

[PATCH 0/2] Expression Evaluation Changes For Dynamic Types
 2021-02-11 20:43 UTC  (7+ messages)
` [PATCH 1/2] gdb: call value_ind for pointers to dynamic types in UNOP_IND evaluation
` [PATCH 2/2] gdb: ignore EVAL_AVOID_SIDE_EFFECTS for STRUCTOP_STRUCT
` PING: Re: [PATCH 0/2] Expression Evaluation Changes For Dynamic Types
  ` PINGv2: "

[PATCH] gdb/fortran: support ALLOCATED builtin
 2021-02-11 19:41 UTC  (2+ messages)

[PATCH][gdb/symtab] Handle DW_FORM_strx in form_requires_reprocessing
 2021-02-11 19:34 UTC  (2+ messages)

[PATCH] gdb/fortran: Don't access non-existent type fields
 2021-02-11 15:48 UTC  (4+ messages)
` [PATCHv2] "

[pushed] Fix two Fortran regressions
 2021-02-11 15:46 UTC 

Your account has been successfully created!
 2021-02-11 15:45 UTC 

[PATCH 3/3] Fix reverse stepping multiple contiguous PC ranges
 2021-02-11 11:38 UTC  (2+ messages)
` [PING][PATCH] "

[PUSHED] gdb/testsuite: remove old comment
 2021-02-11 11:33 UTC 

[PATCH] gdb: Change init order so pretty printers are set in new_objfile event
 2021-02-11 11:23 UTC  (4+ messages)
` [PATCH v2] "

[PATCH][gdb/symtab] Fix wrong unit_type Dwarf Error
 2021-02-11 10:59 UTC 

[PATCH] gdb/testsuite: use "set sysroot" in gdb.multi/multi-target.exp.tcl
 2021-02-10 22:18 UTC  (5+ messages)

[PATCHv2 0/9] Bare-metal core dumps for RISC-V
 2021-02-10 21:00 UTC  (8+ messages)
` [PATCHv2 2/9] bfd/binutils: support for gdb target descriptions in the core file
` [PATCHv2 4/9] bfd/riscv: prepare to handle bare metal core dump creation
` [PATCHv2 6/9] bfd/binutils: add support for RISC-V CSRs in core files

[PATCH] Rewrite GNAT-encoded fixed point types in DWARF reader
 2021-02-10 19:19 UTC 

[PATCH 0/2] Remove a couple of SYMBOL related macros
 2021-02-10 17:06 UTC  (5+ messages)
` [PATCH 1/2] gdb: Delete SYMBOL_OBJ_SECTION and MSYMBOL_OBJ_SECTION

new gdb build failures on MacOS X (... fallout from libintl fixups, see users/nalcock/included-gettext)
 2021-02-10 16:12 UTC  (3+ messages)

gdb: Remove support for SH-5/SH64
 2021-02-10 15:11 UTC  (4+ messages)

gdb: Remove arm-symbianelf support
 2021-02-10 15:04 UTC  (2+ messages)

[PATCH 0/8 RFC] unbreak --with-included-gettext, and other configury stuff
 2021-02-10 13:33 UTC  (5+ messages)
` [PATCH 6/8] gdbserver: explicitly include gettext, etc in inprocess agent

page:  |  | latest

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).