1 /* Find a variable's value in memory, for GDB, the GNU debugger.
2 Copyright 1986, 87, 89, 91, 94, 95, 96, 1998
3 Free Software Foundation, Inc.
5 This file is part of GDB.
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
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
30 #include "gdb_string.h"
31 #include "floatformat.h"
32 #include "symfile.h" /* for overlay functions */
34 /* This is used to indicate that we don't know the format of the floating point
35 number. Typically, this is useful for native ports, where the actual format
36 is irrelevant, since no conversions will be taking place. */
38 const struct floatformat floatformat_unknown
;
40 /* Basic byte-swapping routines. GDB has needed these for a long time...
41 All extract a target-format integer at ADDR which is LEN bytes long. */
43 #if TARGET_CHAR_BIT != 8 || HOST_CHAR_BIT != 8
44 /* 8 bit characters are a pretty safe assumption these days, so we
45 assume it throughout all these swapping routines. If we had to deal with
46 9 bit characters, we would need to make len be in bits and would have
47 to re-write these routines... */
52 extract_signed_integer (void *addr
, int len
)
56 unsigned char *startaddr
= (unsigned char *) addr
;
57 unsigned char *endaddr
= startaddr
+ len
;
59 if (len
> (int) sizeof (LONGEST
))
61 That operation is not available on integers of more than %d bytes.",
64 /* Start at the most significant end of the integer, and work towards
65 the least significant. */
66 if (TARGET_BYTE_ORDER
== BIG_ENDIAN
)
69 /* Do the sign extension once at the start. */
70 retval
= ((LONGEST
) * p
^ 0x80) - 0x80;
71 for (++p
; p
< endaddr
; ++p
)
72 retval
= (retval
<< 8) | *p
;
77 /* Do the sign extension once at the start. */
78 retval
= ((LONGEST
) * p
^ 0x80) - 0x80;
79 for (--p
; p
>= startaddr
; --p
)
80 retval
= (retval
<< 8) | *p
;
86 extract_unsigned_integer (void *addr
, int len
)
90 unsigned char *startaddr
= (unsigned char *) addr
;
91 unsigned char *endaddr
= startaddr
+ len
;
93 if (len
> (int) sizeof (ULONGEST
))
95 That operation is not available on integers of more than %d bytes.",
98 /* Start at the most significant end of the integer, and work towards
99 the least significant. */
101 if (TARGET_BYTE_ORDER
== BIG_ENDIAN
)
103 for (p
= startaddr
; p
< endaddr
; ++p
)
104 retval
= (retval
<< 8) | *p
;
108 for (p
= endaddr
- 1; p
>= startaddr
; --p
)
109 retval
= (retval
<< 8) | *p
;
114 /* Sometimes a long long unsigned integer can be extracted as a
115 LONGEST value. This is done so that we can print these values
116 better. If this integer can be converted to a LONGEST, this
117 function returns 1 and sets *PVAL. Otherwise it returns 0. */
120 extract_long_unsigned_integer (void *addr
, int orig_len
, LONGEST
*pval
)
122 char *p
, *first_addr
;
126 if (TARGET_BYTE_ORDER
== BIG_ENDIAN
)
128 for (p
= (char *) addr
;
129 len
> (int) sizeof (LONGEST
) && p
< (char *) addr
+ orig_len
;
141 first_addr
= (char *) addr
;
142 for (p
= (char *) addr
+ orig_len
- 1;
143 len
> (int) sizeof (LONGEST
) && p
>= (char *) addr
;
153 if (len
<= (int) sizeof (LONGEST
))
155 *pval
= (LONGEST
) extract_unsigned_integer (first_addr
,
164 /* Treat the LEN bytes at ADDR as a target-format address, and return
165 that address. ADDR is a buffer in the GDB process, not in the
168 This function should only be used by target-specific code. It
169 assumes that a pointer has the same representation as that thing's
170 address represented as an integer. Some machines use word
171 addresses, or similarly munged things, for certain types of
172 pointers, so that assumption doesn't hold everywhere.
174 Common code should use extract_typed_address instead, or something
175 else based on POINTER_TO_ADDRESS. */
178 extract_address (void *addr
, int len
)
180 /* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
181 whether we want this to be true eventually. */
182 return (CORE_ADDR
) extract_unsigned_integer (addr
, len
);
186 /* Treat the bytes at BUF as a pointer of type TYPE, and return the
187 address it represents. */
189 extract_typed_address (void *buf
, struct type
*type
)
191 if (TYPE_CODE (type
) != TYPE_CODE_PTR
192 && TYPE_CODE (type
) != TYPE_CODE_REF
)
193 internal_error ("findvar.c (extract_typed_address): "
194 "type is not a pointer or reference");
196 return POINTER_TO_ADDRESS (type
, buf
);
201 store_signed_integer (void *addr
, int len
, LONGEST val
)
204 unsigned char *startaddr
= (unsigned char *) addr
;
205 unsigned char *endaddr
= startaddr
+ len
;
207 /* Start at the least significant end of the integer, and work towards
208 the most significant. */
209 if (TARGET_BYTE_ORDER
== BIG_ENDIAN
)
211 for (p
= endaddr
- 1; p
>= startaddr
; --p
)
219 for (p
= startaddr
; p
< endaddr
; ++p
)
228 store_unsigned_integer (void *addr
, int len
, ULONGEST val
)
231 unsigned char *startaddr
= (unsigned char *) addr
;
232 unsigned char *endaddr
= startaddr
+ len
;
234 /* Start at the least significant end of the integer, and work towards
235 the most significant. */
236 if (TARGET_BYTE_ORDER
== BIG_ENDIAN
)
238 for (p
= endaddr
- 1; p
>= startaddr
; --p
)
246 for (p
= startaddr
; p
< endaddr
; ++p
)
254 /* Store the address VAL as a LEN-byte value in target byte order at
255 ADDR. ADDR is a buffer in the GDB process, not in the inferior.
257 This function should only be used by target-specific code. It
258 assumes that a pointer has the same representation as that thing's
259 address represented as an integer. Some machines use word
260 addresses, or similarly munged things, for certain types of
261 pointers, so that assumption doesn't hold everywhere.
263 Common code should use store_typed_address instead, or something else
264 based on ADDRESS_TO_POINTER. */
266 store_address (void *addr
, int len
, LONGEST val
)
268 store_unsigned_integer (addr
, len
, val
);
272 /* Store the address ADDR as a pointer of type TYPE at BUF, in target
275 store_typed_address (void *buf
, struct type
*type
, CORE_ADDR addr
)
277 if (TYPE_CODE (type
) != TYPE_CODE_PTR
278 && TYPE_CODE (type
) != TYPE_CODE_REF
)
279 internal_error ("findvar.c (store_typed_address): "
280 "type is not a pointer or reference");
282 ADDRESS_TO_POINTER (type
, buf
, addr
);
288 /* Extract a floating-point number from a target-order byte-stream at ADDR.
289 Returns the value as type DOUBLEST.
291 If the host and target formats agree, we just copy the raw data into the
292 appropriate type of variable and return, letting the host increase precision
293 as necessary. Otherwise, we call the conversion routine and let it do the
297 extract_floating (void *addr
, int len
)
301 if (len
* TARGET_CHAR_BIT
== TARGET_FLOAT_BIT
)
303 if (HOST_FLOAT_FORMAT
== TARGET_FLOAT_FORMAT
)
307 memcpy (&retval
, addr
, sizeof (retval
));
311 floatformat_to_doublest (TARGET_FLOAT_FORMAT
, addr
, &dretval
);
313 else if (len
* TARGET_CHAR_BIT
== TARGET_DOUBLE_BIT
)
315 if (HOST_DOUBLE_FORMAT
== TARGET_DOUBLE_FORMAT
)
319 memcpy (&retval
, addr
, sizeof (retval
));
323 floatformat_to_doublest (TARGET_DOUBLE_FORMAT
, addr
, &dretval
);
325 else if (len
* TARGET_CHAR_BIT
== TARGET_LONG_DOUBLE_BIT
)
327 if (HOST_LONG_DOUBLE_FORMAT
== TARGET_LONG_DOUBLE_FORMAT
)
331 memcpy (&retval
, addr
, sizeof (retval
));
335 floatformat_to_doublest (TARGET_LONG_DOUBLE_FORMAT
, addr
, &dretval
);
339 error ("Can't deal with a floating point number of %d bytes.", len
);
346 store_floating (void *addr
, int len
, DOUBLEST val
)
348 if (len
* TARGET_CHAR_BIT
== TARGET_FLOAT_BIT
)
350 if (HOST_FLOAT_FORMAT
== TARGET_FLOAT_FORMAT
)
352 float floatval
= val
;
354 memcpy (addr
, &floatval
, sizeof (floatval
));
357 floatformat_from_doublest (TARGET_FLOAT_FORMAT
, &val
, addr
);
359 else if (len
* TARGET_CHAR_BIT
== TARGET_DOUBLE_BIT
)
361 if (HOST_DOUBLE_FORMAT
== TARGET_DOUBLE_FORMAT
)
363 double doubleval
= val
;
365 memcpy (addr
, &doubleval
, sizeof (doubleval
));
368 floatformat_from_doublest (TARGET_DOUBLE_FORMAT
, &val
, addr
);
370 else if (len
* TARGET_CHAR_BIT
== TARGET_LONG_DOUBLE_BIT
)
372 if (HOST_LONG_DOUBLE_FORMAT
== TARGET_LONG_DOUBLE_FORMAT
)
373 memcpy (addr
, &val
, sizeof (val
));
375 floatformat_from_doublest (TARGET_LONG_DOUBLE_FORMAT
, &val
, addr
);
379 error ("Can't deal with a floating point number of %d bytes.", len
);
383 /* Return a `value' with the contents of register REGNUM
384 in its virtual format, with the type specified by
385 REGISTER_VIRTUAL_TYPE.
387 NOTE: returns NULL if register value is not available.
388 Caller will check return value or die! */
391 value_of_register (regnum
)
396 register value_ptr reg_val
;
397 char raw_buffer
[MAX_REGISTER_RAW_SIZE
];
400 get_saved_register (raw_buffer
, &optim
, &addr
,
401 selected_frame
, regnum
, &lval
);
403 if (register_cached (regnum
) < 0)
404 return NULL
; /* register value not available */
406 reg_val
= allocate_value (REGISTER_VIRTUAL_TYPE (regnum
));
408 /* Convert raw data to virtual format if necessary. */
410 if (REGISTER_CONVERTIBLE (regnum
))
412 REGISTER_CONVERT_TO_VIRTUAL (regnum
, REGISTER_VIRTUAL_TYPE (regnum
),
413 raw_buffer
, VALUE_CONTENTS_RAW (reg_val
));
415 else if (REGISTER_RAW_SIZE (regnum
) == REGISTER_VIRTUAL_SIZE (regnum
))
416 memcpy (VALUE_CONTENTS_RAW (reg_val
), raw_buffer
,
417 REGISTER_RAW_SIZE (regnum
));
419 internal_error ("Register \"%s\" (%d) has conflicting raw (%d) and virtual (%d) size",
420 REGISTER_NAME (regnum
),
422 REGISTER_RAW_SIZE (regnum
),
423 REGISTER_VIRTUAL_SIZE (regnum
));
424 VALUE_LVAL (reg_val
) = lval
;
425 VALUE_ADDRESS (reg_val
) = addr
;
426 VALUE_REGNO (reg_val
) = regnum
;
427 VALUE_OPTIMIZED_OUT (reg_val
) = optim
;
431 /* Given a pointer of type TYPE in target form in BUF, return the
432 address it represents. */
434 unsigned_pointer_to_address (struct type
*type
, void *buf
)
436 return extract_address (buf
, TYPE_LENGTH (type
));
440 signed_pointer_to_address (struct type
*type
, void *buf
)
442 return extract_signed_integer (buf
, TYPE_LENGTH (type
));
445 /* Given an address, store it as a pointer of type TYPE in target
448 unsigned_address_to_pointer (struct type
*type
, void *buf
, CORE_ADDR addr
)
450 store_address (buf
, TYPE_LENGTH (type
), addr
);
454 address_to_signed_pointer (struct type
*type
, void *buf
, CORE_ADDR addr
)
456 store_signed_integer (buf
, TYPE_LENGTH (type
), addr
);
459 /* Will calling read_var_value or locate_var_value on SYM end
460 up caring what frame it is being evaluated relative to? SYM must
463 symbol_read_needs_frame (sym
)
466 switch (SYMBOL_CLASS (sym
))
468 /* All cases listed explicitly so that gcc -Wall will detect it if
469 we failed to consider one. */
474 case LOC_REGPARM_ADDR
:
478 case LOC_BASEREG_ARG
:
479 case LOC_THREAD_LOCAL_STATIC
:
489 /* Getting the address of a label can be done independently of the block,
490 even if some *uses* of that address wouldn't work so well without
494 case LOC_CONST_BYTES
:
496 case LOC_OPTIMIZED_OUT
:
502 /* Given a struct symbol for a variable,
503 and a stack frame id, read the value of the variable
504 and return a (pointer to a) struct value containing the value.
505 If the variable cannot be found, return a zero pointer.
506 If FRAME is NULL, use the selected_frame. */
509 read_var_value (var
, frame
)
510 register struct symbol
*var
;
511 struct frame_info
*frame
;
513 register value_ptr v
;
514 struct type
*type
= SYMBOL_TYPE (var
);
518 v
= allocate_value (type
);
519 VALUE_LVAL (v
) = lval_memory
; /* The most likely possibility. */
520 VALUE_BFD_SECTION (v
) = SYMBOL_BFD_SECTION (var
);
522 len
= TYPE_LENGTH (type
);
525 frame
= selected_frame
;
527 switch (SYMBOL_CLASS (var
))
530 /* Put the constant back in target format. */
531 store_signed_integer (VALUE_CONTENTS_RAW (v
), len
,
532 (LONGEST
) SYMBOL_VALUE (var
));
533 VALUE_LVAL (v
) = not_lval
;
537 /* Put the constant back in target format. */
538 if (overlay_debugging
)
541 = symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var
),
542 SYMBOL_BFD_SECTION (var
));
543 store_typed_address (VALUE_CONTENTS_RAW (v
), type
, addr
);
546 store_typed_address (VALUE_CONTENTS_RAW (v
), type
,
547 SYMBOL_VALUE_ADDRESS (var
));
548 VALUE_LVAL (v
) = not_lval
;
551 case LOC_CONST_BYTES
:
554 bytes_addr
= SYMBOL_VALUE_BYTES (var
);
555 memcpy (VALUE_CONTENTS_RAW (v
), bytes_addr
, len
);
556 VALUE_LVAL (v
) = not_lval
;
561 if (overlay_debugging
)
562 addr
= symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (var
),
563 SYMBOL_BFD_SECTION (var
));
565 addr
= SYMBOL_VALUE_ADDRESS (var
);
569 /* The import slot does not have a real address in it from the
570 dynamic loader (dld.sl on HP-UX), if the target hasn't begun
571 execution yet, so check for that. */
572 if (!target_has_execution
)
574 Attempt to access variable defined in different shared object or load module when\n\
575 addresses have not been bound by the dynamic loader. Try again when executable is running.");
577 addr
= SYMBOL_VALUE_ADDRESS (var
);
578 addr
= read_memory_unsigned_integer
579 (addr
, TARGET_PTR_BIT
/ TARGET_CHAR_BIT
);
585 addr
= FRAME_ARGS_ADDRESS (frame
);
588 addr
+= SYMBOL_VALUE (var
);
594 addr
= FRAME_ARGS_ADDRESS (frame
);
597 addr
+= SYMBOL_VALUE (var
);
598 addr
= read_memory_unsigned_integer
599 (addr
, TARGET_PTR_BIT
/ TARGET_CHAR_BIT
);
606 addr
= FRAME_LOCALS_ADDRESS (frame
);
607 addr
+= SYMBOL_VALUE (var
);
611 case LOC_BASEREG_ARG
:
613 char buf
[MAX_REGISTER_RAW_SIZE
];
614 get_saved_register (buf
, NULL
, NULL
, frame
, SYMBOL_BASEREG (var
),
616 addr
= extract_address (buf
, REGISTER_RAW_SIZE (SYMBOL_BASEREG (var
)));
617 addr
+= SYMBOL_VALUE (var
);
621 case LOC_THREAD_LOCAL_STATIC
:
623 char buf
[MAX_REGISTER_RAW_SIZE
];
625 get_saved_register (buf
, NULL
, NULL
, frame
, SYMBOL_BASEREG (var
),
627 addr
= extract_address (buf
, REGISTER_RAW_SIZE (SYMBOL_BASEREG (var
)));
628 addr
+= SYMBOL_VALUE (var
);
633 error ("Cannot look up value of a typedef");
637 if (overlay_debugging
)
638 VALUE_ADDRESS (v
) = symbol_overlayed_address
639 (BLOCK_START (SYMBOL_BLOCK_VALUE (var
)), SYMBOL_BFD_SECTION (var
));
641 VALUE_ADDRESS (v
) = BLOCK_START (SYMBOL_BLOCK_VALUE (var
));
646 case LOC_REGPARM_ADDR
:
649 int regno
= SYMBOL_VALUE (var
);
654 b
= get_frame_block (frame
);
656 if (SYMBOL_CLASS (var
) == LOC_REGPARM_ADDR
)
658 regval
= value_from_register (lookup_pointer_type (type
),
663 error ("Value of register variable not available.");
665 addr
= value_as_pointer (regval
);
666 VALUE_LVAL (v
) = lval_memory
;
670 regval
= value_from_register (type
, regno
, frame
);
673 error ("Value of register variable not available.");
681 struct minimal_symbol
*msym
;
683 msym
= lookup_minimal_symbol (SYMBOL_NAME (var
), NULL
, NULL
);
686 if (overlay_debugging
)
687 addr
= symbol_overlayed_address (SYMBOL_VALUE_ADDRESS (msym
),
688 SYMBOL_BFD_SECTION (msym
));
690 addr
= SYMBOL_VALUE_ADDRESS (msym
);
694 case LOC_OPTIMIZED_OUT
:
695 VALUE_LVAL (v
) = not_lval
;
696 VALUE_OPTIMIZED_OUT (v
) = 1;
700 error ("Cannot look up value of a botched symbol.");
704 VALUE_ADDRESS (v
) = addr
;
709 /* Return a value of type TYPE, stored in register REGNUM, in frame
712 NOTE: returns NULL if register value is not available.
713 Caller will check return value or die! */
716 value_from_register (type
, regnum
, frame
)
719 struct frame_info
*frame
;
721 char raw_buffer
[MAX_REGISTER_RAW_SIZE
];
724 value_ptr v
= allocate_value (type
);
725 char *value_bytes
= 0;
726 int value_bytes_copied
= 0;
727 int num_storage_locs
;
731 CHECK_TYPEDEF (type
);
732 len
= TYPE_LENGTH (type
);
734 /* Pointers on D10V are really only 16 bits,
735 but we lie to gdb elsewhere... */
736 if (GDB_TARGET_IS_D10V
&& TYPE_CODE (type
) == TYPE_CODE_PTR
)
739 VALUE_REGNO (v
) = regnum
;
741 num_storage_locs
= (len
> REGISTER_VIRTUAL_SIZE (regnum
) ?
742 ((len
- 1) / REGISTER_RAW_SIZE (regnum
)) + 1 :
745 if (num_storage_locs
> 1
746 #ifdef GDB_TARGET_IS_H8500
747 || TYPE_CODE (type
) == TYPE_CODE_PTR
751 /* Value spread across multiple storage locations. */
754 int mem_stor
= 0, reg_stor
= 0;
755 int mem_tracking
= 1;
756 CORE_ADDR last_addr
= 0;
757 CORE_ADDR first_addr
= 0;
759 value_bytes
= (char *) alloca (len
+ MAX_REGISTER_RAW_SIZE
);
761 /* Copy all of the data out, whereever it may be. */
763 #ifdef GDB_TARGET_IS_H8500
764 /* This piece of hideosity is required because the H8500 treats registers
765 differently depending upon whether they are used as pointers or not. As a
766 pointer, a register needs to have a page register tacked onto the front.
767 An alternate way to do this would be to have gcc output different register
768 numbers for the pointer & non-pointer form of the register. But, it
769 doesn't, so we're stuck with this. */
771 if (TYPE_CODE (type
) == TYPE_CODE_PTR
782 page_regnum
= SEG_D_REGNUM
;
786 page_regnum
= SEG_E_REGNUM
;
790 page_regnum
= SEG_T_REGNUM
;
795 get_saved_register (value_bytes
+ 1,
802 if (register_cached (page_regnum
) == -1)
803 return NULL
; /* register value not available */
805 if (lval
== lval_register
)
812 get_saved_register (value_bytes
+ 2,
819 if (register_cached (regnum
) == -1)
820 return NULL
; /* register value not available */
822 if (lval
== lval_register
)
827 mem_tracking
= mem_tracking
&& (addr
== last_addr
);
832 #endif /* GDB_TARGET_IS_H8500 */
833 for (local_regnum
= regnum
;
834 value_bytes_copied
< len
;
835 (value_bytes_copied
+= REGISTER_RAW_SIZE (local_regnum
),
838 get_saved_register (value_bytes
+ value_bytes_copied
,
845 if (register_cached (local_regnum
) == -1)
846 return NULL
; /* register value not available */
848 if (regnum
== local_regnum
)
850 if (lval
== lval_register
)
858 && (regnum
== local_regnum
859 || addr
== last_addr
));
864 if ((reg_stor
&& mem_stor
)
865 || (mem_stor
&& !mem_tracking
))
866 /* Mixed storage; all of the hassle we just went through was
867 for some good purpose. */
869 VALUE_LVAL (v
) = lval_reg_frame_relative
;
870 VALUE_FRAME (v
) = FRAME_FP (frame
);
871 VALUE_FRAME_REGNUM (v
) = regnum
;
875 VALUE_LVAL (v
) = lval_memory
;
876 VALUE_ADDRESS (v
) = first_addr
;
880 VALUE_LVAL (v
) = lval_register
;
881 VALUE_ADDRESS (v
) = first_addr
;
884 internal_error ("value_from_register: Value not stored anywhere!");
886 VALUE_OPTIMIZED_OUT (v
) = optim
;
888 /* Any structure stored in more than one register will always be
889 an integral number of registers. Otherwise, you'd need to do
890 some fiddling with the last register copied here for little
893 /* Copy into the contents section of the value. */
894 memcpy (VALUE_CONTENTS_RAW (v
), value_bytes
, len
);
896 /* Finally do any conversion necessary when extracting this
897 type from more than one register. */
898 #ifdef REGISTER_CONVERT_TO_TYPE
899 REGISTER_CONVERT_TO_TYPE (regnum
, type
, VALUE_CONTENTS_RAW (v
));
904 /* Data is completely contained within a single register. Locate the
905 register's contents in a real register or in core;
906 read the data in raw format. */
908 get_saved_register (raw_buffer
, &optim
, &addr
, frame
, regnum
, &lval
);
910 if (register_cached (regnum
) == -1)
911 return NULL
; /* register value not available */
913 VALUE_OPTIMIZED_OUT (v
) = optim
;
914 VALUE_LVAL (v
) = lval
;
915 VALUE_ADDRESS (v
) = addr
;
917 /* Convert raw data to virtual format if necessary. */
919 if (REGISTER_CONVERTIBLE (regnum
))
921 REGISTER_CONVERT_TO_VIRTUAL (regnum
, type
,
922 raw_buffer
, VALUE_CONTENTS_RAW (v
));
926 /* Raw and virtual formats are the same for this register. */
928 if (TARGET_BYTE_ORDER
== BIG_ENDIAN
&& len
< REGISTER_RAW_SIZE (regnum
))
930 /* Big-endian, and we want less than full size. */
931 VALUE_OFFSET (v
) = REGISTER_RAW_SIZE (regnum
) - len
;
934 memcpy (VALUE_CONTENTS_RAW (v
), raw_buffer
+ VALUE_OFFSET (v
), len
);
937 if (GDB_TARGET_IS_D10V
938 && TYPE_CODE (type
) == TYPE_CODE_PTR
)
943 snum
= (unsigned short)
944 extract_unsigned_integer (VALUE_CONTENTS_RAW (v
), 2);
946 if (TYPE_TARGET_TYPE (type
) /* pointer to function */
947 && (TYPE_CODE (TYPE_TARGET_TYPE (type
)) == TYPE_CODE_FUNC
))
948 num
= D10V_MAKE_IADDR (snum
);
949 else /* pointer to data */
950 num
= D10V_MAKE_DADDR (snum
);
952 store_address (VALUE_CONTENTS_RAW (v
), 4, num
);
958 /* Given a struct symbol for a variable or function,
959 and a stack frame id,
960 return a (pointer to a) struct value containing the properly typed
964 locate_var_value (var
, frame
)
965 register struct symbol
*var
;
966 struct frame_info
*frame
;
969 struct type
*type
= SYMBOL_TYPE (var
);
970 value_ptr lazy_value
;
972 /* Evaluate it first; if the result is a memory address, we're fine.
973 Lazy evaluation pays off here. */
975 lazy_value
= read_var_value (var
, frame
);
977 error ("Address of \"%s\" is unknown.", SYMBOL_SOURCE_NAME (var
));
979 if (VALUE_LAZY (lazy_value
)
980 || TYPE_CODE (type
) == TYPE_CODE_FUNC
)
984 addr
= VALUE_ADDRESS (lazy_value
);
985 val
= value_from_pointer (lookup_pointer_type (type
), addr
);
986 VALUE_BFD_SECTION (val
) = VALUE_BFD_SECTION (lazy_value
);
990 /* Not a memory address; check what the problem was. */
991 switch (VALUE_LVAL (lazy_value
))
994 case lval_reg_frame_relative
:
995 error ("Address requested for identifier \"%s\" which is in a register.",
996 SYMBOL_SOURCE_NAME (var
));
1000 error ("Can't take address of \"%s\" which isn't an lvalue.",
1001 SYMBOL_SOURCE_NAME (var
));
1004 return 0; /* For lint -- never reached */