aboutsummaryrefslogtreecommitdiff
path: root/gdb/rust-lang.c
AgeCommit message (Expand)AuthorFilesLines
2023-05-01Replace field_is_static with a methodTom Tromey1-4/+4
2023-04-17Add 128-bit integer support to the Rust parserTom Tromey1-0/+2
2023-03-18Unify arch_float_type and init_float_typeTom Tromey1-2/+2
2023-03-18Unify arch_boolean_type and init_boolean_typeTom Tromey1-1/+1
2023-03-18Unify arch_character_type and init_character_typeTom Tromey1-1/+1
2023-03-18Unify arch_integer_type and init_integer_typeTom Tromey1-11/+12
2023-03-18Remove alloc_type_copyTom Tromey1-1/+1
2023-02-27Fix crash with "finish" in RustTom Tromey1-1/+1
2023-02-19Convert more block functions to methodsTom Tromey1-1/+1
2023-02-13Remove deprecated_lval_hackTom Tromey1-2/+2
2023-02-13Introduce set_lval method on valueTom Tromey1-1/+1
2023-02-13Turn various value copying-related functions into methodsTom Tromey1-3/+3
2023-02-13Turn remaining value_contents functions into methodsTom Tromey1-4/+4
2023-02-13Turn value_fetch_lazy into a methodTom Tromey1-1/+1
2023-02-13Turn value_zero into static "constructor"Tom Tromey1-4/+4
2023-02-13Turn allocate_value into a static "constructor"Tom Tromey1-2/+2
2023-02-13Turn allocate_value_lazy into a static "constructor"Tom Tromey1-1/+1
2023-02-13Turn value_address and set_value_address functions into methodsTom Tromey1-4/+4
2023-02-13Turn value_type into methodTom Tromey1-28/+28
2023-02-09Trivially simplify rust_language::print_enumTom Tromey1-1/+1
2023-01-01Update copyright year range in header of all files managed by GDBJoel Brobecker1-1/+1
2022-12-19Use bool constants for value_print_optionsTom Tromey1-3/+3
2022-10-10Remove c_printstrTom Tromey1-2/+3
2022-09-21gdb: remove TYPE_LENGTHSimon Marchi1-10/+10
2022-09-21gdb: add type::length / type::set_lengthSimon Marchi1-3/+2
2022-09-21gdb: remove TYPE_TARGET_TYPESimon Marchi1-19/+19
2022-05-10Always pass an explicit language down to c_type_printPedro Alves1-2/+3
2022-04-15Implement value_print for RustTom Tromey1-0/+21
2022-04-15Reimplement Rust slice printingTom Tromey1-26/+59
2022-04-15Remove some dead code from the Rust value printerTom Tromey1-8/+0
2022-03-29Rename print_spaces_filteredTom Tromey1-6/+6
2022-03-29Unify gdb printf functionsTom Tromey1-23/+23
2022-03-29Unify gdb putc functionsTom Tromey1-1/+1
2022-03-29Unify gdb puts functionsTom Tromey1-51/+51
2022-02-06gdb: remove SYMBOL_TYPE macroSimon Marchi1-1/+1
2022-01-23Simplify some Rust expression-evaluation codeTom Tromey1-18/+26
2022-01-01Automatic Copyright Year update after running gdb/copyright.pyJoel Brobecker1-1/+1
2021-12-03gdb: trivial changes to use array_viewSimon Marchi1-6/+4
2021-10-29gdb: remove TYPE_FIELD_BITPOSSimon Marchi1-3/+3
2021-10-25gdb: change functions returning value contents to use gdb::array_viewSimon Marchi1-5/+6
2021-10-07gdb: add accessors for field (and call site) locationSimon Marchi1-2/+2
2021-09-30gdb: remove TYPE_FIELD_NAME and FIELD_NAME macrosSimon Marchi1-13/+13
2021-09-30gdb: add field::name / field::set_nameSimon Marchi1-2/+2
2021-06-25gdb: use gdb::optional instead of passing a pointer to gdb::array_viewAndrew Burgess1-9/+9
2021-05-14Fix Python pretty-printing bug in RustTom Tromey1-2/+4
2021-04-25[PR gdb/22640] ptype: add option to use hexadecimal notationLancelot SIX1-1/+1
2021-03-08Remove now-unused Rust evaluator codeTom Tromey1-506/+1
2021-03-08Implement Rust funcall operationTom Tromey1-0/+50
2021-03-08Introduce rust_aggregate_operationTom Tromey1-0/+58
2021-03-08Implement Rust field operationsTom Tromey1-2/+2