summaryrefslogtreecommitdiff
path: root/gdb/valarith.c
Commit message (Expand)AuthorAgeFilesLines
* Use gdb_gmp for scalar arithmeticTom Tromey2023-03-271-324/+141
* Use value_true in value_equal and value_lessTom Tromey2023-03-271-4/+2
* Add operators and methods to gdb_mpqTom Tromey2023-03-141-9/+9
* Remove dead code from scalar_binopTom Tromey2023-03-131-16/+0
* Fix some value commentsTom Tromey2023-03-021-1/+5
* Fix type of check_valid_shift_count parameterTom Tromey2023-03-011-1/+1
* Remove value_inTom Tromey2023-02-281-23/+0
* Issue error on erroneous expressionTom Tromey2023-02-211-1/+1
* Remove deprecated_lval_hackTom Tromey2023-02-131-7/+7
* Introduce set_lval method on valueTom Tromey2023-02-131-1/+1
* Turn some xmethod functions into methodsTom Tromey2023-02-131-4/+4
* Turn set_value_component_location into methodTom Tromey2023-02-131-1/+1
* Turn many optimized-out value functions into methodsTom Tromey2023-02-131-2/+2
* Turn remaining value_contents functions into methodsTom Tromey2023-02-131-20/+20
* Turn some value_contents functions into methodsTom Tromey2023-02-131-10/+10
* Turn value_zero into static "constructor"Tom Tromey2023-02-131-7/+7
* Turn allocate_value into a static "constructor"Tom Tromey2023-02-131-11/+11
* Turn value_address and set_value_address functions into methodsTom Tromey2023-02-131-2/+2
* Turn value_lazy and set_value_lazy functions into methodsTom Tromey2023-02-131-1/+1
* Turn value_type into methodTom Tromey2023-02-131-48/+48
* GDB: Only make data actually retrieved into value history availableMaciej W. Rozycki2023-02-101-0/+15
* Update copyright year range in header of all files managed by GDBJoel Brobecker2023-01-011-1/+1
* Use scoped_value_mark in more placesTom Tromey2022-10-141-2/+1
* gdb: remove TYPE_LENGTHSimon Marchi2022-09-211-30/+30
* gdb: remove TYPE_TARGET_TYPESimon Marchi2022-09-211-20/+18
* [gdb/exp] Fix UB in scalar_binopTom de Vries2022-05-231-1/+4
* gdb: Avoid undefined shifts, fix Go shiftsPedro Alves2022-04-081-4/+99
* Reimplement array concatenation for Ada and DTom Tromey2022-03-161-128/+41
* Remove eval_op_concatTom Tromey2022-03-161-1/+1
* Automatic Copyright Year update after running gdb/copyright.pyJoel Brobecker2022-01-011-1/+1
* gdb: improve reuse of value contents when fetching array elementsAndrew Burgess2021-12-131-9/+9
* gdb: trivial changes to use array_viewSimon Marchi2021-12-031-6/+3
* gdbsupport: add array_view copy functionSimon Marchi2021-12-031-22/+27
* gdb: make value_subscripted_rvalue staticAndrew Burgess2021-12-031-2/+8
* gdb: change functions returning value contents to use gdb::array_viewSimon Marchi2021-10-251-35/+36
* Move value_true to value.hTom Tromey2021-09-241-2/+2
* gdb: use gdb::optional instead of passing a pointer to gdb::array_viewAndrew Burgess2021-06-251-1/+1
* gdb: replace NULL terminated array with array_viewAndrew Burgess2021-06-251-1/+1
* [gdb/exp] Fix assert when adding ptr to imaginary unitTom de Vries2021-02-051-0/+3
* gdb: rename get_type_arch to type::archSimon Marchi2021-01-281-4/+4
* Fix fixed-point binary operation type handlingTom Tromey2021-01-061-16/+30
* Update copyright year range in all GDB filesJoel Brobecker2021-01-011-1/+1
* Handle fixed-point division by zeroTom Tromey2020-12-141-0/+2
* gdb: fix value_subscript when array upper bound is not knownSimon Marchi2020-12-091-7/+15
* gdb: make get_discrete_bounds return boolSimon Marchi2020-12-091-1/+1
* valarith.c: Replace INIT_VAL_WITH_FIXED_POINT_VAL macro by lambdaJoel Brobecker2020-11-231-15/+19
* Make function fixed_point_scaling_factor a method of struct typeJoel Brobecker2020-11-231-3/+3
* gmp-utils: Convert the read/write methods to using gdb::array_viewJoel Brobecker2020-11-231-3/+6
* Add support for fixed-point type comparison operatorsJoel Brobecker2020-11-151-1/+14
* Add support for fixed-point type arithmeticJoel Brobecker2020-11-151-2/+89