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
|
/* Convert a DWARF location expression to C
Copyright (C) 2014-2024 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/>. */
#include "dwarf2.h"
#include "objfiles.h"
#include "dwarf2/expr.h"
#include "dwarf2/loc.h"
#include "dwarf2/read.h"
#include "ui-file.h"
#include "utils.h"
#include "compile-internal.h"
#include "compile-c.h"
#include "compile.h"
#include "block.h"
#include "dwarf2/frame.h"
#include "value.h"
#include "gdbarch.h"
/* Information about a given instruction. */
struct insn_info
{
/* Stack depth at entry. */
unsigned int depth;
/* Whether this instruction has been visited. */
unsigned int visited : 1;
/* Whether this instruction needs a label. */
unsigned int label : 1;
/* Whether this instruction is DW_OP_GNU_push_tls_address or
DW_OP_form_tls_address. This is a hack until we can add a
feature to glibc to let us properly generate code for TLS. */
unsigned int is_tls : 1;
};
/* A helper function for compute_stack_depth that does the work. This
examines the DWARF expression starting from START and computes
stack effects.
NEED_TEMPVAR is an out parameter which is set if this expression
needs a special temporary variable to be emitted (see the code
generator).
INFO is a vector of insn_info objects, indexed by offset from the
start of the DWARF expression.
TO_DO is a list of bytecodes which must be examined; it may be
added to by this function.
BYTE_ORDER and ADDR_SIZE describe this bytecode in the obvious way.
OP_PTR and OP_END are the bounds of the DWARF expression. */
static void
compute_stack_depth_worker (int start, int *need_tempvar,
std::vector<struct insn_info> *info,
std::vector<int> *to_do,
enum bfd_endian byte_order, unsigned int addr_size,
const gdb_byte *op_ptr, const gdb_byte *op_end)
{
const gdb_byte * const base = op_ptr;
int stack_depth;
op_ptr += start;
gdb_assert ((*info)[start].visited);
stack_depth = (*info)[start].depth;
while (op_ptr < op_end)
{
enum dwarf_location_atom op = (enum dwarf_location_atom) *op_ptr;
uint64_t reg;
int64_t offset;
int ndx = op_ptr - base;
#define SET_CHECK_DEPTH(WHERE) \
if ((*info)[WHERE].visited) \
{ \
if ((*info)[WHERE].depth != stack_depth) \
error (_("inconsistent stack depths")); \
} \
else \
{ \
/* Stack depth not set, so set it. */ \
(*info)[WHERE].visited = 1; \
(*info)[WHERE].depth = stack_depth; \
}
SET_CHECK_DEPTH (ndx);
++op_ptr;
switch (op)
{
case DW_OP_lit0:
case DW_OP_lit1:
case DW_OP_lit2:
case DW_OP_lit3:
case DW_OP_lit4:
case DW_OP_lit5:
case DW_OP_lit6:
case DW_OP_lit7:
case DW_OP_lit8:
case DW_OP_lit9:
case DW_OP_lit10:
case DW_OP_lit11:
case DW_OP_lit12:
case DW_OP_lit13:
case DW_OP_lit14:
case DW_OP_lit15:
case DW_OP_lit16:
case DW_OP_lit17:
case DW_OP_lit18:
case DW_OP_lit19:
case DW_OP_lit20:
case DW_OP_lit21:
case DW_OP_lit22:
case DW_OP_lit23:
case DW_OP_lit24:
case DW_OP_lit25:
case DW_OP_lit26:
case DW_OP_lit27:
case DW_OP_lit28:
case DW_OP_lit29:
case DW_OP_lit30:
case DW_OP_lit31:
++stack_depth;
break;
case DW_OP_addr:
op_ptr += addr_size;
++stack_depth;
break;
case DW_OP_const1u:
case DW_OP_const1s:
op_ptr += 1;
++stack_depth;
break;
case DW_OP_const2u:
case DW_OP_const2s:
op_ptr += 2;
++stack_depth;
break;
case DW_OP_const4u:
case DW_OP_const4s:
op_ptr += 4;
++stack_depth;
break;
case DW_OP_const8u:
case DW_OP_const8s:
op_ptr += 8;
++stack_depth;
break;
case DW_OP_constu:
case DW_OP_consts:
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
++stack_depth;
break;
case DW_OP_reg0:
case DW_OP_reg1:
case DW_OP_reg2:
case DW_OP_reg3:
case DW_OP_reg4:
case DW_OP_reg5:
case DW_OP_reg6:
case DW_OP_reg7:
case DW_OP_reg8:
case DW_OP_reg9:
case DW_OP_reg10:
case DW_OP_reg11:
case DW_OP_reg12:
case DW_OP_reg13:
case DW_OP_reg14:
case DW_OP_reg15:
case DW_OP_reg16:
case DW_OP_reg17:
case DW_OP_reg18:
case DW_OP_reg19:
case DW_OP_reg20:
case DW_OP_reg21:
case DW_OP_reg22:
case DW_OP_reg23:
case DW_OP_reg24:
case DW_OP_reg25:
case DW_OP_reg26:
case DW_OP_reg27:
case DW_OP_reg28:
case DW_OP_reg29:
case DW_OP_reg30:
case DW_OP_reg31:
++stack_depth;
break;
case DW_OP_regx:
op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
++stack_depth;
break;
case DW_OP_breg0:
case DW_OP_breg1:
case DW_OP_breg2:
case DW_OP_breg3:
case DW_OP_breg4:
case DW_OP_breg5:
case DW_OP_breg6:
case DW_OP_breg7:
case DW_OP_breg8:
case DW_OP_breg9:
case DW_OP_breg10:
case DW_OP_breg11:
case DW_OP_breg12:
case DW_OP_breg13:
case DW_OP_breg14:
case DW_OP_breg15:
case DW_OP_breg16:
case DW_OP_breg17:
case DW_OP_breg18:
case DW_OP_breg19:
case DW_OP_breg20:
case DW_OP_breg21:
case DW_OP_breg22:
case DW_OP_breg23:
case DW_OP_breg24:
case DW_OP_breg25:
case DW_OP_breg26:
case DW_OP_breg27:
case DW_OP_breg28:
case DW_OP_breg29:
case DW_OP_breg30:
case DW_OP_breg31:
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
++stack_depth;
break;
case DW_OP_bregx:
{
op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
++stack_depth;
}
break;
case DW_OP_fbreg:
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
++stack_depth;
break;
case DW_OP_dup:
++stack_depth;
break;
case DW_OP_drop:
--stack_depth;
break;
case DW_OP_pick:
++op_ptr;
++stack_depth;
break;
case DW_OP_rot:
case DW_OP_swap:
*need_tempvar = 1;
break;
case DW_OP_over:
++stack_depth;
break;
case DW_OP_abs:
case DW_OP_neg:
case DW_OP_not:
case DW_OP_deref:
break;
case DW_OP_deref_size:
++op_ptr;
break;
case DW_OP_plus_uconst:
op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
break;
case DW_OP_div:
case DW_OP_shra:
case DW_OP_and:
case DW_OP_minus:
case DW_OP_mod:
case DW_OP_mul:
case DW_OP_or:
case DW_OP_plus:
case DW_OP_shl:
case DW_OP_shr:
case DW_OP_xor:
case DW_OP_le:
case DW_OP_ge:
case DW_OP_eq:
case DW_OP_lt:
case DW_OP_gt:
case DW_OP_ne:
--stack_depth;
break;
case DW_OP_call_frame_cfa:
++stack_depth;
break;
case DW_OP_GNU_push_tls_address:
case DW_OP_form_tls_address:
(*info)[ndx].is_tls = 1;
break;
case DW_OP_skip:
offset = extract_signed_integer (op_ptr, 2, byte_order);
op_ptr += 2;
offset = op_ptr + offset - base;
/* If the destination has not been seen yet, add it to the
to-do list. */
if (!(*info)[offset].visited)
to_do->push_back (offset);
SET_CHECK_DEPTH (offset);
(*info)[offset].label = 1;
/* We're done with this line of code. */
return;
case DW_OP_bra:
offset = extract_signed_integer (op_ptr, 2, byte_order);
op_ptr += 2;
offset = op_ptr + offset - base;
--stack_depth;
/* If the destination has not been seen yet, add it to the
to-do list. */
if (!(*info)[offset].visited)
to_do->push_back (offset);
SET_CHECK_DEPTH (offset);
(*info)[offset].label = 1;
break;
case DW_OP_nop:
break;
default:
error (_("unhandled DWARF op: %s"), get_DW_OP_name (op));
}
}
gdb_assert (op_ptr == op_end);
#undef SET_CHECK_DEPTH
}
/* Compute the maximum needed stack depth of a DWARF expression, and
some other information as well.
BYTE_ORDER and ADDR_SIZE describe this bytecode in the obvious way.
NEED_TEMPVAR is an out parameter which is set if this expression
needs a special temporary variable to be emitted (see the code
generator).
IS_TLS is an out parameter which is set if this expression refers
to a TLS variable.
OP_PTR and OP_END are the bounds of the DWARF expression.
INITIAL_DEPTH is the initial depth of the DWARF expression stack.
INFO is an array of insn_info objects, indexed by offset from the
start of the DWARF expression.
This returns the maximum stack depth. */
static int
compute_stack_depth (enum bfd_endian byte_order, unsigned int addr_size,
int *need_tempvar, int *is_tls,
const gdb_byte *op_ptr, const gdb_byte *op_end,
int initial_depth,
std::vector<struct insn_info> *info)
{
std::vector<int> to_do;
int stack_depth, i;
info->resize (op_end - op_ptr);
to_do.push_back (0);
(*info)[0].depth = initial_depth;
(*info)[0].visited = 1;
while (!to_do.empty ())
{
int ndx = to_do.back ();
to_do.pop_back ();
compute_stack_depth_worker (ndx, need_tempvar, info, &to_do,
byte_order, addr_size,
op_ptr, op_end);
}
stack_depth = 0;
*is_tls = 0;
for (i = 0; i < op_end - op_ptr; ++i)
{
if ((*info)[i].depth > stack_depth)
stack_depth = (*info)[i].depth;
if ((*info)[i].is_tls)
*is_tls = 1;
}
return stack_depth + 1;
}
#define GCC_UINTPTR "__gdb_uintptr"
#define GCC_INTPTR "__gdb_intptr"
/* Emit code to push a constant. */
static void
push (int indent, string_file *stream, ULONGEST l)
{
gdb_printf (stream,
"%*s__gdb_stack[++__gdb_tos] = (" GCC_UINTPTR ") %s;\n",
indent, "", hex_string (l));
}
/* Emit code to push an arbitrary expression. This works like
printf. */
static void pushf (int indent, string_file *stream, const char *format, ...)
ATTRIBUTE_PRINTF (3, 4);
static void
pushf (int indent, string_file *stream, const char *format, ...)
{
va_list args;
gdb_printf (stream, "%*s__gdb_stack[__gdb_tos + 1] = ", indent, "");
va_start (args, format);
stream->vprintf (format, args);
va_end (args);
stream->puts (";\n");
gdb_printf (stream, "%*s++__gdb_tos;\n", indent, "");
}
/* Emit code for a unary expression -- one which operates in-place on
the top-of-stack. This works like printf. */
static void unary (int indent, string_file *stream, const char *format, ...)
ATTRIBUTE_PRINTF (3, 4);
static void
unary (int indent, string_file *stream, const char *format, ...)
{
va_list args;
gdb_printf (stream, "%*s__gdb_stack[__gdb_tos] = ", indent, "");
va_start (args, format);
stream->vprintf (format, args);
va_end (args);
stream->puts (";\n");
}
/* Emit code for a unary expression -- one which uses the top two
stack items, popping the topmost one. This works like printf. */
static void binary (int indent, string_file *stream, const char *format, ...)
ATTRIBUTE_PRINTF (3, 4);
static void
binary (int indent, string_file *stream, const char *format, ...)
{
va_list args;
gdb_printf (stream, "%*s__gdb_stack[__gdb_tos - 1] = ", indent, "");
va_start (args, format);
stream->vprintf (format, args);
va_end (args);
stream->puts (";\n");
gdb_printf (stream, "%*s--__gdb_tos;\n", indent, "");
}
/* Print the name of a label given its "SCOPE", an arbitrary integer
used for uniqueness, and its TARGET, the bytecode offset
corresponding to the label's point of definition. */
static void
print_label (string_file *stream, unsigned int scope, int target)
{
stream->printf ("__label_%u_%s", scope, pulongest (target));
}
/* Note that a register was used. */
static void
note_register (int regnum, std::vector<bool> ®isters_used)
{
gdb_assert (regnum >= 0);
/* If the expression uses a cooked register, then we currently can't
compile it. We would need a gdbarch method to handle this
situation. */
if (regnum >= registers_used.size ())
error (_("Expression uses \"cooked\" register and cannot be compiled."));
registers_used[regnum] = true;
}
/* Emit code that pushes a register's address on the stack.
REGISTERS_USED is an out parameter which is updated to note which
register was needed by this expression. */
static void
pushf_register_address (int indent, string_file *stream,
std::vector<bool> ®isters_used,
struct gdbarch *gdbarch, int regnum)
{
std::string regname = compile_register_name_mangled (gdbarch, regnum);
note_register (regnum, registers_used);
pushf (indent, stream,
"(" GCC_UINTPTR ") &" COMPILE_I_SIMPLE_REGISTER_ARG_NAME "->%s",
regname.c_str ());
}
/* Emit code that pushes a register's value on the stack.
REGISTERS_USED is an out parameter which is updated to note which
register was needed by this expression. OFFSET is added to the
register's value before it is pushed. */
static void
pushf_register (int indent, string_file *stream,
std::vector<bool> ®isters_used,
struct gdbarch *gdbarch, int regnum, uint64_t offset)
{
std::string regname = compile_register_name_mangled (gdbarch, regnum);
note_register (regnum, registers_used);
if (offset == 0)
pushf (indent, stream, COMPILE_I_SIMPLE_REGISTER_ARG_NAME "->%s",
regname.c_str ());
else
pushf (indent, stream,
COMPILE_I_SIMPLE_REGISTER_ARG_NAME "->%s + (" GCC_UINTPTR ") %s",
regname.c_str (), hex_string (offset));
}
/* Compile a DWARF expression to C code.
INDENT is the indentation level to use.
STREAM is the stream where the code should be written.
TYPE_NAME names the type of the result of the DWARF expression.
For locations this is "void *" but for array bounds it will be an
integer type.
RESULT_NAME is the name of a variable in the resulting C code. The
result of the expression will be assigned to this variable.
SYM is the symbol corresponding to this expression.
PC is the location at which the expression is being evaluated.
ARCH is the architecture to use.
REGISTERS_USED is an out parameter which is updated to note which
registers were needed by this expression.
ADDR_SIZE is the DWARF address size to use.
OPT_PTR and OP_END are the bounds of the DWARF expression.
If non-NULL, INITIAL points to an initial value to write to the
stack. If NULL, no initial value is written.
PER_CU is the per-CU object used for looking up various other
things. */
static void
do_compile_dwarf_expr_to_c (int indent, string_file *stream,
const char *type_name,
const char *result_name,
struct symbol *sym, CORE_ADDR pc,
struct gdbarch *arch,
std::vector<bool> ®isters_used,
unsigned int addr_size,
const gdb_byte *op_ptr, const gdb_byte *op_end,
CORE_ADDR *initial,
dwarf2_per_cu_data *per_cu,
dwarf2_per_objfile *per_objfile)
{
/* We keep a counter so that labels and other objects we create have
unique names. */
static unsigned int scope;
enum bfd_endian byte_order = gdbarch_byte_order (arch);
const gdb_byte * const base = op_ptr;
int need_tempvar = 0;
int is_tls = 0;
std::vector<struct insn_info> info;
int stack_depth;
++scope;
gdb_printf (stream, "%*s__attribute__ ((unused)) %s %s;\n",
indent, "", type_name, result_name);
gdb_printf (stream, "%*s{\n", indent, "");
indent += 2;
stack_depth = compute_stack_depth (byte_order, addr_size,
&need_tempvar, &is_tls,
op_ptr, op_end, initial != NULL,
&info);
/* This is a hack until we can add a feature to glibc to let us
properly generate code for TLS. You might think we could emit
the address in the ordinary course of translating
DW_OP_GNU_push_tls_address, but since the operand appears on the
stack, it is relatively hard to find, and the idea of calling
target_translate_tls_address with OFFSET==0 and then adding the
offset by hand seemed too hackish. */
if (is_tls)
{
frame_info_ptr frame = get_selected_frame (NULL);
struct value *val;
if (frame == NULL)
error (_("Symbol \"%s\" cannot be used because "
"there is no selected frame"),
sym->print_name ());
val = read_var_value (sym, NULL, frame);
if (val->lval () != lval_memory)
error (_("Symbol \"%s\" cannot be used for compilation evaluation "
"as its address has not been found."),
sym->print_name ());
warning (_("Symbol \"%s\" is thread-local and currently can only "
"be referenced from the current thread in "
"compiled code."),
sym->print_name ());
gdb_printf (stream, "%*s%s = %s;\n",
indent, "", result_name,
core_addr_to_string (val->address ()));
gdb_printf (stream, "%*s}\n", indent - 2, "");
return;
}
gdb_printf (stream, "%*s" GCC_UINTPTR " __gdb_stack[%d];\n",
indent, "", stack_depth);
if (need_tempvar)
gdb_printf (stream, "%*s" GCC_UINTPTR " __gdb_tmp;\n", indent, "");
gdb_printf (stream, "%*sint __gdb_tos = -1;\n", indent, "");
if (initial != NULL)
pushf (indent, stream, "%s", core_addr_to_string (*initial));
while (op_ptr < op_end)
{
enum dwarf_location_atom op = (enum dwarf_location_atom) *op_ptr;
uint64_t uoffset, reg;
int64_t offset;
stream->printf ("%*s", indent - 2, "");
if (info[op_ptr - base].label)
{
print_label (stream, scope, op_ptr - base);
stream->puts (":;");
}
stream->printf ("/* %s */\n", get_DW_OP_name (op));
/* This is handy for debugging the generated code:
gdb_printf (stream, "if (__gdb_tos != %d) abort ();\n",
(int) info[op_ptr - base].depth - 1);
*/
++op_ptr;
switch (op)
{
case DW_OP_lit0:
case DW_OP_lit1:
case DW_OP_lit2:
case DW_OP_lit3:
case DW_OP_lit4:
case DW_OP_lit5:
case DW_OP_lit6:
case DW_OP_lit7:
case DW_OP_lit8:
case DW_OP_lit9:
case DW_OP_lit10:
case DW_OP_lit11:
case DW_OP_lit12:
case DW_OP_lit13:
case DW_OP_lit14:
case DW_OP_lit15:
case DW_OP_lit16:
case DW_OP_lit17:
case DW_OP_lit18:
case DW_OP_lit19:
case DW_OP_lit20:
case DW_OP_lit21:
case DW_OP_lit22:
case DW_OP_lit23:
case DW_OP_lit24:
case DW_OP_lit25:
case DW_OP_lit26:
case DW_OP_lit27:
case DW_OP_lit28:
case DW_OP_lit29:
case DW_OP_lit30:
case DW_OP_lit31:
push (indent, stream, op - DW_OP_lit0);
break;
case DW_OP_addr:
uoffset = extract_unsigned_integer (op_ptr, addr_size, byte_order);
op_ptr += addr_size;
/* Some versions of GCC emit DW_OP_addr before
DW_OP_GNU_push_tls_address. In this case the value is an
index, not an address. We don't support things like
branching between the address and the TLS op. */
if (op_ptr >= op_end || *op_ptr != DW_OP_GNU_push_tls_address)
uoffset += per_objfile->objfile->text_section_offset ();
push (indent, stream, uoffset);
break;
case DW_OP_const1u:
push (indent, stream,
extract_unsigned_integer (op_ptr, 1, byte_order));
op_ptr += 1;
break;
case DW_OP_const1s:
push (indent, stream,
extract_signed_integer (op_ptr, 1, byte_order));
op_ptr += 1;
break;
case DW_OP_const2u:
push (indent, stream,
extract_unsigned_integer (op_ptr, 2, byte_order));
op_ptr += 2;
break;
case DW_OP_const2s:
push (indent, stream,
extract_signed_integer (op_ptr, 2, byte_order));
op_ptr += 2;
break;
case DW_OP_const4u:
push (indent, stream,
extract_unsigned_integer (op_ptr, 4, byte_order));
op_ptr += 4;
break;
case DW_OP_const4s:
push (indent, stream,
extract_signed_integer (op_ptr, 4, byte_order));
op_ptr += 4;
break;
case DW_OP_const8u:
push (indent, stream,
extract_unsigned_integer (op_ptr, 8, byte_order));
op_ptr += 8;
break;
case DW_OP_const8s:
push (indent, stream,
extract_signed_integer (op_ptr, 8, byte_order));
op_ptr += 8;
break;
case DW_OP_constu:
op_ptr = safe_read_uleb128 (op_ptr, op_end, &uoffset);
push (indent, stream, uoffset);
break;
case DW_OP_consts:
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
push (indent, stream, offset);
break;
case DW_OP_reg0:
case DW_OP_reg1:
case DW_OP_reg2:
case DW_OP_reg3:
case DW_OP_reg4:
case DW_OP_reg5:
case DW_OP_reg6:
case DW_OP_reg7:
case DW_OP_reg8:
case DW_OP_reg9:
case DW_OP_reg10:
case DW_OP_reg11:
case DW_OP_reg12:
case DW_OP_reg13:
case DW_OP_reg14:
case DW_OP_reg15:
case DW_OP_reg16:
case DW_OP_reg17:
case DW_OP_reg18:
case DW_OP_reg19:
case DW_OP_reg20:
case DW_OP_reg21:
case DW_OP_reg22:
case DW_OP_reg23:
case DW_OP_reg24:
case DW_OP_reg25:
case DW_OP_reg26:
case DW_OP_reg27:
case DW_OP_reg28:
case DW_OP_reg29:
case DW_OP_reg30:
case DW_OP_reg31:
dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_regx");
pushf_register_address (indent, stream, registers_used, arch,
dwarf_reg_to_regnum_or_error
(arch, op - DW_OP_reg0));
break;
case DW_OP_regx:
op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
dwarf_expr_require_composition (op_ptr, op_end, "DW_OP_regx");
pushf_register_address (indent, stream, registers_used, arch,
dwarf_reg_to_regnum_or_error (arch, reg));
break;
case DW_OP_breg0:
case DW_OP_breg1:
case DW_OP_breg2:
case DW_OP_breg3:
case DW_OP_breg4:
case DW_OP_breg5:
case DW_OP_breg6:
case DW_OP_breg7:
case DW_OP_breg8:
case DW_OP_breg9:
case DW_OP_breg10:
case DW_OP_breg11:
case DW_OP_breg12:
case DW_OP_breg13:
case DW_OP_breg14:
case DW_OP_breg15:
case DW_OP_breg16:
case DW_OP_breg17:
case DW_OP_breg18:
case DW_OP_breg19:
case DW_OP_breg20:
case DW_OP_breg21:
case DW_OP_breg22:
case DW_OP_breg23:
case DW_OP_breg24:
case DW_OP_breg25:
case DW_OP_breg26:
case DW_OP_breg27:
case DW_OP_breg28:
case DW_OP_breg29:
case DW_OP_breg30:
case DW_OP_breg31:
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
pushf_register (indent, stream, registers_used, arch,
dwarf_reg_to_regnum_or_error (arch,
op - DW_OP_breg0),
offset);
break;
case DW_OP_bregx:
{
op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
pushf_register (indent, stream, registers_used, arch,
dwarf_reg_to_regnum_or_error (arch, reg), offset);
}
break;
case DW_OP_fbreg:
{
const gdb_byte *datastart;
size_t datalen;
const struct block *b;
struct symbol *framefunc;
char fb_name[50];
b = block_for_pc (pc);
if (!b)
error (_("No block found for address"));
framefunc = b->linkage_function ();
if (!framefunc)
error (_("No function found for block"));
func_get_frame_base_dwarf_block (framefunc, pc,
&datastart, &datalen);
op_ptr = safe_read_sleb128 (op_ptr, op_end, &offset);
/* Generate a unique-enough name, in case the frame base
is computed multiple times in this expression. */
xsnprintf (fb_name, sizeof (fb_name), "__frame_base_%ld",
(long) (op_ptr - base));
do_compile_dwarf_expr_to_c (indent, stream,
GCC_UINTPTR, fb_name,
sym, pc,
arch, registers_used, addr_size,
datastart, datastart + datalen,
NULL, per_cu, per_objfile);
pushf (indent, stream, "%s + %s", fb_name, hex_string (offset));
}
break;
case DW_OP_dup:
pushf (indent, stream, "__gdb_stack[__gdb_tos]");
break;
case DW_OP_drop:
gdb_printf (stream, "%*s--__gdb_tos;\n", indent, "");
break;
case DW_OP_pick:
offset = *op_ptr++;
pushf (indent, stream, "__gdb_stack[__gdb_tos - %s]",
plongest (offset));
break;
case DW_OP_swap:
gdb_printf (stream,
"%*s__gdb_tmp = __gdb_stack[__gdb_tos - 1];\n",
indent, "");
gdb_printf (stream,
"%*s__gdb_stack[__gdb_tos - 1] = "
"__gdb_stack[__gdb_tos];\n",
indent, "");
gdb_printf (stream, ("%*s__gdb_stack[__gdb_tos] = "
"__gdb_tmp;\n"),
indent, "");
break;
case DW_OP_over:
pushf (indent, stream, "__gdb_stack[__gdb_tos - 1]");
break;
case DW_OP_rot:
gdb_printf (stream, ("%*s__gdb_tmp = "
"__gdb_stack[__gdb_tos];\n"),
indent, "");
gdb_printf (stream,
"%*s__gdb_stack[__gdb_tos] = "
"__gdb_stack[__gdb_tos - 1];\n",
indent, "");
gdb_printf (stream,
"%*s__gdb_stack[__gdb_tos - 1] = "
"__gdb_stack[__gdb_tos -2];\n",
indent, "");
gdb_printf (stream, "%*s__gdb_stack[__gdb_tos - 2] = "
"__gdb_tmp;\n",
indent, "");
break;
case DW_OP_deref:
case DW_OP_deref_size:
{
int size;
const char *mode;
if (op == DW_OP_deref_size)
size = *op_ptr++;
else
size = addr_size;
mode = c_get_mode_for_size (size);
if (mode == NULL)
error (_("Unsupported size %d in %s"),
size, get_DW_OP_name (op));
/* Cast to a pointer of the desired type, then
dereference. */
gdb_printf (stream,
"%*s__gdb_stack[__gdb_tos] = "
"*((__gdb_int_%s *) "
"__gdb_stack[__gdb_tos]);\n",
indent, "", mode);
}
break;
case DW_OP_abs:
unary (indent, stream,
"((" GCC_INTPTR ") __gdb_stack[__gdb_tos]) < 0 ? "
"-__gdb_stack[__gdb_tos] : __gdb_stack[__gdb_tos]");
break;
case DW_OP_neg:
unary (indent, stream, "-__gdb_stack[__gdb_tos]");
break;
case DW_OP_not:
unary (indent, stream, "~__gdb_stack[__gdb_tos]");
break;
case DW_OP_plus_uconst:
op_ptr = safe_read_uleb128 (op_ptr, op_end, ®);
unary (indent, stream, "__gdb_stack[__gdb_tos] + %s",
hex_string (reg));
break;
case DW_OP_div:
binary (indent, stream, ("((" GCC_INTPTR
") __gdb_stack[__gdb_tos-1]) / (("
GCC_INTPTR ") __gdb_stack[__gdb_tos])"));
break;
case DW_OP_shra:
binary (indent, stream,
"((" GCC_INTPTR ") __gdb_stack[__gdb_tos-1]) >> "
"__gdb_stack[__gdb_tos]");
break;
#define BINARY(OP) \
binary (indent, stream, "%s", "__gdb_stack[__gdb_tos-1] " #OP \
" __gdb_stack[__gdb_tos]"); \
break
case DW_OP_and:
BINARY (&);
case DW_OP_minus:
BINARY (-);
case DW_OP_mod:
BINARY (%);
case DW_OP_mul:
BINARY (*);
case DW_OP_or:
BINARY (|);
case DW_OP_plus:
BINARY (+);
case DW_OP_shl:
BINARY (<<);
case DW_OP_shr:
BINARY (>>);
case DW_OP_xor:
BINARY (^);
#undef BINARY
#define COMPARE(OP) \
binary (indent, stream, \
"(((" GCC_INTPTR ") __gdb_stack[__gdb_tos-1]) " #OP \
" ((" GCC_INTPTR \
") __gdb_stack[__gdb_tos]))"); \
break
case DW_OP_le:
COMPARE (<=);
case DW_OP_ge:
COMPARE (>=);
case DW_OP_eq:
COMPARE (==);
case DW_OP_lt:
COMPARE (<);
case DW_OP_gt:
COMPARE (>);
case DW_OP_ne:
COMPARE (!=);
#undef COMPARE
case DW_OP_call_frame_cfa:
{
int regnum;
CORE_ADDR text_offset;
LONGEST off;
const gdb_byte *cfa_start, *cfa_end;
if (dwarf2_fetch_cfa_info (arch, pc, per_cu,
®num, &off,
&text_offset, &cfa_start, &cfa_end))
{
/* Register. */
pushf_register (indent, stream, registers_used, arch, regnum,
off);
}
else
{
/* Another expression. */
char cfa_name[50];
/* Generate a unique-enough name, in case the CFA is
computed multiple times in this expression. */
xsnprintf (cfa_name, sizeof (cfa_name),
"__cfa_%ld", (long) (op_ptr - base));
do_compile_dwarf_expr_to_c (indent, stream,
GCC_UINTPTR, cfa_name,
sym, pc, arch, registers_used,
addr_size,
cfa_start, cfa_end,
&text_offset, per_cu, per_objfile);
pushf (indent, stream, "%s", cfa_name);
}
}
break;
case DW_OP_skip:
offset = extract_signed_integer (op_ptr, 2, byte_order);
op_ptr += 2;
gdb_printf (stream, "%*sgoto ", indent, "");
print_label (stream, scope, op_ptr + offset - base);
stream->puts (";\n");
break;
case DW_OP_bra:
offset = extract_signed_integer (op_ptr, 2, byte_order);
op_ptr += 2;
gdb_printf (stream,
"%*sif ((( " GCC_INTPTR
") __gdb_stack[__gdb_tos--]) != 0) goto ",
indent, "");
print_label (stream, scope, op_ptr + offset - base);
stream->puts (";\n");
break;
case DW_OP_nop:
break;
default:
error (_("unhandled DWARF op: %s"), get_DW_OP_name (op));
}
}
gdb_printf (stream, "%*s%s = __gdb_stack[__gdb_tos];\n",
indent, "", result_name);
gdb_printf (stream, "%*s}\n", indent - 2, "");
}
/* See compile.h. */
void
compile_dwarf_expr_to_c (string_file *stream, const char *result_name,
struct symbol *sym, CORE_ADDR pc,
struct gdbarch *arch,
std::vector<bool> ®isters_used,
unsigned int addr_size,
const gdb_byte *op_ptr, const gdb_byte *op_end,
dwarf2_per_cu_data *per_cu,
dwarf2_per_objfile *per_objfile)
{
do_compile_dwarf_expr_to_c (2, stream, GCC_UINTPTR, result_name, sym, pc,
arch, registers_used, addr_size, op_ptr, op_end,
NULL, per_cu, per_objfile);
}
/* See compile.h. */
void
compile_dwarf_bounds_to_c (string_file *stream,
const char *result_name,
const struct dynamic_prop *prop,
struct symbol *sym, CORE_ADDR pc,
struct gdbarch *arch,
std::vector<bool> ®isters_used,
unsigned int addr_size,
const gdb_byte *op_ptr, const gdb_byte *op_end,
dwarf2_per_cu_data *per_cu,
dwarf2_per_objfile *per_objfile)
{
do_compile_dwarf_expr_to_c (2, stream, "unsigned long ", result_name,
sym, pc, arch, registers_used,
addr_size, op_ptr, op_end, NULL, per_cu,
per_objfile);
}
|