1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
|
/* Scheme interface to values.
Copyright (C) 2008-2015 Free Software Foundation, Inc.
This file is part of GDB.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>. */
/* See README file in this directory for implementation notes, coding
conventions, et.al. */
#include "defs.h"
#include "arch-utils.h"
#include "charset.h"
#include "cp-abi.h"
#include "infcall.h"
#include "symtab.h" /* Needed by language.h. */
#include "language.h"
#include "valprint.h"
#include "value.h"
#include "guile-internal.h"
/* The <gdb:value> smob. */
typedef struct _value_smob
{
/* This always appears first. */
gdb_smob base;
/* Doubly linked list of values in values_in_scheme.
IWBN to use a chained_gdb_smob instead, which is doable, it just requires
a bit more casting than normal. */
struct _value_smob *next;
struct _value_smob *prev;
struct value *value;
/* These are cached here to avoid making multiple copies of them.
Plus computing the dynamic_type can be a bit expensive.
We use #f to indicate that the value doesn't exist (e.g. value doesn't
have an address), so we need another value to indicate that we haven't
computed the value yet. For this we use SCM_UNDEFINED. */
SCM address;
SCM type;
SCM dynamic_type;
} value_smob;
static const char value_smob_name[] = "gdb:value";
/* The tag Guile knows the value smob by. */
static scm_t_bits value_smob_tag;
/* List of all values which are currently exposed to Scheme. It is
maintained so that when an objfile is discarded, preserve_values
can copy the values' types if needed. */
static value_smob *values_in_scheme;
/* Keywords used by Scheme procedures in this file. */
static SCM type_keyword;
static SCM encoding_keyword;
static SCM errors_keyword;
static SCM length_keyword;
/* Possible #:errors values. */
static SCM error_symbol;
static SCM escape_symbol;
static SCM substitute_symbol;
/* Administrivia for value smobs. */
/* Iterate over all the <gdb:value> objects, calling preserve_one_value on
each.
This is the extension_language_ops.preserve_values "method". */
void
gdbscm_preserve_values (const struct extension_language_defn *extlang,
struct objfile *objfile, htab_t copied_types)
{
value_smob *iter;
for (iter = values_in_scheme; iter; iter = iter->next)
preserve_one_value (iter->value, objfile, copied_types);
}
/* Helper to add a value_smob to the global list. */
static void
vlscm_remember_scheme_value (value_smob *v_smob)
{
v_smob->next = values_in_scheme;
if (v_smob->next)
v_smob->next->prev = v_smob;
v_smob->prev = NULL;
values_in_scheme = v_smob;
}
/* Helper to remove a value_smob from the global list. */
static void
vlscm_forget_value_smob (value_smob *v_smob)
{
/* Remove SELF from the global list. */
if (v_smob->prev)
v_smob->prev->next = v_smob->next;
else
{
gdb_assert (values_in_scheme == v_smob);
values_in_scheme = v_smob->next;
}
if (v_smob->next)
v_smob->next->prev = v_smob->prev;
}
/* The smob "free" function for <gdb:value>. */
static size_t
vlscm_free_value_smob (SCM self)
{
value_smob *v_smob = (value_smob *) SCM_SMOB_DATA (self);
vlscm_forget_value_smob (v_smob);
value_free (v_smob->value);
return 0;
}
/* The smob "print" function for <gdb:value>. */
static int
vlscm_print_value_smob (SCM self, SCM port, scm_print_state *pstate)
{
value_smob *v_smob = (value_smob *) SCM_SMOB_DATA (self);
char *s = NULL;
struct value_print_options opts;
if (pstate->writingp)
gdbscm_printf (port, "#<%s ", value_smob_name);
get_user_print_options (&opts);
opts.deref_ref = 0;
/* pstate->writingp = zero if invoked by display/~A, and nonzero if
invoked by write/~S. What to do here may need to evolve.
IWBN if we could pass an argument to format that would we could use
instead of writingp. */
opts.raw = !!pstate->writingp;
TRY
{
struct ui_file *stb = mem_fileopen ();
struct cleanup *old_chain = make_cleanup_ui_file_delete (stb);
common_val_print (v_smob->value, stb, 0, &opts, current_language);
s = ui_file_xstrdup (stb, NULL);
do_cleanups (old_chain);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
if (s != NULL)
{
scm_puts (s, port);
xfree (s);
}
if (pstate->writingp)
scm_puts (">", port);
scm_remember_upto_here_1 (self);
/* Non-zero means success. */
return 1;
}
/* The smob "equalp" function for <gdb:value>. */
static SCM
vlscm_equal_p_value_smob (SCM v1, SCM v2)
{
const value_smob *v1_smob = (value_smob *) SCM_SMOB_DATA (v1);
const value_smob *v2_smob = (value_smob *) SCM_SMOB_DATA (v2);
int result = 0;
TRY
{
result = value_equal (v1_smob->value, v2_smob->value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
return scm_from_bool (result);
}
/* Low level routine to create a <gdb:value> object. */
static SCM
vlscm_make_value_smob (void)
{
value_smob *v_smob = (value_smob *)
scm_gc_malloc (sizeof (value_smob), value_smob_name);
SCM v_scm;
/* These must be filled in by the caller. */
v_smob->value = NULL;
v_smob->prev = NULL;
v_smob->next = NULL;
/* These are lazily computed. */
v_smob->address = SCM_UNDEFINED;
v_smob->type = SCM_UNDEFINED;
v_smob->dynamic_type = SCM_UNDEFINED;
v_scm = scm_new_smob (value_smob_tag, (scm_t_bits) v_smob);
gdbscm_init_gsmob (&v_smob->base);
return v_scm;
}
/* Return non-zero if SCM is a <gdb:value> object. */
int
vlscm_is_value (SCM scm)
{
return SCM_SMOB_PREDICATE (value_smob_tag, scm);
}
/* (value? object) -> boolean */
static SCM
gdbscm_value_p (SCM scm)
{
return scm_from_bool (vlscm_is_value (scm));
}
/* Create a new <gdb:value> object that encapsulates VALUE.
The value is released from the all_values chain so its lifetime is not
bound to the execution of a command. */
SCM
vlscm_scm_from_value (struct value *value)
{
/* N.B. It's important to not cause any side-effects until we know the
conversion worked. */
SCM v_scm = vlscm_make_value_smob ();
value_smob *v_smob = (value_smob *) SCM_SMOB_DATA (v_scm);
v_smob->value = value;
release_value_or_incref (value);
vlscm_remember_scheme_value (v_smob);
return v_scm;
}
/* Returns the <gdb:value> object in SELF.
Throws an exception if SELF is not a <gdb:value> object. */
static SCM
vlscm_get_value_arg_unsafe (SCM self, int arg_pos, const char *func_name)
{
SCM_ASSERT_TYPE (vlscm_is_value (self), self, arg_pos, func_name,
value_smob_name);
return self;
}
/* Returns a pointer to the value smob of SELF.
Throws an exception if SELF is not a <gdb:value> object. */
static value_smob *
vlscm_get_value_smob_arg_unsafe (SCM self, int arg_pos, const char *func_name)
{
SCM v_scm = vlscm_get_value_arg_unsafe (self, arg_pos, func_name);
value_smob *v_smob = (value_smob *) SCM_SMOB_DATA (v_scm);
return v_smob;
}
/* Return the value field of V_SCM, an object of type <gdb:value>.
This exists so that we don't have to export the struct's contents. */
struct value *
vlscm_scm_to_value (SCM v_scm)
{
value_smob *v_smob;
gdb_assert (vlscm_is_value (v_scm));
v_smob = (value_smob *) SCM_SMOB_DATA (v_scm);
return v_smob->value;
}
/* Value methods. */
/* (make-value x [#:type type]) -> <gdb:value> */
static SCM
gdbscm_make_value (SCM x, SCM rest)
{
struct gdbarch *gdbarch = get_current_arch ();
const struct language_defn *language = current_language;
const SCM keywords[] = { type_keyword, SCM_BOOL_F };
int type_arg_pos = -1;
SCM type_scm = SCM_UNDEFINED;
SCM except_scm, result;
type_smob *t_smob;
struct type *type = NULL;
struct value *value;
struct cleanup *cleanups;
gdbscm_parse_function_args (FUNC_NAME, SCM_ARG2, keywords, "#O", rest,
&type_arg_pos, &type_scm);
if (type_arg_pos > 0)
{
t_smob = tyscm_get_type_smob_arg_unsafe (type_scm, type_arg_pos,
FUNC_NAME);
type = tyscm_type_smob_type (t_smob);
}
cleanups = make_cleanup_value_free_to_mark (value_mark ());
value = vlscm_convert_typed_value_from_scheme (FUNC_NAME, SCM_ARG1, x,
type_arg_pos, type_scm, type,
&except_scm,
gdbarch, language);
if (value == NULL)
{
do_cleanups (cleanups);
gdbscm_throw (except_scm);
}
result = vlscm_scm_from_value (value);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (make-lazy-value <gdb:type> address) -> <gdb:value> */
static SCM
gdbscm_make_lazy_value (SCM type_scm, SCM address_scm)
{
type_smob *t_smob;
struct type *type;
ULONGEST address;
struct value *value = NULL;
SCM result;
struct cleanup *cleanups;
t_smob = tyscm_get_type_smob_arg_unsafe (type_scm, SCM_ARG1, FUNC_NAME);
type = tyscm_type_smob_type (t_smob);
gdbscm_parse_function_args (FUNC_NAME, SCM_ARG2, NULL, "U",
address_scm, &address);
cleanups = make_cleanup_value_free_to_mark (value_mark ());
/* There's no (current) need to wrap this in a TRY_CATCH, but for consistency
and future-proofing we do. */
TRY
{
value = value_from_contents_and_address (type, NULL, address);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
result = vlscm_scm_from_value (value);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value-optimized-out? <gdb:value>) -> boolean */
static SCM
gdbscm_value_optimized_out_p (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
int opt = 0;
TRY
{
opt = value_optimized_out (value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
return scm_from_bool (opt);
}
/* (value-address <gdb:value>) -> integer
Returns #f if the value doesn't have one. */
static SCM
gdbscm_value_address (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
if (SCM_UNBNDP (v_smob->address))
{
struct value *res_val = NULL;
struct cleanup *cleanup
= make_cleanup_value_free_to_mark (value_mark ());
SCM address;
TRY
{
res_val = value_addr (value);
}
CATCH (except, RETURN_MASK_ALL)
{
address = SCM_BOOL_F;
}
END_CATCH
if (res_val != NULL)
address = vlscm_scm_from_value (res_val);
do_cleanups (cleanup);
if (gdbscm_is_exception (address))
gdbscm_throw (address);
v_smob->address = address;
}
return v_smob->address;
}
/* (value-dereference <gdb:value>) -> <gdb:value>
Given a value of a pointer type, apply the C unary * operator to it. */
static SCM
gdbscm_value_dereference (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
SCM result;
struct value *res_val = NULL;
struct cleanup *cleanups;
cleanups = make_cleanup_value_free_to_mark (value_mark ());
TRY
{
res_val = value_ind (value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
result = vlscm_scm_from_value (res_val);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value-referenced-value <gdb:value>) -> <gdb:value>
Given a value of a reference type, return the value referenced.
The difference between this function and gdbscm_value_dereference is that
the latter applies * unary operator to a value, which need not always
result in the value referenced.
For example, for a value which is a reference to an 'int' pointer ('int *'),
gdbscm_value_dereference will result in a value of type 'int' while
gdbscm_value_referenced_value will result in a value of type 'int *'. */
static SCM
gdbscm_value_referenced_value (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
SCM result;
struct value *res_val = NULL;
struct cleanup *cleanups;
cleanups = make_cleanup_value_free_to_mark (value_mark ());
TRY
{
switch (TYPE_CODE (check_typedef (value_type (value))))
{
case TYPE_CODE_PTR:
res_val = value_ind (value);
break;
case TYPE_CODE_REF:
res_val = coerce_ref (value);
break;
default:
error (_("Trying to get the referenced value from a value which is"
" neither a pointer nor a reference"));
}
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
result = vlscm_scm_from_value (res_val);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value-type <gdb:value>) -> <gdb:type> */
static SCM
gdbscm_value_type (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
if (SCM_UNBNDP (v_smob->type))
v_smob->type = tyscm_scm_from_type (value_type (value));
return v_smob->type;
}
/* (value-dynamic-type <gdb:value>) -> <gdb:type> */
static SCM
gdbscm_value_dynamic_type (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
struct type *type = NULL;
if (! SCM_UNBNDP (v_smob->dynamic_type))
return v_smob->dynamic_type;
TRY
{
struct cleanup *cleanup
= make_cleanup_value_free_to_mark (value_mark ());
type = value_type (value);
type = check_typedef (type);
if (((TYPE_CODE (type) == TYPE_CODE_PTR)
|| (TYPE_CODE (type) == TYPE_CODE_REF))
&& (TYPE_CODE (TYPE_TARGET_TYPE (type)) == TYPE_CODE_STRUCT))
{
struct value *target;
int was_pointer = TYPE_CODE (type) == TYPE_CODE_PTR;
if (was_pointer)
target = value_ind (value);
else
target = coerce_ref (value);
type = value_rtti_type (target, NULL, NULL, NULL);
if (type)
{
if (was_pointer)
type = lookup_pointer_type (type);
else
type = lookup_reference_type (type);
}
}
else if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
type = value_rtti_type (value, NULL, NULL, NULL);
else
{
/* Re-use object's static type. */
type = NULL;
}
do_cleanups (cleanup);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
if (type == NULL)
v_smob->dynamic_type = gdbscm_value_type (self);
else
v_smob->dynamic_type = tyscm_scm_from_type (type);
return v_smob->dynamic_type;
}
/* A helper function that implements the various cast operators. */
static SCM
vlscm_do_cast (SCM self, SCM type_scm, enum exp_opcode op,
const char *func_name)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
type_smob *t_smob
= tyscm_get_type_smob_arg_unsafe (type_scm, SCM_ARG2, FUNC_NAME);
struct type *type = tyscm_type_smob_type (t_smob);
SCM result;
struct value *res_val = NULL;
struct cleanup *cleanups;
cleanups = make_cleanup_value_free_to_mark (value_mark ());
TRY
{
if (op == UNOP_DYNAMIC_CAST)
res_val = value_dynamic_cast (type, value);
else if (op == UNOP_REINTERPRET_CAST)
res_val = value_reinterpret_cast (type, value);
else
{
gdb_assert (op == UNOP_CAST);
res_val = value_cast (type, value);
}
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
gdb_assert (res_val != NULL);
result = vlscm_scm_from_value (res_val);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value-cast <gdb:value> <gdb:type>) -> <gdb:value> */
static SCM
gdbscm_value_cast (SCM self, SCM new_type)
{
return vlscm_do_cast (self, new_type, UNOP_CAST, FUNC_NAME);
}
/* (value-dynamic-cast <gdb:value> <gdb:type>) -> <gdb:value> */
static SCM
gdbscm_value_dynamic_cast (SCM self, SCM new_type)
{
return vlscm_do_cast (self, new_type, UNOP_DYNAMIC_CAST, FUNC_NAME);
}
/* (value-reinterpret-cast <gdb:value> <gdb:type>) -> <gdb:value> */
static SCM
gdbscm_value_reinterpret_cast (SCM self, SCM new_type)
{
return vlscm_do_cast (self, new_type, UNOP_REINTERPRET_CAST, FUNC_NAME);
}
/* (value-field <gdb:value> string) -> <gdb:value>
Given string name of an element inside structure, return its <gdb:value>
object. */
static SCM
gdbscm_value_field (SCM self, SCM field_scm)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
char *field = NULL;
struct value *res_val = NULL;
SCM result;
struct cleanup *cleanups;
SCM_ASSERT_TYPE (scm_is_string (field_scm), field_scm, SCM_ARG2, FUNC_NAME,
_("string"));
cleanups = make_cleanup_value_free_to_mark (value_mark ());
field = gdbscm_scm_to_c_string (field_scm);
make_cleanup (xfree, field);
TRY
{
struct value *tmp = value;
res_val = value_struct_elt (&tmp, NULL, field, NULL, NULL);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
gdb_assert (res_val != NULL);
result = vlscm_scm_from_value (res_val);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value-subscript <gdb:value> integer|<gdb:value>) -> <gdb:value>
Return the specified value in an array. */
static SCM
gdbscm_value_subscript (SCM self, SCM index_scm)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
struct value *index = NULL;
struct value *res_val = NULL;
struct type *type = value_type (value);
struct gdbarch *gdbarch;
SCM result, except_scm;
struct cleanup *cleanups;
/* The sequencing here, as everywhere else, is important.
We can't have existing cleanups when a Scheme exception is thrown. */
SCM_ASSERT (type != NULL, self, SCM_ARG2, FUNC_NAME);
gdbarch = get_type_arch (type);
cleanups = make_cleanup_value_free_to_mark (value_mark ());
index = vlscm_convert_value_from_scheme (FUNC_NAME, SCM_ARG2, index_scm,
&except_scm,
gdbarch, current_language);
if (index == NULL)
{
do_cleanups (cleanups);
gdbscm_throw (except_scm);
}
TRY
{
struct value *tmp = value;
/* Assume we are attempting an array access, and let the value code
throw an exception if the index has an invalid type.
Check the value's type is something that can be accessed via
a subscript. */
tmp = coerce_ref (tmp);
type = check_typedef (value_type (tmp));
if (TYPE_CODE (type) != TYPE_CODE_ARRAY
&& TYPE_CODE (type) != TYPE_CODE_PTR)
error (_("Cannot subscript requested type"));
res_val = value_subscript (tmp, value_as_long (index));
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
gdb_assert (res_val != NULL);
result = vlscm_scm_from_value (res_val);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value-call <gdb:value> arg-list) -> <gdb:value>
Perform an inferior function call on the value. */
static SCM
gdbscm_value_call (SCM self, SCM args)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *function = v_smob->value;
struct value *mark = value_mark ();
struct type *ftype = NULL;
long args_count;
struct value **vargs = NULL;
SCM result = SCM_BOOL_F;
TRY
{
ftype = check_typedef (value_type (function));
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
SCM_ASSERT_TYPE (TYPE_CODE (ftype) == TYPE_CODE_FUNC, self,
SCM_ARG1, FUNC_NAME,
_("function (value of TYPE_CODE_FUNC)"));
SCM_ASSERT_TYPE (gdbscm_is_true (scm_list_p (args)), args,
SCM_ARG2, FUNC_NAME, _("list"));
args_count = scm_ilength (args);
if (args_count > 0)
{
struct gdbarch *gdbarch = get_current_arch ();
const struct language_defn *language = current_language;
SCM except_scm;
long i;
vargs = XALLOCAVEC (struct value *, args_count);
for (i = 0; i < args_count; i++)
{
SCM arg = scm_car (args);
vargs[i] = vlscm_convert_value_from_scheme (FUNC_NAME,
GDBSCM_ARG_NONE, arg,
&except_scm,
gdbarch, language);
if (vargs[i] == NULL)
gdbscm_throw (except_scm);
args = scm_cdr (args);
}
gdb_assert (gdbscm_is_true (scm_null_p (args)));
}
TRY
{
struct cleanup *cleanup = make_cleanup_value_free_to_mark (mark);
struct value *return_value;
return_value = call_function_by_hand (function, args_count, vargs);
result = vlscm_scm_from_value (return_value);
do_cleanups (cleanup);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value->bytevector <gdb:value>) -> bytevector */
static SCM
gdbscm_value_to_bytevector (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
struct type *type;
size_t length = 0;
const gdb_byte *contents = NULL;
SCM bv;
type = value_type (value);
TRY
{
type = check_typedef (type);
length = TYPE_LENGTH (type);
contents = value_contents (value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
bv = scm_c_make_bytevector (length);
memcpy (SCM_BYTEVECTOR_CONTENTS (bv), contents, length);
return bv;
}
/* Helper function to determine if a type is "int-like". */
static int
is_intlike (struct type *type, int ptr_ok)
{
return (TYPE_CODE (type) == TYPE_CODE_INT
|| TYPE_CODE (type) == TYPE_CODE_ENUM
|| TYPE_CODE (type) == TYPE_CODE_BOOL
|| TYPE_CODE (type) == TYPE_CODE_CHAR
|| (ptr_ok && TYPE_CODE (type) == TYPE_CODE_PTR));
}
/* (value->bool <gdb:value>) -> boolean
Throws an error if the value is not integer-like. */
static SCM
gdbscm_value_to_bool (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
struct type *type;
LONGEST l = 0;
type = value_type (value);
TRY
{
type = check_typedef (type);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
SCM_ASSERT_TYPE (is_intlike (type, 1), self, SCM_ARG1, FUNC_NAME,
_("integer-like gdb value"));
TRY
{
if (TYPE_CODE (type) == TYPE_CODE_PTR)
l = value_as_address (value);
else
l = value_as_long (value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
return scm_from_bool (l != 0);
}
/* (value->integer <gdb:value>) -> integer
Throws an error if the value is not integer-like. */
static SCM
gdbscm_value_to_integer (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
struct type *type;
LONGEST l = 0;
type = value_type (value);
TRY
{
type = check_typedef (type);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
SCM_ASSERT_TYPE (is_intlike (type, 1), self, SCM_ARG1, FUNC_NAME,
_("integer-like gdb value"));
TRY
{
if (TYPE_CODE (type) == TYPE_CODE_PTR)
l = value_as_address (value);
else
l = value_as_long (value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
if (TYPE_UNSIGNED (type))
return gdbscm_scm_from_ulongest (l);
else
return gdbscm_scm_from_longest (l);
}
/* (value->real <gdb:value>) -> real
Throws an error if the value is not a number. */
static SCM
gdbscm_value_to_real (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
struct type *type;
DOUBLEST d = 0;
type = value_type (value);
TRY
{
type = check_typedef (type);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
SCM_ASSERT_TYPE (is_intlike (type, 0) || TYPE_CODE (type) == TYPE_CODE_FLT,
self, SCM_ARG1, FUNC_NAME, _("number"));
TRY
{
d = value_as_double (value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
/* TODO: Is there a better way to check if the value fits? */
if (d != (double) d)
gdbscm_out_of_range_error (FUNC_NAME, SCM_ARG1, self,
_("number can't be converted to a double"));
return scm_from_double (d);
}
/* (value->string <gdb:value>
[#:encoding encoding]
[#:errors #f | 'error | 'substitute]
[#:length length])
-> string
Return Unicode string with value's contents, which must be a string.
If ENCODING is not given, the string is assumed to be encoded in
the target's charset.
ERRORS is one of #f, 'error or 'substitute.
An error setting of #f means use the default, which is Guile's
%default-port-conversion-strategy when using Guile >= 2.0.6, or 'error if
using an earlier version of Guile. Earlier versions do not properly
support obtaining the default port conversion strategy.
If the default is not one of 'error or 'substitute, 'substitute is used.
An error setting of "error" causes an exception to be thrown if there's
a decoding error. An error setting of "substitute" causes invalid
characters to be replaced with "?".
If LENGTH is provided, only fetch string to the length provided.
LENGTH must be a Scheme integer, it can't be a <gdb:value> integer. */
static SCM
gdbscm_value_to_string (SCM self, SCM rest)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
const SCM keywords[] = {
encoding_keyword, errors_keyword, length_keyword, SCM_BOOL_F
};
int encoding_arg_pos = -1, errors_arg_pos = -1, length_arg_pos = -1;
char *encoding = NULL;
SCM errors = SCM_BOOL_F;
int length = -1;
gdb_byte *buffer = NULL;
const char *la_encoding = NULL;
struct type *char_type = NULL;
SCM result;
struct cleanup *cleanups;
/* The sequencing here, as everywhere else, is important.
We can't have existing cleanups when a Scheme exception is thrown. */
gdbscm_parse_function_args (FUNC_NAME, SCM_ARG2, keywords, "#sOi", rest,
&encoding_arg_pos, &encoding,
&errors_arg_pos, &errors,
&length_arg_pos, &length);
cleanups = make_cleanup (xfree, encoding);
if (errors_arg_pos > 0
&& errors != SCM_BOOL_F
&& !scm_is_eq (errors, error_symbol)
&& !scm_is_eq (errors, substitute_symbol))
{
SCM excp
= gdbscm_make_out_of_range_error (FUNC_NAME, errors_arg_pos, errors,
_("invalid error kind"));
do_cleanups (cleanups);
gdbscm_throw (excp);
}
if (errors == SCM_BOOL_F)
{
/* N.B. scm_port_conversion_strategy in Guile versions prior to 2.0.6
will throw a Scheme error when passed #f. */
if (gdbscm_guile_version_is_at_least (2, 0, 6))
errors = scm_port_conversion_strategy (SCM_BOOL_F);
else
errors = error_symbol;
}
/* We don't assume anything about the result of scm_port_conversion_strategy.
From this point on, if errors is not 'errors, use 'substitute. */
TRY
{
LA_GET_STRING (value, &buffer, &length, &char_type, &la_encoding);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
/* If errors is "error" scm_from_stringn may throw a Scheme exception.
Make sure we don't leak. This is done via scm_dynwind_begin, et.al. */
discard_cleanups (cleanups);
scm_dynwind_begin ((scm_t_dynwind_flags) 0);
gdbscm_dynwind_xfree (encoding);
gdbscm_dynwind_xfree (buffer);
result = scm_from_stringn ((const char *) buffer,
length * TYPE_LENGTH (char_type),
(encoding != NULL && *encoding != '\0'
? encoding
: la_encoding),
scm_is_eq (errors, error_symbol)
? SCM_FAILED_CONVERSION_ERROR
: SCM_FAILED_CONVERSION_QUESTION_MARK);
scm_dynwind_end ();
return result;
}
/* (value->lazy-string <gdb:value> [#:encoding encoding] [#:length length])
-> <gdb:lazy-string>
Return a Scheme object representing a lazy_string_object type.
A lazy string is a pointer to a string with an optional encoding and length.
If ENCODING is not given, the target's charset is used.
If LENGTH is provided then the length parameter is set to LENGTH, otherwise
length will be set to -1 (first null of appropriate with).
LENGTH must be a Scheme integer, it can't be a <gdb:value> integer. */
static SCM
gdbscm_value_to_lazy_string (SCM self, SCM rest)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
const SCM keywords[] = { encoding_keyword, length_keyword, SCM_BOOL_F };
int encoding_arg_pos = -1, length_arg_pos = -1;
char *encoding = NULL;
int length = -1;
SCM result = SCM_BOOL_F; /* -Wall */
struct cleanup *cleanups;
struct gdb_exception except = exception_none;
/* The sequencing here, as everywhere else, is important.
We can't have existing cleanups when a Scheme exception is thrown. */
gdbscm_parse_function_args (FUNC_NAME, SCM_ARG2, keywords, "#si", rest,
&encoding_arg_pos, &encoding,
&length_arg_pos, &length);
cleanups = make_cleanup (xfree, encoding);
TRY
{
struct cleanup *inner_cleanup
= make_cleanup_value_free_to_mark (value_mark ());
if (TYPE_CODE (value_type (value)) == TYPE_CODE_PTR)
value = value_ind (value);
result = lsscm_make_lazy_string (value_address (value), length,
encoding, value_type (value));
do_cleanups (inner_cleanup);
}
CATCH (ex, RETURN_MASK_ALL)
{
except = ex;
}
END_CATCH
do_cleanups (cleanups);
GDBSCM_HANDLE_GDB_EXCEPTION (except);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (value-lazy? <gdb:value>) -> boolean */
static SCM
gdbscm_value_lazy_p (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
return scm_from_bool (value_lazy (value));
}
/* (value-fetch-lazy! <gdb:value>) -> unspecified */
static SCM
gdbscm_value_fetch_lazy_x (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
TRY
{
if (value_lazy (value))
value_fetch_lazy (value);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
return SCM_UNSPECIFIED;
}
/* (value-print <gdb:value>) -> string */
static SCM
gdbscm_value_print (SCM self)
{
value_smob *v_smob
= vlscm_get_value_smob_arg_unsafe (self, SCM_ARG1, FUNC_NAME);
struct value *value = v_smob->value;
struct value_print_options opts;
char *s = NULL;
SCM result;
get_user_print_options (&opts);
opts.deref_ref = 0;
TRY
{
struct ui_file *stb = mem_fileopen ();
struct cleanup *old_chain = make_cleanup_ui_file_delete (stb);
common_val_print (value, stb, 0, &opts, current_language);
s = ui_file_xstrdup (stb, NULL);
do_cleanups (old_chain);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
/* Use SCM_FAILED_CONVERSION_QUESTION_MARK to ensure this doesn't
throw an error if the encoding fails.
IWBN to use scm_take_locale_string here, but we'd have to temporarily
override the default port conversion handler because contrary to
documentation it doesn't necessarily free the input string. */
result = scm_from_stringn (s, strlen (s), host_charset (),
SCM_FAILED_CONVERSION_QUESTION_MARK);
xfree (s);
return result;
}
/* (parse-and-eval string) -> <gdb:value>
Parse a string and evaluate the string as an expression. */
static SCM
gdbscm_parse_and_eval (SCM expr_scm)
{
char *expr_str;
struct value *res_val = NULL;
SCM result;
struct cleanup *cleanups;
/* The sequencing here, as everywhere else, is important.
We can't have existing cleanups when a Scheme exception is thrown. */
gdbscm_parse_function_args (FUNC_NAME, SCM_ARG1, NULL, "s",
expr_scm, &expr_str);
cleanups = make_cleanup_value_free_to_mark (value_mark ());
make_cleanup (xfree, expr_str);
TRY
{
res_val = parse_and_eval (expr_str);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION_WITH_CLEANUPS (except, cleanups);
}
END_CATCH
gdb_assert (res_val != NULL);
result = vlscm_scm_from_value (res_val);
do_cleanups (cleanups);
if (gdbscm_is_exception (result))
gdbscm_throw (result);
return result;
}
/* (history-ref integer) -> <gdb:value>
Return the specified value from GDB's value history. */
static SCM
gdbscm_history_ref (SCM index)
{
int i;
struct value *res_val = NULL; /* Initialize to appease gcc warning. */
gdbscm_parse_function_args (FUNC_NAME, SCM_ARG1, NULL, "i", index, &i);
TRY
{
res_val = access_value_history (i);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
return vlscm_scm_from_value (res_val);
}
/* (history-append! <gdb:value>) -> index
Append VALUE to GDB's value history. Return its index in the history. */
static SCM
gdbscm_history_append_x (SCM value)
{
int res_index = -1;
struct value *v;
value_smob *v_smob;
v_smob = vlscm_get_value_smob_arg_unsafe (value, SCM_ARG1, FUNC_NAME);
v = v_smob->value;
TRY
{
res_index = record_latest_value (v);
}
CATCH (except, RETURN_MASK_ALL)
{
GDBSCM_HANDLE_GDB_EXCEPTION (except);
}
END_CATCH
return scm_from_int (res_index);
}
/* Initialize the Scheme value code. */
static const scheme_function value_functions[] =
{
{ "value?", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_p),
"\
Return #t if the object is a <gdb:value> object." },
{ "make-value", 1, 0, 1, as_a_scm_t_subr (gdbscm_make_value),
"\
Create a <gdb:value> representing object.\n\
Typically this is used to convert numbers and strings to\n\
<gdb:value> objects.\n\
\n\
Arguments: object [#:type <gdb:type>]" },
{ "value-optimized-out?", 1, 0, 0,
as_a_scm_t_subr (gdbscm_value_optimized_out_p),
"\
Return #t if the value has been optimizd out." },
{ "value-address", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_address),
"\
Return the address of the value." },
{ "value-type", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_type),
"\
Return the type of the value." },
{ "value-dynamic-type", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_dynamic_type),
"\
Return the dynamic type of the value." },
{ "value-cast", 2, 0, 0, as_a_scm_t_subr (gdbscm_value_cast),
"\
Cast the value to the supplied type.\n\
\n\
Arguments: <gdb:value> <gdb:type>" },
{ "value-dynamic-cast", 2, 0, 0, as_a_scm_t_subr (gdbscm_value_dynamic_cast),
"\
Cast the value to the supplied type, as if by the C++\n\
dynamic_cast operator.\n\
\n\
Arguments: <gdb:value> <gdb:type>" },
{ "value-reinterpret-cast", 2, 0, 0,
as_a_scm_t_subr (gdbscm_value_reinterpret_cast),
"\
Cast the value to the supplied type, as if by the C++\n\
reinterpret_cast operator.\n\
\n\
Arguments: <gdb:value> <gdb:type>" },
{ "value-dereference", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_dereference),
"\
Return the result of applying the C unary * operator to the value." },
{ "value-referenced-value", 1, 0, 0,
as_a_scm_t_subr (gdbscm_value_referenced_value),
"\
Given a value of a reference type, return the value referenced.\n\
The difference between this function and value-dereference is that\n\
the latter applies * unary operator to a value, which need not always\n\
result in the value referenced.\n\
For example, for a value which is a reference to an 'int' pointer ('int *'),\n\
value-dereference will result in a value of type 'int' while\n\
value-referenced-value will result in a value of type 'int *'." },
{ "value-field", 2, 0, 0, as_a_scm_t_subr (gdbscm_value_field),
"\
Return the specified field of the value.\n\
\n\
Arguments: <gdb:value> string" },
{ "value-subscript", 2, 0, 0, as_a_scm_t_subr (gdbscm_value_subscript),
"\
Return the value of the array at the specified index.\n\
\n\
Arguments: <gdb:value> integer" },
{ "value-call", 2, 0, 0, as_a_scm_t_subr (gdbscm_value_call),
"\
Perform an inferior function call taking the value as a pointer to the\n\
function to call.\n\
Each element of the argument list must be a <gdb:value> object or an object\n\
that can be converted to one.\n\
The result is the value returned by the function.\n\
\n\
Arguments: <gdb:value> arg-list" },
{ "value->bool", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_to_bool),
"\
Return the Scheme boolean representing the GDB value.\n\
The value must be \"integer like\". Pointers are ok." },
{ "value->integer", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_to_integer),
"\
Return the Scheme integer representing the GDB value.\n\
The value must be \"integer like\". Pointers are ok." },
{ "value->real", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_to_real),
"\
Return the Scheme real number representing the GDB value.\n\
The value must be a number." },
{ "value->bytevector", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_to_bytevector),
"\
Return a Scheme bytevector with the raw contents of the GDB value.\n\
No transformation, endian or otherwise, is performed." },
{ "value->string", 1, 0, 1, as_a_scm_t_subr (gdbscm_value_to_string),
"\
Return the Unicode string of the value's contents.\n\
If ENCODING is not given, the string is assumed to be encoded in\n\
the target's charset.\n\
An error setting \"error\" causes an exception to be thrown if there's\n\
a decoding error. An error setting of \"substitute\" causes invalid\n\
characters to be replaced with \"?\". The default is \"error\".\n\
If LENGTH is provided, only fetch string to the length provided.\n\
\n\
Arguments: <gdb:value>\n\
[#:encoding encoding] [#:errors \"error\"|\"substitute\"]\n\
[#:length length]" },
{ "value->lazy-string", 1, 0, 1,
as_a_scm_t_subr (gdbscm_value_to_lazy_string),
"\
Return a Scheme object representing a lazily fetched Unicode string\n\
of the value's contents.\n\
If ENCODING is not given, the string is assumed to be encoded in\n\
the target's charset.\n\
If LENGTH is provided, only fetch string to the length provided.\n\
\n\
Arguments: <gdb:value> [#:encoding encoding] [#:length length]" },
{ "value-lazy?", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_lazy_p),
"\
Return #t if the value is lazy (not fetched yet from the inferior).\n\
A lazy value is fetched when needed, or when the value-fetch-lazy! function\n\
is called." },
{ "make-lazy-value", 2, 0, 0, as_a_scm_t_subr (gdbscm_make_lazy_value),
"\
Create a <gdb:value> that will be lazily fetched from the target.\n\
\n\
Arguments: <gdb:type> address" },
{ "value-fetch-lazy!", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_fetch_lazy_x),
"\
Fetch the value from the inferior, if it was lazy.\n\
The result is \"unspecified\"." },
{ "value-print", 1, 0, 0, as_a_scm_t_subr (gdbscm_value_print),
"\
Return the string representation (print form) of the value." },
{ "parse-and-eval", 1, 0, 0, as_a_scm_t_subr (gdbscm_parse_and_eval),
"\
Evaluates string in gdb and returns the result as a <gdb:value> object." },
{ "history-ref", 1, 0, 0, as_a_scm_t_subr (gdbscm_history_ref),
"\
Return the specified value from GDB's value history." },
{ "history-append!", 1, 0, 0, as_a_scm_t_subr (gdbscm_history_append_x),
"\
Append the specified value onto GDB's value history." },
END_FUNCTIONS
};
void
gdbscm_initialize_values (void)
{
value_smob_tag = gdbscm_make_smob_type (value_smob_name,
sizeof (value_smob));
scm_set_smob_free (value_smob_tag, vlscm_free_value_smob);
scm_set_smob_print (value_smob_tag, vlscm_print_value_smob);
scm_set_smob_equalp (value_smob_tag, vlscm_equal_p_value_smob);
gdbscm_define_functions (value_functions, 1);
type_keyword = scm_from_latin1_keyword ("type");
encoding_keyword = scm_from_latin1_keyword ("encoding");
errors_keyword = scm_from_latin1_keyword ("errors");
length_keyword = scm_from_latin1_keyword ("length");
error_symbol = scm_from_latin1_symbol ("error");
escape_symbol = scm_from_latin1_symbol ("escape");
substitute_symbol = scm_from_latin1_symbol ("substitute");
}
|