Add support for fixed-point type arithmetic
[deliverable/binutils-gdb.git] / gdb / valarith.c
CommitLineData
c906108c 1/* Perform arithmetic and other operations on values, for GDB.
1bac305b 2
b811d2c2 3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
21#include "value.h"
22#include "symtab.h"
23#include "gdbtypes.h"
24#include "expression.h"
25#include "target.h"
26#include "language.h"
70100014 27#include "target-float.h"
04714b91 28#include "infcall.h"
268a13a5 29#include "gdbsupport/byte-vector.h"
0d12e84c 30#include "gdbarch.h"
c906108c
SS
31
32/* Define whether or not the C operator '/' truncates towards zero for
581e13c1 33 differently signed operands (truncation direction is undefined in C). */
c906108c
SS
34
35#ifndef TRUNCATION_TOWARDS_ZERO
36#define TRUNCATION_TOWARDS_ZERO ((-5 / 2) == -2)
37#endif
38
ca439ad2
JI
39/* Given a pointer, return the size of its target.
40 If the pointer type is void *, then return 1.
41 If the target type is incomplete, then error out.
42 This isn't a general purpose function, but just a
581e13c1 43 helper for value_ptradd. */
ca439ad2
JI
44
45static LONGEST
46find_size_for_pointer_math (struct type *ptr_type)
47{
48 LONGEST sz = -1;
49 struct type *ptr_target;
50
78134374 51 gdb_assert (ptr_type->code () == TYPE_CODE_PTR);
ca439ad2
JI
52 ptr_target = check_typedef (TYPE_TARGET_TYPE (ptr_type));
53
3ae385af 54 sz = type_length_units (ptr_target);
ca439ad2
JI
55 if (sz == 0)
56 {
78134374 57 if (ptr_type->code () == TYPE_CODE_VOID)
ca439ad2
JI
58 sz = 1;
59 else
60 {
0d5cff50 61 const char *name;
ca439ad2 62
7d93a1e0 63 name = ptr_target->name ();
ca439ad2 64 if (name == NULL)
8a3fe4f8
AC
65 error (_("Cannot perform pointer math on incomplete types, "
66 "try casting to a known type, or void *."));
ca439ad2 67 else
8a3fe4f8
AC
68 error (_("Cannot perform pointer math on incomplete type \"%s\", "
69 "try casting to a known type, or void *."), name);
ca439ad2
JI
70 }
71 }
72 return sz;
73}
74
89eef114
UW
75/* Given a pointer ARG1 and an integral value ARG2, return the
76 result of C-style pointer arithmetic ARG1 + ARG2. */
77
f23631e4 78struct value *
2497b498 79value_ptradd (struct value *arg1, LONGEST arg2)
c906108c 80{
89eef114 81 struct type *valptrtype;
ca439ad2 82 LONGEST sz;
8cf6f0b1 83 struct value *result;
c906108c 84
994b9211 85 arg1 = coerce_array (arg1);
89eef114
UW
86 valptrtype = check_typedef (value_type (arg1));
87 sz = find_size_for_pointer_math (valptrtype);
c906108c 88
8cf6f0b1
TT
89 result = value_from_pointer (valptrtype,
90 value_as_address (arg1) + sz * arg2);
91 if (VALUE_LVAL (result) != lval_internalvar)
92 set_value_component_location (result, arg1);
93 return result;
c906108c
SS
94}
95
89eef114
UW
96/* Given two compatible pointer values ARG1 and ARG2, return the
97 result of C-style pointer arithmetic ARG1 - ARG2. */
98
99LONGEST
100value_ptrdiff (struct value *arg1, struct value *arg2)
c906108c
SS
101{
102 struct type *type1, *type2;
89eef114
UW
103 LONGEST sz;
104
994b9211
AC
105 arg1 = coerce_array (arg1);
106 arg2 = coerce_array (arg2);
df407dfe
AC
107 type1 = check_typedef (value_type (arg1));
108 type2 = check_typedef (value_type (arg2));
c906108c 109
78134374
SM
110 gdb_assert (type1->code () == TYPE_CODE_PTR);
111 gdb_assert (type2->code () == TYPE_CODE_PTR);
ca439ad2 112
89eef114
UW
113 if (TYPE_LENGTH (check_typedef (TYPE_TARGET_TYPE (type1)))
114 != TYPE_LENGTH (check_typedef (TYPE_TARGET_TYPE (type2))))
3e43a32a
MS
115 error (_("First argument of `-' is a pointer and "
116 "second argument is neither\n"
117 "an integer nor a pointer of the same type."));
c906108c 118
3ae385af 119 sz = type_length_units (check_typedef (TYPE_TARGET_TYPE (type1)));
83b10087
CM
120 if (sz == 0)
121 {
122 warning (_("Type size unknown, assuming 1. "
dda83cd7 123 "Try casting to a known type, or void *."));
83b10087
CM
124 sz = 1;
125 }
126
89eef114 127 return (value_as_long (arg1) - value_as_long (arg2)) / sz;
c906108c
SS
128}
129
130/* Return the value of ARRAY[IDX].
afc05acb
UW
131
132 ARRAY may be of type TYPE_CODE_ARRAY or TYPE_CODE_STRING. If the
133 current language supports C-style arrays, it may also be TYPE_CODE_PTR.
afc05acb 134
c906108c
SS
135 See comments in value_coerce_array() for rationale for reason for
136 doing lower bounds adjustment here rather than there.
137 FIXME: Perhaps we should validate that the index is valid and if
581e13c1 138 verbosity is set, warn about invalid indices (but still use them). */
c906108c 139
f23631e4 140struct value *
2497b498 141value_subscript (struct value *array, LONGEST index)
c906108c 142{
67bd3fd5 143 bool c_style = current_language->c_style_arrays_p ();
c906108c
SS
144 struct type *tarray;
145
994b9211 146 array = coerce_ref (array);
df407dfe 147 tarray = check_typedef (value_type (array));
c906108c 148
78134374
SM
149 if (tarray->code () == TYPE_CODE_ARRAY
150 || tarray->code () == TYPE_CODE_STRING)
c906108c 151 {
3d967001 152 struct type *range_type = tarray->index_type ();
c906108c 153 LONGEST lowerbound, upperbound;
c906108c 154
a109c7c1 155 get_discrete_bounds (range_type, &lowerbound, &upperbound);
c906108c 156 if (VALUE_LVAL (array) != lval_memory)
2497b498 157 return value_subscripted_rvalue (array, index, lowerbound);
c906108c 158
67bd3fd5 159 if (!c_style)
c906108c 160 {
c906108c 161 if (index >= lowerbound && index <= upperbound)
2497b498 162 return value_subscripted_rvalue (array, index, lowerbound);
987504bb
JJ
163 /* Emit warning unless we have an array of unknown size.
164 An array of unknown size has lowerbound 0 and upperbound -1. */
165 if (upperbound > -1)
8a3fe4f8 166 warning (_("array or string index out of range"));
c906108c 167 /* fall doing C stuff */
67bd3fd5 168 c_style = true;
c906108c
SS
169 }
170
2497b498 171 index -= lowerbound;
c906108c
SS
172 array = value_coerce_array (array);
173 }
174
c906108c 175 if (c_style)
2497b498 176 return value_ind (value_ptradd (array, index));
c906108c 177 else
8a3fe4f8 178 error (_("not an array or string"));
c906108c
SS
179}
180
181/* Return the value of EXPR[IDX], expr an aggregate rvalue
182 (eg, a vector register). This routine used to promote floats
183 to doubles, but no longer does. */
184
9eec4d1e 185struct value *
592f9d27 186value_subscripted_rvalue (struct value *array, LONGEST index, LONGEST lowerbound)
c906108c 187{
df407dfe 188 struct type *array_type = check_typedef (value_type (array));
c906108c 189 struct type *elt_type = check_typedef (TYPE_TARGET_TYPE (array_type));
9e80cfa1 190 LONGEST elt_size = type_length_units (elt_type);
5bbd8269
AB
191
192 /* Fetch the bit stride and convert it to a byte stride, assuming 8 bits
193 in a byte. */
cf88be68 194 LONGEST stride = array_type->bit_stride ();
5bbd8269
AB
195 if (stride != 0)
196 {
197 struct gdbarch *arch = get_type_arch (elt_type);
198 int unit_size = gdbarch_addressable_memory_unit_size (arch);
199 elt_size = stride / (unit_size * 8);
200 }
201
9e80cfa1 202 LONGEST elt_offs = elt_size * (index - lowerbound);
39498edb 203 bool array_upper_bound_undefined
cf88be68 204 = array_type->bounds ()->high.kind () == PROP_UNDEFINED;
c906108c 205
5ff2bbae 206 if (index < lowerbound
39498edb
SM
207 || (!array_upper_bound_undefined
208 && elt_offs >= type_length_units (array_type))
209 || (VALUE_LVAL (array) != lval_memory && array_upper_bound_undefined))
3f2f83dd
KB
210 {
211 if (type_not_associated (array_type))
dda83cd7 212 error (_("no such vector element (vector not associated)"));
3f2f83dd 213 else if (type_not_allocated (array_type))
dda83cd7 214 error (_("no such vector element (vector not allocated)"));
3f2f83dd 215 else
dda83cd7 216 error (_("no such vector element"));
3f2f83dd 217 }
c906108c 218
8f07e298
BH
219 if (is_dynamic_type (elt_type))
220 {
221 CORE_ADDR address;
222
223 address = value_address (array) + elt_offs;
b249d2c2 224 elt_type = resolve_dynamic_type (elt_type, {}, address);
8f07e298
BH
225 }
226
3fff9862 227 return value_from_component (array, elt_type, elt_offs);
c906108c 228}
afc05acb 229
c906108c 230\f
13d6656b
JB
231/* Check to see if either argument is a structure, or a reference to
232 one. This is called so we know whether to go ahead with the normal
233 binop or look for a user defined function instead.
c906108c
SS
234
235 For now, we do not overload the `=' operator. */
236
237int
be636754
PA
238binop_types_user_defined_p (enum exp_opcode op,
239 struct type *type1, struct type *type2)
c906108c 240{
c906108c
SS
241 if (op == BINOP_ASSIGN || op == BINOP_CONCAT)
242 return 0;
13d6656b 243
be636754 244 type1 = check_typedef (type1);
aa006118 245 if (TYPE_IS_REFERENCE (type1))
13d6656b
JB
246 type1 = check_typedef (TYPE_TARGET_TYPE (type1));
247
4e32eda7 248 type2 = check_typedef (type2);
aa006118 249 if (TYPE_IS_REFERENCE (type2))
13d6656b
JB
250 type2 = check_typedef (TYPE_TARGET_TYPE (type2));
251
78134374
SM
252 return (type1->code () == TYPE_CODE_STRUCT
253 || type2->code () == TYPE_CODE_STRUCT);
c906108c
SS
254}
255
be636754
PA
256/* Check to see if either argument is a structure, or a reference to
257 one. This is called so we know whether to go ahead with the normal
258 binop or look for a user defined function instead.
259
260 For now, we do not overload the `=' operator. */
261
262int
263binop_user_defined_p (enum exp_opcode op,
264 struct value *arg1, struct value *arg2)
265{
266 return binop_types_user_defined_p (op, value_type (arg1), value_type (arg2));
267}
268
c906108c
SS
269/* Check to see if argument is a structure. This is called so
270 we know whether to go ahead with the normal unop or look for a
271 user defined function instead.
272
273 For now, we do not overload the `&' operator. */
274
c5aa993b 275int
f23631e4 276unop_user_defined_p (enum exp_opcode op, struct value *arg1)
c906108c
SS
277{
278 struct type *type1;
a109c7c1 279
c906108c
SS
280 if (op == UNOP_ADDR)
281 return 0;
df407dfe 282 type1 = check_typedef (value_type (arg1));
aa006118 283 if (TYPE_IS_REFERENCE (type1))
eeaafae2 284 type1 = check_typedef (TYPE_TARGET_TYPE (type1));
78134374 285 return type1->code () == TYPE_CODE_STRUCT;
c906108c
SS
286}
287
4c3376c8
SW
288/* Try to find an operator named OPERATOR which takes NARGS arguments
289 specified in ARGS. If the operator found is a static member operator
290 *STATIC_MEMFUNP will be set to 1, and otherwise 0.
291 The search if performed through find_overload_match which will handle
292 member operators, non member operators, operators imported implicitly or
293 explicitly, and perform correct overload resolution in all of the above
294 situations or combinations thereof. */
295
296static struct value *
6b1747cd 297value_user_defined_cpp_op (gdb::array_view<value *> args, char *oper,
dda83cd7 298 int *static_memfuncp, enum noside noside)
4c3376c8
SW
299{
300
301 struct symbol *symp = NULL;
302 struct value *valp = NULL;
4c3376c8 303
6b1747cd 304 find_overload_match (args, oper, BOTH /* could be method */,
dda83cd7
SM
305 &args[0] /* objp */,
306 NULL /* pass NULL symbol since symbol is unknown */,
307 &valp, &symp, static_memfuncp, 0, noside);
4c3376c8
SW
308
309 if (valp)
310 return valp;
311
312 if (symp)
313 {
314 /* This is a non member function and does not
dda83cd7
SM
315 expect a reference as its first argument
316 rather the explicit structure. */
4c3376c8
SW
317 args[0] = value_ind (args[0]);
318 return value_of_variable (symp, 0);
319 }
320
fe978cb0 321 error (_("Could not find %s."), oper);
4c3376c8
SW
322}
323
324/* Lookup user defined operator NAME. Return a value representing the
325 function, otherwise return NULL. */
326
327static struct value *
6b1747cd
PA
328value_user_defined_op (struct value **argp, gdb::array_view<value *> args,
329 char *name, int *static_memfuncp, enum noside noside)
4c3376c8
SW
330{
331 struct value *result = NULL;
332
333 if (current_language->la_language == language_cplus)
e66d4446 334 {
6b1747cd 335 result = value_user_defined_cpp_op (args, name, static_memfuncp,
e66d4446
SC
336 noside);
337 }
4c3376c8 338 else
6b1747cd
PA
339 result = value_struct_elt (argp, args.data (), name, static_memfuncp,
340 "structure");
4c3376c8
SW
341
342 return result;
343}
344
c906108c
SS
345/* We know either arg1 or arg2 is a structure, so try to find the right
346 user defined function. Create an argument vector that calls
347 arg1.operator @ (arg1,arg2) and return that value (where '@' is any
348 binary operator which is legal for GNU C++).
349
30baf67b 350 OP is the operator, and if it is BINOP_ASSIGN_MODIFY, then OTHEROP
c906108c
SS
351 is the opcode saying how to modify it. Otherwise, OTHEROP is
352 unused. */
353
f23631e4
AC
354struct value *
355value_x_binop (struct value *arg1, struct value *arg2, enum exp_opcode op,
fba45db2 356 enum exp_opcode otherop, enum noside noside)
c906108c 357{
c906108c
SS
358 char *ptr;
359 char tstr[13];
360 int static_memfuncp;
361
994b9211
AC
362 arg1 = coerce_ref (arg1);
363 arg2 = coerce_ref (arg2);
c906108c
SS
364
365 /* now we know that what we have to do is construct our
366 arg vector and find the right function to call it with. */
367
78134374 368 if (check_typedef (value_type (arg1))->code () != TYPE_CODE_STRUCT)
8a3fe4f8 369 error (_("Can't do that binary op on that type")); /* FIXME be explicit */
c906108c 370
6b1747cd
PA
371 value *argvec_storage[3];
372 gdb::array_view<value *> argvec = argvec_storage;
373
c906108c
SS
374 argvec[1] = value_addr (arg1);
375 argvec[2] = arg2;
c906108c 376
581e13c1 377 /* Make the right function name up. */
c5aa993b
JM
378 strcpy (tstr, "operator__");
379 ptr = tstr + 8;
c906108c
SS
380 switch (op)
381 {
c5aa993b
JM
382 case BINOP_ADD:
383 strcpy (ptr, "+");
384 break;
385 case BINOP_SUB:
386 strcpy (ptr, "-");
387 break;
388 case BINOP_MUL:
389 strcpy (ptr, "*");
390 break;
391 case BINOP_DIV:
392 strcpy (ptr, "/");
393 break;
394 case BINOP_REM:
395 strcpy (ptr, "%");
396 break;
397 case BINOP_LSH:
398 strcpy (ptr, "<<");
399 break;
400 case BINOP_RSH:
401 strcpy (ptr, ">>");
402 break;
403 case BINOP_BITWISE_AND:
404 strcpy (ptr, "&");
405 break;
406 case BINOP_BITWISE_IOR:
407 strcpy (ptr, "|");
408 break;
409 case BINOP_BITWISE_XOR:
410 strcpy (ptr, "^");
411 break;
412 case BINOP_LOGICAL_AND:
413 strcpy (ptr, "&&");
414 break;
415 case BINOP_LOGICAL_OR:
416 strcpy (ptr, "||");
417 break;
418 case BINOP_MIN:
419 strcpy (ptr, "<?");
420 break;
421 case BINOP_MAX:
422 strcpy (ptr, ">?");
423 break;
424 case BINOP_ASSIGN:
425 strcpy (ptr, "=");
426 break;
427 case BINOP_ASSIGN_MODIFY:
c906108c
SS
428 switch (otherop)
429 {
c5aa993b
JM
430 case BINOP_ADD:
431 strcpy (ptr, "+=");
432 break;
433 case BINOP_SUB:
434 strcpy (ptr, "-=");
435 break;
436 case BINOP_MUL:
437 strcpy (ptr, "*=");
438 break;
439 case BINOP_DIV:
440 strcpy (ptr, "/=");
441 break;
442 case BINOP_REM:
443 strcpy (ptr, "%=");
444 break;
445 case BINOP_BITWISE_AND:
446 strcpy (ptr, "&=");
447 break;
448 case BINOP_BITWISE_IOR:
449 strcpy (ptr, "|=");
450 break;
451 case BINOP_BITWISE_XOR:
452 strcpy (ptr, "^=");
453 break;
454 case BINOP_MOD: /* invalid */
c906108c 455 default:
8a3fe4f8 456 error (_("Invalid binary operation specified."));
c906108c
SS
457 }
458 break;
c5aa993b
JM
459 case BINOP_SUBSCRIPT:
460 strcpy (ptr, "[]");
461 break;
462 case BINOP_EQUAL:
463 strcpy (ptr, "==");
464 break;
465 case BINOP_NOTEQUAL:
466 strcpy (ptr, "!=");
467 break;
468 case BINOP_LESS:
469 strcpy (ptr, "<");
470 break;
471 case BINOP_GTR:
472 strcpy (ptr, ">");
473 break;
474 case BINOP_GEQ:
475 strcpy (ptr, ">=");
476 break;
477 case BINOP_LEQ:
478 strcpy (ptr, "<=");
479 break;
480 case BINOP_MOD: /* invalid */
c906108c 481 default:
8a3fe4f8 482 error (_("Invalid binary operation specified."));
c906108c
SS
483 }
484
6b1747cd
PA
485 argvec[0] = value_user_defined_op (&arg1, argvec.slice (1), tstr,
486 &static_memfuncp, noside);
c5aa993b 487
c906108c
SS
488 if (argvec[0])
489 {
490 if (static_memfuncp)
491 {
492 argvec[1] = argvec[0];
6b1747cd 493 argvec = argvec.slice (1);
c906108c 494 }
78134374 495 if (value_type (argvec[0])->code () == TYPE_CODE_XMETHOD)
2ce1cdbf
DE
496 {
497 /* Static xmethods are not supported yet. */
498 gdb_assert (static_memfuncp == 0);
499 if (noside == EVAL_AVOID_SIDE_EFFECTS)
500 {
501 struct type *return_type
6b1747cd 502 = result_type_of_xmethod (argvec[0], argvec.slice (1));
2ce1cdbf
DE
503
504 if (return_type == NULL)
505 error (_("Xmethod is missing return type."));
506 return value_zero (return_type, VALUE_LVAL (arg1));
507 }
6b1747cd 508 return call_xmethod (argvec[0], argvec.slice (1));
2ce1cdbf 509 }
c906108c
SS
510 if (noside == EVAL_AVOID_SIDE_EFFECTS)
511 {
512 struct type *return_type;
a109c7c1 513
c906108c 514 return_type
df407dfe 515 = TYPE_TARGET_TYPE (check_typedef (value_type (argvec[0])));
c906108c
SS
516 return value_zero (return_type, VALUE_LVAL (arg1));
517 }
e71585ff 518 return call_function_by_hand (argvec[0], NULL,
6b1747cd 519 argvec.slice (1, 2 - static_memfuncp));
c906108c 520 }
79afc5ef 521 throw_error (NOT_FOUND_ERROR,
dda83cd7 522 _("member function %s not found"), tstr);
c906108c
SS
523}
524
525/* We know that arg1 is a structure, so try to find a unary user
581e13c1 526 defined operator that matches the operator in question.
c906108c
SS
527 Create an argument vector that calls arg1.operator @ (arg1)
528 and return that value (where '@' is (almost) any unary operator which
529 is legal for GNU C++). */
530
f23631e4
AC
531struct value *
532value_x_unop (struct value *arg1, enum exp_opcode op, enum noside noside)
c906108c 533{
50810684 534 struct gdbarch *gdbarch = get_type_arch (value_type (arg1));
5799c0b9 535 char *ptr;
c906108c 536 char tstr[13], mangle_tstr[13];
491b8946 537 int static_memfuncp, nargs;
c906108c 538
994b9211 539 arg1 = coerce_ref (arg1);
c906108c
SS
540
541 /* now we know that what we have to do is construct our
542 arg vector and find the right function to call it with. */
543
78134374 544 if (check_typedef (value_type (arg1))->code () != TYPE_CODE_STRUCT)
8a3fe4f8 545 error (_("Can't do that unary op on that type")); /* FIXME be explicit */
c906108c 546
6b1747cd
PA
547 value *argvec_storage[3];
548 gdb::array_view<value *> argvec = argvec_storage;
549
c906108c
SS
550 argvec[1] = value_addr (arg1);
551 argvec[2] = 0;
552
491b8946
DJ
553 nargs = 1;
554
581e13c1 555 /* Make the right function name up. */
c5aa993b
JM
556 strcpy (tstr, "operator__");
557 ptr = tstr + 8;
558 strcpy (mangle_tstr, "__");
c906108c
SS
559 switch (op)
560 {
c5aa993b
JM
561 case UNOP_PREINCREMENT:
562 strcpy (ptr, "++");
563 break;
564 case UNOP_PREDECREMENT:
491b8946 565 strcpy (ptr, "--");
c5aa993b
JM
566 break;
567 case UNOP_POSTINCREMENT:
568 strcpy (ptr, "++");
22601c15 569 argvec[2] = value_from_longest (builtin_type (gdbarch)->builtin_int, 0);
491b8946 570 nargs ++;
c5aa993b
JM
571 break;
572 case UNOP_POSTDECREMENT:
491b8946 573 strcpy (ptr, "--");
22601c15 574 argvec[2] = value_from_longest (builtin_type (gdbarch)->builtin_int, 0);
491b8946 575 nargs ++;
c5aa993b
JM
576 break;
577 case UNOP_LOGICAL_NOT:
578 strcpy (ptr, "!");
579 break;
580 case UNOP_COMPLEMENT:
581 strcpy (ptr, "~");
582 break;
583 case UNOP_NEG:
584 strcpy (ptr, "-");
585 break;
36e9969c
NS
586 case UNOP_PLUS:
587 strcpy (ptr, "+");
588 break;
c5aa993b
JM
589 case UNOP_IND:
590 strcpy (ptr, "*");
591 break;
79afc5ef
SW
592 case STRUCTOP_PTR:
593 strcpy (ptr, "->");
594 break;
c906108c 595 default:
8a3fe4f8 596 error (_("Invalid unary operation specified."));
c906108c
SS
597 }
598
6b1747cd
PA
599 argvec[0] = value_user_defined_op (&arg1, argvec.slice (1, nargs), tstr,
600 &static_memfuncp, noside);
c906108c
SS
601
602 if (argvec[0])
603 {
604 if (static_memfuncp)
605 {
606 argvec[1] = argvec[0];
6b1747cd 607 argvec = argvec.slice (1);
c906108c 608 }
78134374 609 if (value_type (argvec[0])->code () == TYPE_CODE_XMETHOD)
2ce1cdbf
DE
610 {
611 /* Static xmethods are not supported yet. */
612 gdb_assert (static_memfuncp == 0);
613 if (noside == EVAL_AVOID_SIDE_EFFECTS)
614 {
615 struct type *return_type
6b1747cd 616 = result_type_of_xmethod (argvec[0], argvec[1]);
2ce1cdbf
DE
617
618 if (return_type == NULL)
619 error (_("Xmethod is missing return type."));
620 return value_zero (return_type, VALUE_LVAL (arg1));
621 }
6b1747cd 622 return call_xmethod (argvec[0], argvec[1]);
2ce1cdbf 623 }
c906108c
SS
624 if (noside == EVAL_AVOID_SIDE_EFFECTS)
625 {
626 struct type *return_type;
a109c7c1 627
c906108c 628 return_type
df407dfe 629 = TYPE_TARGET_TYPE (check_typedef (value_type (argvec[0])));
c906108c
SS
630 return value_zero (return_type, VALUE_LVAL (arg1));
631 }
e71585ff 632 return call_function_by_hand (argvec[0], NULL,
6b1747cd 633 argvec.slice (1, nargs));
c906108c 634 }
79afc5ef 635 throw_error (NOT_FOUND_ERROR,
dda83cd7 636 _("member function %s not found"), tstr);
c906108c 637}
c906108c 638\f
c5aa993b 639
c906108c
SS
640/* Concatenate two values with the following conditions:
641
c5aa993b
JM
642 (1) Both values must be either bitstring values or character string
643 values and the resulting value consists of the concatenation of
644 ARG1 followed by ARG2.
c906108c 645
c5aa993b 646 or
c906108c 647
c5aa993b
JM
648 One value must be an integer value and the other value must be
649 either a bitstring value or character string value, which is
650 to be repeated by the number of times specified by the integer
651 value.
c906108c
SS
652
653
c5aa993b
JM
654 (2) Boolean values are also allowed and are treated as bit string
655 values of length 1.
c906108c 656
c5aa993b 657 (3) Character values are also allowed and are treated as character
581e13c1 658 string values of length 1. */
c906108c 659
f23631e4
AC
660struct value *
661value_concat (struct value *arg1, struct value *arg2)
c906108c 662{
f23631e4
AC
663 struct value *inval1;
664 struct value *inval2;
665 struct value *outval = NULL;
c906108c
SS
666 int inval1len, inval2len;
667 int count, idx;
c906108c 668 char inchar;
df407dfe
AC
669 struct type *type1 = check_typedef (value_type (arg1));
670 struct type *type2 = check_typedef (value_type (arg2));
3b7538c0 671 struct type *char_type;
c906108c 672
c906108c
SS
673 /* First figure out if we are dealing with two values to be concatenated
674 or a repeat count and a value to be repeated. INVAL1 is set to the
675 first of two concatenated values, or the repeat count. INVAL2 is set
676 to the second of the two concatenated values or the value to be
581e13c1 677 repeated. */
c906108c 678
78134374 679 if (type2->code () == TYPE_CODE_INT)
c906108c
SS
680 {
681 struct type *tmp = type1;
a109c7c1 682
c906108c
SS
683 type1 = tmp;
684 tmp = type2;
685 inval1 = arg2;
686 inval2 = arg1;
687 }
688 else
689 {
690 inval1 = arg1;
691 inval2 = arg2;
692 }
693
581e13c1 694 /* Now process the input values. */
c906108c 695
78134374 696 if (type1->code () == TYPE_CODE_INT)
c906108c
SS
697 {
698 /* We have a repeat count. Validate the second value and then
dda83cd7 699 construct a value repeated that many times. */
78134374
SM
700 if (type2->code () == TYPE_CODE_STRING
701 || type2->code () == TYPE_CODE_CHAR)
c906108c
SS
702 {
703 count = longest_to_int (value_as_long (inval1));
704 inval2len = TYPE_LENGTH (type2);
26fcd5d7 705 std::vector<char> ptr (count * inval2len);
78134374 706 if (type2->code () == TYPE_CODE_CHAR)
c906108c 707 {
3b7538c0 708 char_type = type2;
a109c7c1 709
c906108c 710 inchar = (char) unpack_long (type2,
0fd88904 711 value_contents (inval2));
c906108c
SS
712 for (idx = 0; idx < count; idx++)
713 {
26fcd5d7 714 ptr[idx] = inchar;
c906108c
SS
715 }
716 }
717 else
718 {
3b7538c0 719 char_type = TYPE_TARGET_TYPE (type2);
a109c7c1 720
c906108c
SS
721 for (idx = 0; idx < count; idx++)
722 {
26fcd5d7 723 memcpy (&ptr[idx * inval2len], value_contents (inval2),
c906108c
SS
724 inval2len);
725 }
726 }
26fcd5d7 727 outval = value_string (ptr.data (), count * inval2len, char_type);
c906108c 728 }
78134374 729 else if (type2->code () == TYPE_CODE_BOOL)
c906108c 730 {
6b1755ce 731 error (_("unimplemented support for boolean repeats"));
c906108c
SS
732 }
733 else
734 {
8a3fe4f8 735 error (_("can't repeat values of that type"));
c906108c
SS
736 }
737 }
78134374
SM
738 else if (type1->code () == TYPE_CODE_STRING
739 || type1->code () == TYPE_CODE_CHAR)
c906108c 740 {
581e13c1 741 /* We have two character strings to concatenate. */
78134374
SM
742 if (type2->code () != TYPE_CODE_STRING
743 && type2->code () != TYPE_CODE_CHAR)
c906108c 744 {
8a3fe4f8 745 error (_("Strings can only be concatenated with other strings."));
c906108c
SS
746 }
747 inval1len = TYPE_LENGTH (type1);
748 inval2len = TYPE_LENGTH (type2);
26fcd5d7 749 std::vector<char> ptr (inval1len + inval2len);
78134374 750 if (type1->code () == TYPE_CODE_CHAR)
c906108c 751 {
3b7538c0 752 char_type = type1;
a109c7c1 753
26fcd5d7 754 ptr[0] = (char) unpack_long (type1, value_contents (inval1));
c906108c
SS
755 }
756 else
757 {
3b7538c0 758 char_type = TYPE_TARGET_TYPE (type1);
a109c7c1 759
26fcd5d7 760 memcpy (ptr.data (), value_contents (inval1), inval1len);
c906108c 761 }
78134374 762 if (type2->code () == TYPE_CODE_CHAR)
c906108c 763 {
26fcd5d7 764 ptr[inval1len] =
0fd88904 765 (char) unpack_long (type2, value_contents (inval2));
c906108c
SS
766 }
767 else
768 {
26fcd5d7 769 memcpy (&ptr[inval1len], value_contents (inval2), inval2len);
c906108c 770 }
26fcd5d7 771 outval = value_string (ptr.data (), inval1len + inval2len, char_type);
c906108c 772 }
78134374 773 else if (type1->code () == TYPE_CODE_BOOL)
c906108c 774 {
581e13c1 775 /* We have two bitstrings to concatenate. */
78134374 776 if (type2->code () != TYPE_CODE_BOOL)
c906108c 777 {
6b1755ce 778 error (_("Booleans can only be concatenated "
3e43a32a 779 "with other bitstrings or booleans."));
c906108c 780 }
6b1755ce 781 error (_("unimplemented support for boolean concatenation."));
c5aa993b 782 }
c906108c
SS
783 else
784 {
581e13c1 785 /* We don't know how to concatenate these operands. */
8a3fe4f8 786 error (_("illegal operands for concatenation."));
c906108c
SS
787 }
788 return (outval);
789}
c906108c 790\f
d118ef87
PH
791/* Integer exponentiation: V1**V2, where both arguments are
792 integers. Requires V1 != 0 if V2 < 0. Returns 1 for 0 ** 0. */
581e13c1 793
d118ef87
PH
794static LONGEST
795integer_pow (LONGEST v1, LONGEST v2)
796{
797 if (v2 < 0)
798 {
799 if (v1 == 0)
800 error (_("Attempt to raise 0 to negative power."));
801 else
802 return 0;
803 }
804 else
805 {
581e13c1 806 /* The Russian Peasant's Algorithm. */
d118ef87
PH
807 LONGEST v;
808
809 v = 1;
810 for (;;)
811 {
812 if (v2 & 1L)
813 v *= v1;
814 v2 >>= 1;
815 if (v2 == 0)
816 return v;
817 v1 *= v1;
818 }
819 }
820}
821
66c02b9e
UW
822/* Obtain argument values for binary operation, converting from
823 other types if one of them is not floating point. */
4ef30785 824static void
66c02b9e
UW
825value_args_as_target_float (struct value *arg1, struct value *arg2,
826 gdb_byte *x, struct type **eff_type_x,
827 gdb_byte *y, struct type **eff_type_y)
4ef30785
TJB
828{
829 struct type *type1, *type2;
830
831 type1 = check_typedef (value_type (arg1));
832 type2 = check_typedef (value_type (arg2));
833
66c02b9e
UW
834 /* At least one of the arguments must be of floating-point type. */
835 gdb_assert (is_floating_type (type1) || is_floating_type (type2));
4ef30785 836
66c02b9e 837 if (is_floating_type (type1) && is_floating_type (type2)
78134374 838 && type1->code () != type2->code ())
4ef30785
TJB
839 /* The DFP extension to the C language does not allow mixing of
840 * decimal float types with other float types in expressions
841 * (see WDTR 24732, page 12). */
3e43a32a
MS
842 error (_("Mixing decimal floating types with "
843 "other floating types is not allowed."));
4ef30785 844
66c02b9e 845 /* Obtain value of arg1, converting from other types if necessary. */
4ef30785 846
66c02b9e 847 if (is_floating_type (type1))
4ef30785 848 {
66c02b9e
UW
849 *eff_type_x = type1;
850 memcpy (x, value_contents (arg1), TYPE_LENGTH (type1));
4ef30785
TJB
851 }
852 else if (is_integral_type (type1))
853 {
66c02b9e 854 *eff_type_x = type2;
c6d940a9 855 if (type1->is_unsigned ())
66c02b9e 856 target_float_from_ulongest (x, *eff_type_x, value_as_long (arg1));
3b4b2f16 857 else
66c02b9e 858 target_float_from_longest (x, *eff_type_x, value_as_long (arg1));
4ef30785
TJB
859 }
860 else
7d93a1e0
SM
861 error (_("Don't know how to convert from %s to %s."), type1->name (),
862 type2->name ());
4ef30785 863
66c02b9e 864 /* Obtain value of arg2, converting from other types if necessary. */
4ef30785 865
66c02b9e 866 if (is_floating_type (type2))
4ef30785 867 {
66c02b9e
UW
868 *eff_type_y = type2;
869 memcpy (y, value_contents (arg2), TYPE_LENGTH (type2));
4ef30785
TJB
870 }
871 else if (is_integral_type (type2))
872 {
66c02b9e 873 *eff_type_y = type1;
c6d940a9 874 if (type2->is_unsigned ())
66c02b9e 875 target_float_from_ulongest (y, *eff_type_y, value_as_long (arg2));
3b4b2f16 876 else
66c02b9e 877 target_float_from_longest (y, *eff_type_y, value_as_long (arg2));
4ef30785
TJB
878 }
879 else
7d93a1e0
SM
880 error (_("Don't know how to convert from %s to %s."), type1->name (),
881 type2->name ());
4ef30785 882}
c5aa993b 883
0a12719e
JB
884/* Assuming at last one of ARG1 or ARG2 is a fixed point value,
885 perform the binary operation OP on these two operands, and return
886 the resulting value (also as a fixed point). */
887
888static struct value *
889fixed_point_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
890{
891 struct type *type1 = check_typedef (value_type (arg1));
892 struct type *type2 = check_typedef (value_type (arg2));
893
894 struct value *val;
895
896 gdb_assert (is_fixed_point_type (type1) || is_fixed_point_type (type2));
897 if (!is_fixed_point_type (type1))
898 {
899 arg1 = value_cast (type2, arg1);
900 type1 = type2;
901 }
902 if (!is_fixed_point_type (type2))
903 {
904 arg2 = value_cast (type1, arg2);
905 type2 = type1;
906 }
907
908 gdb_mpq v1, v2, res;
909 v1.read_fixed_point (value_contents (arg1), TYPE_LENGTH (type1),
910 type_byte_order (type1), type1->is_unsigned (),
911 fixed_point_scaling_factor (type1));
912 v2.read_fixed_point (value_contents (arg2), TYPE_LENGTH (type2),
913 type_byte_order (type2), type2->is_unsigned (),
914 fixed_point_scaling_factor (type2));
915
916#define INIT_VAL_WITH_FIXED_POINT_VAL(RESULT) \
917 do { \
918 val = allocate_value (type1); \
919 (RESULT).write_fixed_point \
920 (value_contents_raw (val), TYPE_LENGTH (type1), \
921 type_byte_order (type1), type1->is_unsigned (), \
922 fixed_point_scaling_factor (type1)); \
923 } while (0)
924
925 switch (op)
926 {
927 case BINOP_ADD:
928 mpq_add (res.val, v1.val, v2.val);
929 INIT_VAL_WITH_FIXED_POINT_VAL (res);
930 break;
931
932 case BINOP_SUB:
933 mpq_sub (res.val, v1.val, v2.val);
934 INIT_VAL_WITH_FIXED_POINT_VAL (res);
935 break;
936
937 case BINOP_MIN:
938 INIT_VAL_WITH_FIXED_POINT_VAL (mpq_cmp (v1.val, v2.val) < 0 ? v1 : v2);
939 break;
940
941 case BINOP_MAX:
942 INIT_VAL_WITH_FIXED_POINT_VAL (mpq_cmp (v1.val, v2.val) > 0 ? v1 : v2);
943 break;
944
945 case BINOP_MUL:
946 mpq_mul (res.val, v1.val, v2.val);
947 INIT_VAL_WITH_FIXED_POINT_VAL (res);
948 break;
949
950 case BINOP_DIV:
951 mpq_div (res.val, v1.val, v2.val);
952 INIT_VAL_WITH_FIXED_POINT_VAL (res);
953 break;
954
955 default:
956 error (_("Integer-only operation on fixed point number."));
957 }
958
959 return val;
960}
961
c34e8714
TT
962/* A helper function that finds the type to use for a binary operation
963 involving TYPE1 and TYPE2. */
964
965static struct type *
966promotion_type (struct type *type1, struct type *type2)
967{
968 struct type *result_type;
969
970 if (is_floating_type (type1) || is_floating_type (type2))
971 {
972 /* If only one type is floating-point, use its type.
973 Otherwise use the bigger type. */
974 if (!is_floating_type (type1))
975 result_type = type2;
976 else if (!is_floating_type (type2))
977 result_type = type1;
978 else if (TYPE_LENGTH (type2) > TYPE_LENGTH (type1))
979 result_type = type2;
980 else
981 result_type = type1;
982 }
983 else
984 {
985 /* Integer types. */
986 if (TYPE_LENGTH (type1) > TYPE_LENGTH (type2))
987 result_type = type1;
988 else if (TYPE_LENGTH (type2) > TYPE_LENGTH (type1))
989 result_type = type2;
c6d940a9 990 else if (type1->is_unsigned ())
c34e8714 991 result_type = type1;
c6d940a9 992 else if (type2->is_unsigned ())
c34e8714
TT
993 result_type = type2;
994 else
995 result_type = type1;
996 }
997
998 return result_type;
999}
1000
1001static struct value *scalar_binop (struct value *arg1, struct value *arg2,
1002 enum exp_opcode op);
1003
1004/* Perform a binary operation on complex operands. */
1005
1006static struct value *
1007complex_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
1008{
1009 struct type *arg1_type = check_typedef (value_type (arg1));
1010 struct type *arg2_type = check_typedef (value_type (arg2));
1011
1012 struct value *arg1_real, *arg1_imag, *arg2_real, *arg2_imag;
78134374 1013 if (arg1_type->code () == TYPE_CODE_COMPLEX)
c34e8714
TT
1014 {
1015 arg1_real = value_real_part (arg1);
1016 arg1_imag = value_imaginary_part (arg1);
1017 }
1018 else
1019 {
1020 arg1_real = arg1;
1021 arg1_imag = value_zero (arg1_type, not_lval);
1022 }
78134374 1023 if (arg2_type->code () == TYPE_CODE_COMPLEX)
c34e8714
TT
1024 {
1025 arg2_real = value_real_part (arg2);
1026 arg2_imag = value_imaginary_part (arg2);
1027 }
1028 else
1029 {
1030 arg2_real = arg2;
1031 arg2_imag = value_zero (arg2_type, not_lval);
1032 }
1033
1034 struct type *comp_type = promotion_type (value_type (arg1_real),
1035 value_type (arg2_real));
1036 arg1_real = value_cast (comp_type, arg1_real);
1037 arg1_imag = value_cast (comp_type, arg1_imag);
1038 arg2_real = value_cast (comp_type, arg2_real);
1039 arg2_imag = value_cast (comp_type, arg2_imag);
1040
1041 struct type *result_type = init_complex_type (nullptr, comp_type);
1042
1043 struct value *result_real, *result_imag;
1044 switch (op)
1045 {
1046 case BINOP_ADD:
1047 case BINOP_SUB:
1048 result_real = scalar_binop (arg1_real, arg2_real, op);
1049 result_imag = scalar_binop (arg1_imag, arg2_imag, op);
1050 break;
1051
1052 case BINOP_MUL:
1053 {
1054 struct value *x1 = scalar_binop (arg1_real, arg2_real, op);
1055 struct value *x2 = scalar_binop (arg1_imag, arg2_imag, op);
1056 result_real = scalar_binop (x1, x2, BINOP_SUB);
1057
1058 x1 = scalar_binop (arg1_real, arg2_imag, op);
1059 x2 = scalar_binop (arg1_imag, arg2_real, op);
1060 result_imag = scalar_binop (x1, x2, BINOP_ADD);
1061 }
1062 break;
1063
1064 case BINOP_DIV:
1065 {
78134374 1066 if (arg2_type->code () == TYPE_CODE_COMPLEX)
c34e8714
TT
1067 {
1068 struct value *conjugate = value_complement (arg2);
1069 /* We have to reconstruct ARG1, in case the type was
1070 promoted. */
1071 arg1 = value_literal_complex (arg1_real, arg1_imag, result_type);
1072
1073 struct value *numerator = scalar_binop (arg1, conjugate,
1074 BINOP_MUL);
1075 arg1_real = value_real_part (numerator);
1076 arg1_imag = value_imaginary_part (numerator);
1077
1078 struct value *x1 = scalar_binop (arg2_real, arg2_real, BINOP_MUL);
1079 struct value *x2 = scalar_binop (arg2_imag, arg2_imag, BINOP_MUL);
1080 arg2_real = scalar_binop (x1, x2, BINOP_ADD);
1081 }
1082
1083 result_real = scalar_binop (arg1_real, arg2_real, op);
1084 result_imag = scalar_binop (arg1_imag, arg2_real, op);
1085 }
1086 break;
1087
1088 case BINOP_EQUAL:
1089 case BINOP_NOTEQUAL:
1090 {
1091 struct value *x1 = scalar_binop (arg1_real, arg2_real, op);
1092 struct value *x2 = scalar_binop (arg1_imag, arg2_imag, op);
1093
1094 LONGEST v1 = value_as_long (x1);
1095 LONGEST v2 = value_as_long (x2);
1096
1097 if (op == BINOP_EQUAL)
1098 v1 = v1 && v2;
1099 else
1100 v1 = v1 || v2;
1101
1102 return value_from_longest (value_type (x1), v1);
1103 }
1104 break;
1105
1106 default:
1107 error (_("Invalid binary operation on numbers."));
1108 }
1109
1110 return value_literal_complex (result_real, result_imag, result_type);
1111}
1112
c906108c
SS
1113/* Perform a binary operation on two operands which have reasonable
1114 representations as integers or floats. This includes booleans,
1115 characters, integers, or floats.
1116 Does not support addition and subtraction on pointers;
89eef114 1117 use value_ptradd, value_ptrsub or value_ptrdiff for those operations. */
c906108c 1118
7346b668
KW
1119static struct value *
1120scalar_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
c906108c 1121{
f23631e4 1122 struct value *val;
4066e646
UW
1123 struct type *type1, *type2, *result_type;
1124
994b9211
AC
1125 arg1 = coerce_ref (arg1);
1126 arg2 = coerce_ref (arg2);
c906108c 1127
4066e646
UW
1128 type1 = check_typedef (value_type (arg1));
1129 type2 = check_typedef (value_type (arg2));
1130
78134374
SM
1131 if (type1->code () == TYPE_CODE_COMPLEX
1132 || type2->code () == TYPE_CODE_COMPLEX)
c34e8714
TT
1133 return complex_binop (arg1, arg2, op);
1134
0a12719e
JB
1135 if ((!is_floating_value (arg1)
1136 && !is_integral_type (type1)
1137 && !is_fixed_point_type (type1))
1138 || (!is_floating_value (arg2)
1139 && !is_integral_type (type2)
1140 && !is_fixed_point_type (type2)))
4066e646 1141 error (_("Argument to arithmetic operation not a number or boolean."));
c906108c 1142
0a12719e
JB
1143 if (is_fixed_point_type (type1) || is_fixed_point_type (type2))
1144 return fixed_point_binop (arg1, arg2, op);
1145
66c02b9e 1146 if (is_floating_type (type1) || is_floating_type (type2))
4ef30785 1147 {
c34e8714 1148 result_type = promotion_type (type1, type2);
301f0ecf 1149 val = allocate_value (result_type);
66c02b9e
UW
1150
1151 struct type *eff_type_v1, *eff_type_v2;
1152 gdb::byte_vector v1, v2;
1153 v1.resize (TYPE_LENGTH (result_type));
1154 v2.resize (TYPE_LENGTH (result_type));
1155
1156 value_args_as_target_float (arg1, arg2,
1157 v1.data (), &eff_type_v1,
1158 v2.data (), &eff_type_v2);
1159 target_float_binop (op, v1.data (), eff_type_v1,
1160 v2.data (), eff_type_v2,
1161 value_contents_raw (val), result_type);
c906108c 1162 }
78134374
SM
1163 else if (type1->code () == TYPE_CODE_BOOL
1164 || type2->code () == TYPE_CODE_BOOL)
c5aa993b 1165 {
c4093a6a 1166 LONGEST v1, v2, v = 0;
a109c7c1 1167
c5aa993b
JM
1168 v1 = value_as_long (arg1);
1169 v2 = value_as_long (arg2);
1170
1171 switch (op)
1172 {
1173 case BINOP_BITWISE_AND:
1174 v = v1 & v2;
1175 break;
1176
1177 case BINOP_BITWISE_IOR:
1178 v = v1 | v2;
1179 break;
1180
1181 case BINOP_BITWISE_XOR:
1182 v = v1 ^ v2;
dda83cd7
SM
1183 break;
1184
1185 case BINOP_EQUAL:
1186 v = v1 == v2;
1187 break;
1188
1189 case BINOP_NOTEQUAL:
1190 v = v1 != v2;
c5aa993b
JM
1191 break;
1192
1193 default:
8a3fe4f8 1194 error (_("Invalid operation on booleans."));
c5aa993b
JM
1195 }
1196
4066e646
UW
1197 result_type = type1;
1198
301f0ecf 1199 val = allocate_value (result_type);
990a07ab 1200 store_signed_integer (value_contents_raw (val),
301f0ecf 1201 TYPE_LENGTH (result_type),
34877895 1202 type_byte_order (result_type),
c5aa993b
JM
1203 v);
1204 }
c906108c
SS
1205 else
1206 /* Integral operations here. */
c906108c 1207 {
4066e646
UW
1208 /* Determine type length of the result, and if the operation should
1209 be done unsigned. For exponentiation and shift operators,
1210 use the length and type of the left operand. Otherwise,
1211 use the signedness of the operand with the greater length.
1212 If both operands are of equal length, use unsigned operation
1213 if one of the operands is unsigned. */
1214 if (op == BINOP_RSH || op == BINOP_LSH || op == BINOP_EXP)
1215 result_type = type1;
4066e646 1216 else
c34e8714 1217 result_type = promotion_type (type1, type2);
c906108c 1218
c6d940a9 1219 if (result_type->is_unsigned ())
c906108c 1220 {
d118ef87 1221 LONGEST v2_signed = value_as_long (arg2);
c4093a6a 1222 ULONGEST v1, v2, v = 0;
a109c7c1 1223
c906108c 1224 v1 = (ULONGEST) value_as_long (arg1);
d118ef87 1225 v2 = (ULONGEST) v2_signed;
c906108c 1226
c906108c
SS
1227 switch (op)
1228 {
1229 case BINOP_ADD:
1230 v = v1 + v2;
1231 break;
c5aa993b 1232
c906108c
SS
1233 case BINOP_SUB:
1234 v = v1 - v2;
1235 break;
c5aa993b 1236
c906108c
SS
1237 case BINOP_MUL:
1238 v = v1 * v2;
1239 break;
c5aa993b 1240
c906108c 1241 case BINOP_DIV:
ef80d18e 1242 case BINOP_INTDIV:
c3940723
PM
1243 if (v2 != 0)
1244 v = v1 / v2;
1245 else
1246 error (_("Division by zero"));
c906108c 1247 break;
c5aa993b 1248
bd49c137 1249 case BINOP_EXP:
dda83cd7 1250 v = uinteger_pow (v1, v2_signed);
bd49c137 1251 break;
c4093a6a 1252
c906108c 1253 case BINOP_REM:
f8597ac3
DE
1254 if (v2 != 0)
1255 v = v1 % v2;
1256 else
1257 error (_("Division by zero"));
c906108c 1258 break;
c5aa993b 1259
c906108c
SS
1260 case BINOP_MOD:
1261 /* Knuth 1.2.4, integer only. Note that unlike the C '%' op,
dda83cd7 1262 v1 mod 0 has a defined value, v1. */
c906108c
SS
1263 if (v2 == 0)
1264 {
1265 v = v1;
1266 }
1267 else
1268 {
c5aa993b 1269 v = v1 / v2;
581e13c1 1270 /* Note floor(v1/v2) == v1/v2 for unsigned. */
c906108c
SS
1271 v = v1 - (v2 * v);
1272 }
1273 break;
c5aa993b 1274
c906108c
SS
1275 case BINOP_LSH:
1276 v = v1 << v2;
1277 break;
c5aa993b 1278
c906108c
SS
1279 case BINOP_RSH:
1280 v = v1 >> v2;
1281 break;
c5aa993b 1282
c906108c
SS
1283 case BINOP_BITWISE_AND:
1284 v = v1 & v2;
1285 break;
c5aa993b 1286
c906108c
SS
1287 case BINOP_BITWISE_IOR:
1288 v = v1 | v2;
1289 break;
c5aa993b 1290
c906108c
SS
1291 case BINOP_BITWISE_XOR:
1292 v = v1 ^ v2;
1293 break;
c5aa993b 1294
c906108c
SS
1295 case BINOP_LOGICAL_AND:
1296 v = v1 && v2;
1297 break;
c5aa993b 1298
c906108c
SS
1299 case BINOP_LOGICAL_OR:
1300 v = v1 || v2;
1301 break;
c5aa993b 1302
c906108c
SS
1303 case BINOP_MIN:
1304 v = v1 < v2 ? v1 : v2;
1305 break;
c5aa993b 1306
c906108c
SS
1307 case BINOP_MAX:
1308 v = v1 > v2 ? v1 : v2;
1309 break;
1310
1311 case BINOP_EQUAL:
1312 v = v1 == v2;
1313 break;
1314
dda83cd7
SM
1315 case BINOP_NOTEQUAL:
1316 v = v1 != v2;
1317 break;
c4093a6a 1318
c906108c
SS
1319 case BINOP_LESS:
1320 v = v1 < v2;
1321 break;
c5aa993b 1322
b966cb8a
TT
1323 case BINOP_GTR:
1324 v = v1 > v2;
1325 break;
1326
1327 case BINOP_LEQ:
1328 v = v1 <= v2;
1329 break;
1330
1331 case BINOP_GEQ:
1332 v = v1 >= v2;
1333 break;
1334
c906108c 1335 default:
8a3fe4f8 1336 error (_("Invalid binary operation on numbers."));
c906108c
SS
1337 }
1338
301f0ecf 1339 val = allocate_value (result_type);
990a07ab 1340 store_unsigned_integer (value_contents_raw (val),
df407dfe 1341 TYPE_LENGTH (value_type (val)),
34877895 1342 type_byte_order (result_type),
c906108c
SS
1343 v);
1344 }
1345 else
1346 {
c4093a6a 1347 LONGEST v1, v2, v = 0;
a109c7c1 1348
c906108c
SS
1349 v1 = value_as_long (arg1);
1350 v2 = value_as_long (arg2);
c5aa993b 1351
c906108c
SS
1352 switch (op)
1353 {
1354 case BINOP_ADD:
1355 v = v1 + v2;
1356 break;
c5aa993b 1357
c906108c
SS
1358 case BINOP_SUB:
1359 v = v1 - v2;
1360 break;
c5aa993b 1361
c906108c
SS
1362 case BINOP_MUL:
1363 v = v1 * v2;
1364 break;
c5aa993b 1365
c906108c 1366 case BINOP_DIV:
ef80d18e 1367 case BINOP_INTDIV:
399cfac6
DL
1368 if (v2 != 0)
1369 v = v1 / v2;
1370 else
8a3fe4f8 1371 error (_("Division by zero"));
dda83cd7 1372 break;
c4093a6a 1373
bd49c137 1374 case BINOP_EXP:
dda83cd7 1375 v = integer_pow (v1, v2);
c906108c 1376 break;
c5aa993b 1377
c906108c 1378 case BINOP_REM:
399cfac6
DL
1379 if (v2 != 0)
1380 v = v1 % v2;
1381 else
8a3fe4f8 1382 error (_("Division by zero"));
c906108c 1383 break;
c5aa993b 1384
c906108c
SS
1385 case BINOP_MOD:
1386 /* Knuth 1.2.4, integer only. Note that unlike the C '%' op,
dda83cd7 1387 X mod 0 has a defined value, X. */
c906108c
SS
1388 if (v2 == 0)
1389 {
1390 v = v1;
1391 }
1392 else
1393 {
c5aa993b 1394 v = v1 / v2;
581e13c1 1395 /* Compute floor. */
c906108c
SS
1396 if (TRUNCATION_TOWARDS_ZERO && (v < 0) && ((v1 % v2) != 0))
1397 {
1398 v--;
1399 }
1400 v = v1 - (v2 * v);
1401 }
1402 break;
c5aa993b 1403
c906108c
SS
1404 case BINOP_LSH:
1405 v = v1 << v2;
1406 break;
c5aa993b 1407
c906108c
SS
1408 case BINOP_RSH:
1409 v = v1 >> v2;
1410 break;
c5aa993b 1411
c906108c
SS
1412 case BINOP_BITWISE_AND:
1413 v = v1 & v2;
1414 break;
c5aa993b 1415
c906108c
SS
1416 case BINOP_BITWISE_IOR:
1417 v = v1 | v2;
1418 break;
c5aa993b 1419
c906108c
SS
1420 case BINOP_BITWISE_XOR:
1421 v = v1 ^ v2;
1422 break;
c5aa993b 1423
c906108c
SS
1424 case BINOP_LOGICAL_AND:
1425 v = v1 && v2;
1426 break;
c5aa993b 1427
c906108c
SS
1428 case BINOP_LOGICAL_OR:
1429 v = v1 || v2;
1430 break;
c5aa993b 1431
c906108c
SS
1432 case BINOP_MIN:
1433 v = v1 < v2 ? v1 : v2;
1434 break;
c5aa993b 1435
c906108c
SS
1436 case BINOP_MAX:
1437 v = v1 > v2 ? v1 : v2;
1438 break;
1439
1440 case BINOP_EQUAL:
1441 v = v1 == v2;
1442 break;
1443
dda83cd7
SM
1444 case BINOP_NOTEQUAL:
1445 v = v1 != v2;
1446 break;
b966cb8a 1447
c906108c
SS
1448 case BINOP_LESS:
1449 v = v1 < v2;
1450 break;
c5aa993b 1451
b966cb8a
TT
1452 case BINOP_GTR:
1453 v = v1 > v2;
1454 break;
1455
1456 case BINOP_LEQ:
1457 v = v1 <= v2;
1458 break;
1459
1460 case BINOP_GEQ:
1461 v = v1 >= v2;
1462 break;
1463
c906108c 1464 default:
8a3fe4f8 1465 error (_("Invalid binary operation on numbers."));
c906108c
SS
1466 }
1467
301f0ecf 1468 val = allocate_value (result_type);
990a07ab 1469 store_signed_integer (value_contents_raw (val),
df407dfe 1470 TYPE_LENGTH (value_type (val)),
34877895 1471 type_byte_order (result_type),
c906108c
SS
1472 v);
1473 }
1474 }
1475
1476 return val;
1477}
7346b668 1478
8954db33
AB
1479/* Widen a scalar value SCALAR_VALUE to vector type VECTOR_TYPE by
1480 replicating SCALAR_VALUE for each element of the vector. Only scalar
1481 types that can be cast to the type of one element of the vector are
1482 acceptable. The newly created vector value is returned upon success,
1483 otherwise an error is thrown. */
1484
1485struct value *
1486value_vector_widen (struct value *scalar_value, struct type *vector_type)
1487{
1488 /* Widen the scalar to a vector. */
1489 struct type *eltype, *scalar_type;
1490 struct value *val, *elval;
1491 LONGEST low_bound, high_bound;
1492 int i;
1493
f168693b 1494 vector_type = check_typedef (vector_type);
8954db33 1495
78134374 1496 gdb_assert (vector_type->code () == TYPE_CODE_ARRAY
bd63c870 1497 && vector_type->is_vector ());
8954db33
AB
1498
1499 if (!get_array_bounds (vector_type, &low_bound, &high_bound))
1500 error (_("Could not determine the vector bounds"));
1501
1502 eltype = check_typedef (TYPE_TARGET_TYPE (vector_type));
1503 elval = value_cast (eltype, scalar_value);
1504
1505 scalar_type = check_typedef (value_type (scalar_value));
1506
1507 /* If we reduced the length of the scalar then check we didn't loose any
1508 important bits. */
1509 if (TYPE_LENGTH (eltype) < TYPE_LENGTH (scalar_type)
1510 && !value_equal (elval, scalar_value))
1511 error (_("conversion of scalar to vector involves truncation"));
1512
1513 val = allocate_value (vector_type);
1514 for (i = 0; i < high_bound - low_bound + 1; i++)
1515 /* Duplicate the contents of elval into the destination vector. */
1516 memcpy (value_contents_writeable (val) + (i * TYPE_LENGTH (eltype)),
1517 value_contents_all (elval), TYPE_LENGTH (eltype));
1518
1519 return val;
1520}
1521
7346b668
KW
1522/* Performs a binary operation on two vector operands by calling scalar_binop
1523 for each pair of vector components. */
1524
1525static struct value *
1526vector_binop (struct value *val1, struct value *val2, enum exp_opcode op)
1527{
1528 struct value *val, *tmp, *mark;
22e048c9 1529 struct type *type1, *type2, *eltype1, *eltype2;
dbc98a8b
KW
1530 int t1_is_vec, t2_is_vec, elsize, i;
1531 LONGEST low_bound1, high_bound1, low_bound2, high_bound2;
7346b668
KW
1532
1533 type1 = check_typedef (value_type (val1));
1534 type2 = check_typedef (value_type (val2));
1535
78134374 1536 t1_is_vec = (type1->code () == TYPE_CODE_ARRAY
bd63c870 1537 && type1->is_vector ()) ? 1 : 0;
78134374 1538 t2_is_vec = (type2->code () == TYPE_CODE_ARRAY
bd63c870 1539 && type2->is_vector ()) ? 1 : 0;
7346b668
KW
1540
1541 if (!t1_is_vec || !t2_is_vec)
1542 error (_("Vector operations are only supported among vectors"));
1543
dbc98a8b
KW
1544 if (!get_array_bounds (type1, &low_bound1, &high_bound1)
1545 || !get_array_bounds (type2, &low_bound2, &high_bound2))
1546 error (_("Could not determine the vector bounds"));
1547
7346b668
KW
1548 eltype1 = check_typedef (TYPE_TARGET_TYPE (type1));
1549 eltype2 = check_typedef (TYPE_TARGET_TYPE (type2));
dbc98a8b 1550 elsize = TYPE_LENGTH (eltype1);
7346b668 1551
78134374 1552 if (eltype1->code () != eltype2->code ()
dbc98a8b 1553 || elsize != TYPE_LENGTH (eltype2)
c6d940a9 1554 || eltype1->is_unsigned () != eltype2->is_unsigned ()
dbc98a8b 1555 || low_bound1 != low_bound2 || high_bound1 != high_bound2)
7346b668
KW
1556 error (_("Cannot perform operation on vectors with different types"));
1557
7346b668
KW
1558 val = allocate_value (type1);
1559 mark = value_mark ();
dbc98a8b 1560 for (i = 0; i < high_bound1 - low_bound1 + 1; i++)
7346b668
KW
1561 {
1562 tmp = value_binop (value_subscript (val1, i),
1563 value_subscript (val2, i), op);
1564 memcpy (value_contents_writeable (val) + i * elsize,
1565 value_contents_all (tmp),
1566 elsize);
1567 }
1568 value_free_to_mark (mark);
1569
1570 return val;
1571}
1572
1573/* Perform a binary operation on two operands. */
1574
1575struct value *
1576value_binop (struct value *arg1, struct value *arg2, enum exp_opcode op)
1577{
3bdf2bbd 1578 struct value *val;
7346b668
KW
1579 struct type *type1 = check_typedef (value_type (arg1));
1580 struct type *type2 = check_typedef (value_type (arg2));
78134374 1581 int t1_is_vec = (type1->code () == TYPE_CODE_ARRAY
bd63c870 1582 && type1->is_vector ());
78134374 1583 int t2_is_vec = (type2->code () == TYPE_CODE_ARRAY
bd63c870 1584 && type2->is_vector ());
3bdf2bbd
KW
1585
1586 if (!t1_is_vec && !t2_is_vec)
1587 val = scalar_binop (arg1, arg2, op);
1588 else if (t1_is_vec && t2_is_vec)
1589 val = vector_binop (arg1, arg2, op);
7346b668 1590 else
3bdf2bbd
KW
1591 {
1592 /* Widen the scalar operand to a vector. */
1593 struct value **v = t1_is_vec ? &arg2 : &arg1;
1594 struct type *t = t1_is_vec ? type2 : type1;
1595
78134374
SM
1596 if (t->code () != TYPE_CODE_FLT
1597 && t->code () != TYPE_CODE_DECFLOAT
3bdf2bbd
KW
1598 && !is_integral_type (t))
1599 error (_("Argument to operation not a number or boolean."));
1600
8954db33
AB
1601 /* Replicate the scalar value to make a vector value. */
1602 *v = value_vector_widen (*v, t1_is_vec ? type1 : type2);
1603
3bdf2bbd
KW
1604 val = vector_binop (arg1, arg2, op);
1605 }
1606
1607 return val;
7346b668 1608}
c906108c
SS
1609\f
1610/* Simulate the C operator ! -- return 1 if ARG1 contains zero. */
1611
1612int
f23631e4 1613value_logical_not (struct value *arg1)
c906108c 1614{
52f0bd74 1615 int len;
fc1a4b47 1616 const gdb_byte *p;
c906108c
SS
1617 struct type *type1;
1618
0ab7ba45 1619 arg1 = coerce_array (arg1);
df407dfe 1620 type1 = check_typedef (value_type (arg1));
c906108c 1621
70100014
UW
1622 if (is_floating_value (arg1))
1623 return target_float_is_zero (value_contents (arg1), type1);
c906108c
SS
1624
1625 len = TYPE_LENGTH (type1);
0fd88904 1626 p = value_contents (arg1);
c906108c
SS
1627
1628 while (--len >= 0)
1629 {
1630 if (*p++)
1631 break;
1632 }
1633
1634 return len < 0;
1635}
1636
c4093a6a 1637/* Perform a comparison on two string values (whose content are not
581e13c1 1638 necessarily null terminated) based on their length. */
c4093a6a
JM
1639
1640static int
f23631e4 1641value_strcmp (struct value *arg1, struct value *arg2)
c4093a6a 1642{
df407dfe
AC
1643 int len1 = TYPE_LENGTH (value_type (arg1));
1644 int len2 = TYPE_LENGTH (value_type (arg2));
fc1a4b47
AC
1645 const gdb_byte *s1 = value_contents (arg1);
1646 const gdb_byte *s2 = value_contents (arg2);
c4093a6a
JM
1647 int i, len = len1 < len2 ? len1 : len2;
1648
1649 for (i = 0; i < len; i++)
1650 {
1651 if (s1[i] < s2[i])
dda83cd7 1652 return -1;
c4093a6a 1653 else if (s1[i] > s2[i])
dda83cd7 1654 return 1;
c4093a6a 1655 else
dda83cd7 1656 continue;
c4093a6a
JM
1657 }
1658
1659 if (len1 < len2)
1660 return -1;
1661 else if (len1 > len2)
1662 return 1;
1663 else
1664 return 0;
1665}
1666
c906108c
SS
1667/* Simulate the C operator == by returning a 1
1668 iff ARG1 and ARG2 have equal contents. */
1669
1670int
f23631e4 1671value_equal (struct value *arg1, struct value *arg2)
c906108c 1672{
52f0bd74 1673 int len;
fc1a4b47
AC
1674 const gdb_byte *p1;
1675 const gdb_byte *p2;
c906108c
SS
1676 struct type *type1, *type2;
1677 enum type_code code1;
1678 enum type_code code2;
2de41bce 1679 int is_int1, is_int2;
c906108c 1680
994b9211
AC
1681 arg1 = coerce_array (arg1);
1682 arg2 = coerce_array (arg2);
c906108c 1683
df407dfe
AC
1684 type1 = check_typedef (value_type (arg1));
1685 type2 = check_typedef (value_type (arg2));
78134374
SM
1686 code1 = type1->code ();
1687 code2 = type2->code ();
2de41bce
PH
1688 is_int1 = is_integral_type (type1);
1689 is_int2 = is_integral_type (type2);
c906108c 1690
2de41bce 1691 if (is_int1 && is_int2)
c906108c
SS
1692 return longest_to_int (value_as_long (value_binop (arg1, arg2,
1693 BINOP_EQUAL)));
66c02b9e
UW
1694 else if ((is_floating_value (arg1) || is_int1)
1695 && (is_floating_value (arg2) || is_int2))
4ef30785 1696 {
66c02b9e
UW
1697 struct type *eff_type_v1, *eff_type_v2;
1698 gdb::byte_vector v1, v2;
1699 v1.resize (std::max (TYPE_LENGTH (type1), TYPE_LENGTH (type2)));
1700 v2.resize (std::max (TYPE_LENGTH (type1), TYPE_LENGTH (type2)));
4ef30785 1701
66c02b9e
UW
1702 value_args_as_target_float (arg1, arg2,
1703 v1.data (), &eff_type_v1,
1704 v2.data (), &eff_type_v2);
4ef30785 1705
66c02b9e
UW
1706 return target_float_compare (v1.data (), eff_type_v1,
1707 v2.data (), eff_type_v2) == 0;
4ef30785 1708 }
c906108c
SS
1709
1710 /* FIXME: Need to promote to either CORE_ADDR or LONGEST, whichever
1711 is bigger. */
2de41bce 1712 else if (code1 == TYPE_CODE_PTR && is_int2)
1aa20aa8 1713 return value_as_address (arg1) == (CORE_ADDR) value_as_long (arg2);
2de41bce 1714 else if (code2 == TYPE_CODE_PTR && is_int1)
1aa20aa8 1715 return (CORE_ADDR) value_as_long (arg1) == value_as_address (arg2);
c906108c
SS
1716
1717 else if (code1 == code2
1718 && ((len = (int) TYPE_LENGTH (type1))
1719 == (int) TYPE_LENGTH (type2)))
1720 {
0fd88904
AC
1721 p1 = value_contents (arg1);
1722 p2 = value_contents (arg2);
c906108c
SS
1723 while (--len >= 0)
1724 {
1725 if (*p1++ != *p2++)
1726 break;
1727 }
1728 return len < 0;
1729 }
c4093a6a
JM
1730 else if (code1 == TYPE_CODE_STRING && code2 == TYPE_CODE_STRING)
1731 {
1732 return value_strcmp (arg1, arg2) == 0;
1733 }
c906108c 1734 else
dba7455e 1735 error (_("Invalid type combination in equality test."));
c906108c
SS
1736}
1737
218d2fc6
TJB
1738/* Compare values based on their raw contents. Useful for arrays since
1739 value_equal coerces them to pointers, thus comparing just the address
1740 of the array instead of its contents. */
1741
1742int
1743value_equal_contents (struct value *arg1, struct value *arg2)
1744{
1745 struct type *type1, *type2;
1746
1747 type1 = check_typedef (value_type (arg1));
1748 type2 = check_typedef (value_type (arg2));
1749
78134374 1750 return (type1->code () == type2->code ()
218d2fc6
TJB
1751 && TYPE_LENGTH (type1) == TYPE_LENGTH (type2)
1752 && memcmp (value_contents (arg1), value_contents (arg2),
1753 TYPE_LENGTH (type1)) == 0);
1754}
1755
c906108c
SS
1756/* Simulate the C operator < by returning 1
1757 iff ARG1's contents are less than ARG2's. */
1758
1759int
f23631e4 1760value_less (struct value *arg1, struct value *arg2)
c906108c 1761{
52f0bd74
AC
1762 enum type_code code1;
1763 enum type_code code2;
c906108c 1764 struct type *type1, *type2;
2de41bce 1765 int is_int1, is_int2;
c906108c 1766
994b9211
AC
1767 arg1 = coerce_array (arg1);
1768 arg2 = coerce_array (arg2);
c906108c 1769
df407dfe
AC
1770 type1 = check_typedef (value_type (arg1));
1771 type2 = check_typedef (value_type (arg2));
78134374
SM
1772 code1 = type1->code ();
1773 code2 = type2->code ();
2de41bce
PH
1774 is_int1 = is_integral_type (type1);
1775 is_int2 = is_integral_type (type2);
c906108c 1776
2de41bce 1777 if (is_int1 && is_int2)
c906108c
SS
1778 return longest_to_int (value_as_long (value_binop (arg1, arg2,
1779 BINOP_LESS)));
66c02b9e
UW
1780 else if ((is_floating_value (arg1) || is_int1)
1781 && (is_floating_value (arg2) || is_int2))
d067a990 1782 {
66c02b9e
UW
1783 struct type *eff_type_v1, *eff_type_v2;
1784 gdb::byte_vector v1, v2;
1785 v1.resize (std::max (TYPE_LENGTH (type1), TYPE_LENGTH (type2)));
1786 v2.resize (std::max (TYPE_LENGTH (type1), TYPE_LENGTH (type2)));
a109c7c1 1787
66c02b9e
UW
1788 value_args_as_target_float (arg1, arg2,
1789 v1.data (), &eff_type_v1,
1790 v2.data (), &eff_type_v2);
4ef30785 1791
66c02b9e
UW
1792 return target_float_compare (v1.data (), eff_type_v1,
1793 v2.data (), eff_type_v2) == -1;
4ef30785 1794 }
c906108c 1795 else if (code1 == TYPE_CODE_PTR && code2 == TYPE_CODE_PTR)
1aa20aa8 1796 return value_as_address (arg1) < value_as_address (arg2);
c906108c
SS
1797
1798 /* FIXME: Need to promote to either CORE_ADDR or LONGEST, whichever
1799 is bigger. */
2de41bce 1800 else if (code1 == TYPE_CODE_PTR && is_int2)
1aa20aa8 1801 return value_as_address (arg1) < (CORE_ADDR) value_as_long (arg2);
2de41bce 1802 else if (code2 == TYPE_CODE_PTR && is_int1)
1aa20aa8 1803 return (CORE_ADDR) value_as_long (arg1) < value_as_address (arg2);
c4093a6a
JM
1804 else if (code1 == TYPE_CODE_STRING && code2 == TYPE_CODE_STRING)
1805 return value_strcmp (arg1, arg2) < 0;
c906108c
SS
1806 else
1807 {
8a3fe4f8 1808 error (_("Invalid type combination in ordering comparison."));
c906108c
SS
1809 return 0;
1810 }
1811}
1812\f
36e9969c
NS
1813/* The unary operators +, - and ~. They free the argument ARG1. */
1814
1815struct value *
1816value_pos (struct value *arg1)
1817{
1818 struct type *type;
4066e646 1819
36e9969c 1820 arg1 = coerce_ref (arg1);
36e9969c
NS
1821 type = check_typedef (value_type (arg1));
1822
66c02b9e 1823 if (is_integral_type (type) || is_floating_value (arg1)
bd63c870 1824 || (type->code () == TYPE_CODE_ARRAY && type->is_vector ())
78134374 1825 || type->code () == TYPE_CODE_COMPLEX)
66c02b9e 1826 return value_from_contents (type, value_contents (arg1));
36e9969c 1827 else
dba7455e 1828 error (_("Argument to positive operation not a number."));
36e9969c 1829}
c906108c 1830
f23631e4
AC
1831struct value *
1832value_neg (struct value *arg1)
c906108c 1833{
52f0bd74 1834 struct type *type;
4066e646 1835
994b9211 1836 arg1 = coerce_ref (arg1);
df407dfe 1837 type = check_typedef (value_type (arg1));
c906108c 1838
66c02b9e
UW
1839 if (is_integral_type (type) || is_floating_type (type))
1840 return value_binop (value_from_longest (type, 0), arg1, BINOP_SUB);
0a12719e
JB
1841 else if (is_fixed_point_type (type))
1842 return value_binop (value_zero (type, not_lval), arg1, BINOP_SUB);
bd63c870 1843 else if (type->code () == TYPE_CODE_ARRAY && type->is_vector ())
120bd360
KW
1844 {
1845 struct value *tmp, *val = allocate_value (type);
1846 struct type *eltype = check_typedef (TYPE_TARGET_TYPE (type));
cfa6f054
KW
1847 int i;
1848 LONGEST low_bound, high_bound;
120bd360 1849
cfa6f054
KW
1850 if (!get_array_bounds (type, &low_bound, &high_bound))
1851 error (_("Could not determine the vector bounds"));
1852
1853 for (i = 0; i < high_bound - low_bound + 1; i++)
120bd360
KW
1854 {
1855 tmp = value_neg (value_subscript (arg1, i));
1856 memcpy (value_contents_writeable (val) + i * TYPE_LENGTH (eltype),
1857 value_contents_all (tmp), TYPE_LENGTH (eltype));
1858 }
1859 return val;
1860 }
78134374 1861 else if (type->code () == TYPE_CODE_COMPLEX)
c34e8714
TT
1862 {
1863 struct value *real = value_real_part (arg1);
1864 struct value *imag = value_imaginary_part (arg1);
1865
1866 real = value_neg (real);
1867 imag = value_neg (imag);
1868 return value_literal_complex (real, imag, type);
1869 }
c5aa993b 1870 else
dba7455e 1871 error (_("Argument to negate operation not a number."));
c906108c
SS
1872}
1873
f23631e4
AC
1874struct value *
1875value_complement (struct value *arg1)
c906108c 1876{
52f0bd74 1877 struct type *type;
120bd360 1878 struct value *val;
4066e646 1879
994b9211 1880 arg1 = coerce_ref (arg1);
df407dfe 1881 type = check_typedef (value_type (arg1));
c906108c 1882
120bd360
KW
1883 if (is_integral_type (type))
1884 val = value_from_longest (type, ~value_as_long (arg1));
bd63c870 1885 else if (type->code () == TYPE_CODE_ARRAY && type->is_vector ())
120bd360
KW
1886 {
1887 struct value *tmp;
1888 struct type *eltype = check_typedef (TYPE_TARGET_TYPE (type));
cfa6f054
KW
1889 int i;
1890 LONGEST low_bound, high_bound;
1891
1892 if (!get_array_bounds (type, &low_bound, &high_bound))
1893 error (_("Could not determine the vector bounds"));
120bd360
KW
1894
1895 val = allocate_value (type);
cfa6f054 1896 for (i = 0; i < high_bound - low_bound + 1; i++)
dda83cd7
SM
1897 {
1898 tmp = value_complement (value_subscript (arg1, i));
1899 memcpy (value_contents_writeable (val) + i * TYPE_LENGTH (eltype),
1900 value_contents_all (tmp), TYPE_LENGTH (eltype));
1901 }
120bd360 1902 }
78134374 1903 else if (type->code () == TYPE_CODE_COMPLEX)
c34e8714
TT
1904 {
1905 /* GCC has an extension that treats ~complex as the complex
1906 conjugate. */
1907 struct value *real = value_real_part (arg1);
1908 struct value *imag = value_imaginary_part (arg1);
1909
1910 imag = value_neg (imag);
1911 return value_literal_complex (real, imag, type);
1912 }
120bd360
KW
1913 else
1914 error (_("Argument to complement operation not an integer, boolean."));
c906108c 1915
120bd360 1916 return val;
c906108c
SS
1917}
1918\f
df407dfe 1919/* The INDEX'th bit of SET value whose value_type is TYPE,
0fd88904 1920 and whose value_contents is valaddr.
581e13c1 1921 Return -1 if out of range, -2 other error. */
c906108c
SS
1922
1923int
fc1a4b47 1924value_bit_index (struct type *type, const gdb_byte *valaddr, int index)
c906108c 1925{
50810684 1926 struct gdbarch *gdbarch = get_type_arch (type);
c906108c
SS
1927 LONGEST low_bound, high_bound;
1928 LONGEST word;
1929 unsigned rel_index;
3d967001 1930 struct type *range = type->index_type ();
a109c7c1 1931
c906108c
SS
1932 if (get_discrete_bounds (range, &low_bound, &high_bound) < 0)
1933 return -2;
1934 if (index < low_bound || index > high_bound)
1935 return -1;
1936 rel_index = index - low_bound;
e17a4113 1937 word = extract_unsigned_integer (valaddr + (rel_index / TARGET_CHAR_BIT), 1,
34877895 1938 type_byte_order (type));
c906108c 1939 rel_index %= TARGET_CHAR_BIT;
d5a22e77 1940 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
c906108c
SS
1941 rel_index = TARGET_CHAR_BIT - 1 - rel_index;
1942 return (word >> rel_index) & 1;
1943}
1944
fbb06eb1 1945int
f23631e4 1946value_in (struct value *element, struct value *set)
c906108c
SS
1947{
1948 int member;
df407dfe
AC
1949 struct type *settype = check_typedef (value_type (set));
1950 struct type *eltype = check_typedef (value_type (element));
a109c7c1 1951
78134374 1952 if (eltype->code () == TYPE_CODE_RANGE)
c906108c 1953 eltype = TYPE_TARGET_TYPE (eltype);
78134374 1954 if (settype->code () != TYPE_CODE_SET)
8a3fe4f8 1955 error (_("Second argument of 'IN' has wrong type"));
78134374
SM
1956 if (eltype->code () != TYPE_CODE_INT
1957 && eltype->code () != TYPE_CODE_CHAR
1958 && eltype->code () != TYPE_CODE_ENUM
1959 && eltype->code () != TYPE_CODE_BOOL)
8a3fe4f8 1960 error (_("First argument of 'IN' has wrong type"));
0fd88904 1961 member = value_bit_index (settype, value_contents (set),
c906108c
SS
1962 value_as_long (element));
1963 if (member < 0)
8a3fe4f8 1964 error (_("First argument of 'IN' not in range"));
fbb06eb1 1965 return member;
c906108c 1966}
This page took 2.62547 seconds and 4 git commands to generate.