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
|
#include "llvm/DebugInfo/DWARF/DWARFTypePrinter.h"
#include "llvm/DebugInfo/DWARF/DWARFDie.h"
#include "llvm/DebugInfo/DWARF/DWARFUnit.h"
#include "llvm/Support/ScopedPrinter.h"
namespace llvm {
using namespace dwarf;
void DWARFTypePrinter::appendTypeTagName(dwarf::Tag T) {
StringRef TagStr = TagString(T);
static constexpr StringRef Prefix = "DW_TAG_";
static constexpr StringRef Suffix = "_type";
if (!TagStr.startswith(Prefix) || !TagStr.endswith(Suffix))
return;
OS << TagStr.substr(Prefix.size(),
TagStr.size() - (Prefix.size() + Suffix.size()))
<< " ";
}
void DWARFTypePrinter::appendArrayType(const DWARFDie &D) {
for (const DWARFDie &C : D.children()) {
if (C.getTag() != DW_TAG_subrange_type)
continue;
std::optional<uint64_t> LB;
std::optional<uint64_t> Count;
std::optional<uint64_t> UB;
std::optional<unsigned> DefaultLB;
if (std::optional<DWARFFormValue> L = C.find(DW_AT_lower_bound))
LB = L->getAsUnsignedConstant();
if (std::optional<DWARFFormValue> CountV = C.find(DW_AT_count))
Count = CountV->getAsUnsignedConstant();
if (std::optional<DWARFFormValue> UpperV = C.find(DW_AT_upper_bound))
UB = UpperV->getAsUnsignedConstant();
if (std::optional<DWARFFormValue> LV =
D.getDwarfUnit()->getUnitDIE().find(DW_AT_language))
if (std::optional<uint64_t> LC = LV->getAsUnsignedConstant())
if ((DefaultLB =
LanguageLowerBound(static_cast<dwarf::SourceLanguage>(*LC))))
if (LB && *LB == *DefaultLB)
LB = std::nullopt;
if (!LB && !Count && !UB)
OS << "[]";
else if (!LB && (Count || UB) && DefaultLB)
OS << '[' << (Count ? *Count : *UB - *DefaultLB + 1) << ']';
else {
OS << "[[";
if (LB)
OS << *LB;
else
OS << '?';
OS << ", ";
if (Count)
if (LB)
OS << *LB + *Count;
else
OS << "? + " << *Count;
else if (UB)
OS << *UB + 1;
else
OS << '?';
OS << ")]";
}
}
EndedWithTemplate = false;
}
static DWARFDie resolveReferencedType(DWARFDie D,
dwarf::Attribute Attr = DW_AT_type) {
return D.getAttributeValueAsReferencedDie(Attr).resolveTypeUnitReference();
}
static DWARFDie resolveReferencedType(DWARFDie D, DWARFFormValue F) {
return D.getAttributeValueAsReferencedDie(F).resolveTypeUnitReference();
}
DWARFDie DWARFTypePrinter::skipQualifiers(DWARFDie D) {
while (D && (D.getTag() == DW_TAG_const_type ||
D.getTag() == DW_TAG_volatile_type))
D = resolveReferencedType(D);
return D;
}
bool DWARFTypePrinter::needsParens(DWARFDie D) {
D = skipQualifiers(D);
return D && (D.getTag() == DW_TAG_subroutine_type ||
D.getTag() == DW_TAG_array_type);
}
void DWARFTypePrinter::appendPointerLikeTypeBefore(DWARFDie D, DWARFDie Inner,
StringRef Ptr) {
appendQualifiedNameBefore(Inner);
if (Word)
OS << ' ';
if (needsParens(Inner))
OS << '(';
OS << Ptr;
Word = false;
EndedWithTemplate = false;
}
DWARFDie
DWARFTypePrinter::appendUnqualifiedNameBefore(DWARFDie D,
std::string *OriginalFullName) {
Word = true;
if (!D) {
OS << "void";
return DWARFDie();
}
DWARFDie InnerDIE;
auto Inner = [&] { return InnerDIE = resolveReferencedType(D); };
const dwarf::Tag T = D.getTag();
switch (T) {
case DW_TAG_pointer_type: {
appendPointerLikeTypeBefore(D, Inner(), "*");
break;
}
case DW_TAG_subroutine_type: {
appendQualifiedNameBefore(Inner());
if (Word) {
OS << ' ';
}
Word = false;
break;
}
case DW_TAG_array_type: {
appendQualifiedNameBefore(Inner());
break;
}
case DW_TAG_reference_type:
appendPointerLikeTypeBefore(D, Inner(), "&");
break;
case DW_TAG_rvalue_reference_type:
appendPointerLikeTypeBefore(D, Inner(), "&&");
break;
case DW_TAG_ptr_to_member_type: {
appendQualifiedNameBefore(Inner());
if (needsParens(InnerDIE))
OS << '(';
else if (Word)
OS << ' ';
if (DWARFDie Cont = resolveReferencedType(D, DW_AT_containing_type)) {
appendQualifiedName(Cont);
EndedWithTemplate = false;
OS << "::";
}
OS << "*";
Word = false;
break;
}
case DW_TAG_LLVM_ptrauth_type:
appendQualifiedNameBefore(Inner());
break;
case DW_TAG_const_type:
case DW_TAG_volatile_type:
appendConstVolatileQualifierBefore(D);
break;
case DW_TAG_namespace: {
if (const char *Name = dwarf::toString(D.find(DW_AT_name), nullptr))
OS << Name;
else
OS << "(anonymous namespace)";
break;
}
case DW_TAG_unspecified_type: {
StringRef TypeName = D.getShortName();
if (TypeName == "decltype(nullptr)")
TypeName = "std::nullptr_t";
Word = true;
OS << TypeName;
EndedWithTemplate = false;
break;
}
/*
case DW_TAG_structure_type:
case DW_TAG_class_type:
case DW_TAG_enumeration_type:
case DW_TAG_base_type:
*/
default: {
const char *NamePtr = dwarf::toString(D.find(DW_AT_name), nullptr);
if (!NamePtr) {
appendTypeTagName(D.getTag());
return DWARFDie();
}
Word = true;
StringRef Name = NamePtr;
static constexpr StringRef MangledPrefix = "_STN|";
if (Name.startswith(MangledPrefix)) {
Name = Name.drop_front(MangledPrefix.size());
auto Separator = Name.find('|');
assert(Separator != StringRef::npos);
StringRef BaseName = Name.substr(0, Separator);
StringRef TemplateArgs = Name.substr(Separator + 1);
if (OriginalFullName)
*OriginalFullName = (BaseName + TemplateArgs).str();
Name = BaseName;
} else
EndedWithTemplate = Name.endswith(">");
OS << Name;
// This check would be insufficient for operator overloads like
// "operator>>" - but for now Clang doesn't try to simplify them, so this
// is OK. Add more nuanced operator overload handling here if/when needed.
if (Name.endswith(">"))
break;
if (!appendTemplateParameters(D))
break;
if (EndedWithTemplate)
OS << ' ';
OS << '>';
EndedWithTemplate = true;
Word = true;
break;
}
}
return InnerDIE;
}
void DWARFTypePrinter::appendUnqualifiedNameAfter(
DWARFDie D, DWARFDie Inner, bool SkipFirstParamIfArtificial) {
if (!D)
return;
switch (D.getTag()) {
case DW_TAG_subroutine_type: {
appendSubroutineNameAfter(D, Inner, SkipFirstParamIfArtificial, false,
false);
break;
}
case DW_TAG_array_type: {
appendArrayType(D);
break;
}
case DW_TAG_const_type:
case DW_TAG_volatile_type:
appendConstVolatileQualifierAfter(D);
break;
case DW_TAG_ptr_to_member_type:
case DW_TAG_reference_type:
case DW_TAG_rvalue_reference_type:
case DW_TAG_pointer_type: {
if (needsParens(Inner))
OS << ')';
appendUnqualifiedNameAfter(Inner, resolveReferencedType(Inner),
/*SkipFirstParamIfArtificial=*/D.getTag() ==
DW_TAG_ptr_to_member_type);
break;
}
case DW_TAG_LLVM_ptrauth_type: {
auto getValOrNull = [&](dwarf::Attribute Attr) -> uint64_t {
if (auto Form = D.find(Attr))
return *Form->getAsUnsignedConstant();
return 0;
};
SmallVector<const char *, 2> optionsVec;
if (getValOrNull(DW_AT_LLVM_ptrauth_isa_pointer))
optionsVec.push_back("isa-pointer");
if (getValOrNull(DW_AT_LLVM_ptrauth_authenticates_null_values))
optionsVec.push_back("authenticates-null-values");
std::string options;
for (const auto *option : optionsVec) {
if (options.size())
options += ",";
options += option;
}
if (options.size())
options = ", \"" + options + "\"";
std::string PtrauthString;
llvm::raw_string_ostream PtrauthStream(PtrauthString);
PtrauthStream
<< "__ptrauth(" << getValOrNull(DW_AT_LLVM_ptrauth_key) << ", "
<< getValOrNull(DW_AT_LLVM_ptrauth_address_discriminated) << ", 0x0"
<< utohexstr(getValOrNull(DW_AT_LLVM_ptrauth_extra_discriminator), true)
<< options << ")";
OS << PtrauthStream.str();
break;
}
/*
case DW_TAG_structure_type:
case DW_TAG_class_type:
case DW_TAG_enumeration_type:
case DW_TAG_base_type:
case DW_TAG_namespace:
*/
default:
break;
}
}
/// Returns True if the DIE TAG is one of the ones that is scopped.
static bool scopedTAGs(dwarf::Tag Tag) {
switch (Tag) {
case dwarf::DW_TAG_structure_type:
case dwarf::DW_TAG_class_type:
case dwarf::DW_TAG_union_type:
case dwarf::DW_TAG_namespace:
case dwarf::DW_TAG_enumeration_type:
return true;
default:
break;
}
return false;
}
void DWARFTypePrinter::appendQualifiedName(DWARFDie D) {
if (D && scopedTAGs(D.getTag()))
appendScopes(D.getParent());
appendUnqualifiedName(D);
}
DWARFDie DWARFTypePrinter::appendQualifiedNameBefore(DWARFDie D) {
if (D && scopedTAGs(D.getTag()))
appendScopes(D.getParent());
return appendUnqualifiedNameBefore(D);
}
bool DWARFTypePrinter::appendTemplateParameters(DWARFDie D,
bool *FirstParameter) {
bool FirstParameterValue = true;
bool IsTemplate = false;
if (!FirstParameter)
FirstParameter = &FirstParameterValue;
for (const DWARFDie &C : D) {
auto Sep = [&] {
if (*FirstParameter)
OS << '<';
else
OS << ", ";
IsTemplate = true;
EndedWithTemplate = false;
*FirstParameter = false;
};
if (C.getTag() == dwarf::DW_TAG_GNU_template_parameter_pack) {
IsTemplate = true;
appendTemplateParameters(C, FirstParameter);
}
if (C.getTag() == dwarf::DW_TAG_template_value_parameter) {
DWARFDie T = resolveReferencedType(C);
Sep();
if (T.getTag() == DW_TAG_enumeration_type) {
OS << '(';
appendQualifiedName(T);
OS << ')';
auto V = C.find(DW_AT_const_value);
OS << std::to_string(*V->getAsSignedConstant());
continue;
}
// /Maybe/ we could do pointer type parameters, looking for the
// symbol in the ELF symbol table to get back to the variable...
// but probably not worth it.
if (T.getTag() == DW_TAG_pointer_type)
continue;
const char *RawName = dwarf::toString(T.find(DW_AT_name), nullptr);
assert(RawName);
StringRef Name = RawName;
auto V = C.find(DW_AT_const_value);
bool IsQualifiedChar = false;
if (Name == "bool") {
OS << (*V->getAsUnsignedConstant() ? "true" : "false");
} else if (Name == "short") {
OS << "(short)";
OS << std::to_string(*V->getAsSignedConstant());
} else if (Name == "unsigned short") {
OS << "(unsigned short)";
OS << std::to_string(*V->getAsSignedConstant());
} else if (Name == "int")
OS << std::to_string(*V->getAsSignedConstant());
else if (Name == "long") {
OS << std::to_string(*V->getAsSignedConstant());
OS << "L";
} else if (Name == "long long") {
OS << std::to_string(*V->getAsSignedConstant());
OS << "LL";
} else if (Name == "unsigned int") {
OS << std::to_string(*V->getAsUnsignedConstant());
OS << "U";
} else if (Name == "unsigned long") {
OS << std::to_string(*V->getAsUnsignedConstant());
OS << "UL";
} else if (Name == "unsigned long long") {
OS << std::to_string(*V->getAsUnsignedConstant());
OS << "ULL";
} else if (Name == "char" ||
(IsQualifiedChar =
(Name == "unsigned char" || Name == "signed char"))) {
// FIXME: check T's DW_AT_type to see if it's signed or not (since
// char signedness is implementation defined).
auto Val = *V->getAsSignedConstant();
// Copied/hacked up from Clang's CharacterLiteral::print - incomplete
// (doesn't actually support different character types/widths, sign
// handling's not done, and doesn't correctly test if a character is
// printable or needs to use a numeric escape sequence instead)
if (IsQualifiedChar) {
OS << '(';
OS << Name;
OS << ')';
}
switch (Val) {
case '\\':
OS << "'\\\\'";
break;
case '\'':
OS << "'\\''";
break;
case '\a':
// TODO: K&R: the meaning of '\\a' is different in traditional C
OS << "'\\a'";
break;
case '\b':
OS << "'\\b'";
break;
case '\f':
OS << "'\\f'";
break;
case '\n':
OS << "'\\n'";
break;
case '\r':
OS << "'\\r'";
break;
case '\t':
OS << "'\\t'";
break;
case '\v':
OS << "'\\v'";
break;
default:
if ((Val & ~0xFFu) == ~0xFFu)
Val &= 0xFFu;
if (Val < 127 && Val >= 32) {
OS << "'";
OS << (char)Val;
OS << "'";
} else if (Val < 256)
OS << llvm::format("'\\x%02" PRIx64 "'", Val);
else if (Val <= 0xFFFF)
OS << llvm::format("'\\u%04" PRIx64 "'", Val);
else
OS << llvm::format("'\\U%08" PRIx64 "'", Val);
}
}
continue;
}
if (C.getTag() == dwarf::DW_TAG_GNU_template_template_param) {
const char *RawName =
dwarf::toString(C.find(DW_AT_GNU_template_name), nullptr);
assert(RawName);
StringRef Name = RawName;
Sep();
OS << Name;
continue;
}
if (C.getTag() != dwarf::DW_TAG_template_type_parameter)
continue;
auto TypeAttr = C.find(DW_AT_type);
Sep();
appendQualifiedName(TypeAttr ? resolveReferencedType(C, *TypeAttr)
: DWARFDie());
}
if (IsTemplate && *FirstParameter && FirstParameter == &FirstParameterValue) {
OS << '<';
EndedWithTemplate = false;
}
return IsTemplate;
}
void DWARFTypePrinter::decomposeConstVolatile(DWARFDie &N, DWARFDie &T,
DWARFDie &C, DWARFDie &V) {
(N.getTag() == DW_TAG_const_type ? C : V) = N;
T = resolveReferencedType(N);
if (T) {
auto Tag = T.getTag();
if (Tag == DW_TAG_const_type) {
C = T;
T = resolveReferencedType(T);
} else if (Tag == DW_TAG_volatile_type) {
V = T;
T = resolveReferencedType(T);
}
}
}
void DWARFTypePrinter::appendConstVolatileQualifierAfter(DWARFDie N) {
DWARFDie C;
DWARFDie V;
DWARFDie T;
decomposeConstVolatile(N, T, C, V);
if (T && T.getTag() == DW_TAG_subroutine_type)
appendSubroutineNameAfter(T, resolveReferencedType(T), false, C.isValid(),
V.isValid());
else
appendUnqualifiedNameAfter(T, resolveReferencedType(T));
}
void DWARFTypePrinter::appendConstVolatileQualifierBefore(DWARFDie N) {
DWARFDie C;
DWARFDie V;
DWARFDie T;
decomposeConstVolatile(N, T, C, V);
bool Subroutine = T && T.getTag() == DW_TAG_subroutine_type;
DWARFDie A = T;
while (A && A.getTag() == DW_TAG_array_type)
A = resolveReferencedType(A);
bool Leading =
(!A || (A.getTag() != DW_TAG_pointer_type &&
A.getTag() != llvm::dwarf::DW_TAG_ptr_to_member_type)) &&
!Subroutine;
if (Leading) {
if (C)
OS << "const ";
if (V)
OS << "volatile ";
}
appendQualifiedNameBefore(T);
if (!Leading && !Subroutine) {
Word = true;
if (C)
OS << "const";
if (V) {
if (C)
OS << ' ';
OS << "volatile";
}
}
}
void DWARFTypePrinter::appendUnqualifiedName(DWARFDie D,
std::string *OriginalFullName) {
// FIXME: We should have pretty printers per language. Currently we print
// everything as if it was C++ and fall back to the TAG type name.
DWARFDie Inner = appendUnqualifiedNameBefore(D, OriginalFullName);
appendUnqualifiedNameAfter(D, Inner);
}
void DWARFTypePrinter::appendSubroutineNameAfter(
DWARFDie D, DWARFDie Inner, bool SkipFirstParamIfArtificial, bool Const,
bool Volatile) {
DWARFDie FirstParamIfArtificial;
OS << '(';
EndedWithTemplate = false;
bool First = true;
bool RealFirst = true;
for (DWARFDie P : D) {
if (P.getTag() != DW_TAG_formal_parameter &&
P.getTag() != DW_TAG_unspecified_parameters)
return;
DWARFDie T = resolveReferencedType(P);
if (SkipFirstParamIfArtificial && RealFirst && P.find(DW_AT_artificial)) {
FirstParamIfArtificial = T;
RealFirst = false;
continue;
}
if (!First) {
OS << ", ";
}
First = false;
if (P.getTag() == DW_TAG_unspecified_parameters)
OS << "...";
else
appendQualifiedName(T);
}
EndedWithTemplate = false;
OS << ')';
if (FirstParamIfArtificial) {
if (DWARFDie P = FirstParamIfArtificial) {
if (P.getTag() == DW_TAG_pointer_type) {
auto CVStep = [&](DWARFDie CV) {
if (DWARFDie U = resolveReferencedType(CV)) {
Const |= U.getTag() == DW_TAG_const_type;
Volatile |= U.getTag() == DW_TAG_volatile_type;
return U;
}
return DWARFDie();
};
if (DWARFDie CV = CVStep(P)) {
CVStep(CV);
}
}
}
}
if (auto CC = D.find(DW_AT_calling_convention)) {
switch (*CC->getAsUnsignedConstant()) {
case CallingConvention::DW_CC_BORLAND_stdcall:
OS << " __attribute__((stdcall))";
break;
case CallingConvention::DW_CC_BORLAND_msfastcall:
OS << " __attribute__((fastcall))";
break;
case CallingConvention::DW_CC_BORLAND_thiscall:
OS << " __attribute__((thiscall))";
break;
case CallingConvention::DW_CC_LLVM_vectorcall:
OS << " __attribute__((vectorcall))";
break;
case CallingConvention::DW_CC_BORLAND_pascal:
OS << " __attribute__((pascal))";
break;
case CallingConvention::DW_CC_LLVM_Win64:
OS << " __attribute__((ms_abi))";
break;
case CallingConvention::DW_CC_LLVM_X86_64SysV:
OS << " __attribute__((sysv_abi))";
break;
case CallingConvention::DW_CC_LLVM_AAPCS:
// AArch64VectorCall missing?
OS << " __attribute__((pcs(\"aapcs\")))";
break;
case CallingConvention::DW_CC_LLVM_AAPCS_VFP:
OS << " __attribute__((pcs(\"aapcs-vfp\")))";
break;
case CallingConvention::DW_CC_LLVM_IntelOclBicc:
OS << " __attribute__((intel_ocl_bicc))";
break;
case CallingConvention::DW_CC_LLVM_SpirFunction:
case CallingConvention::DW_CC_LLVM_OpenCLKernel:
// These aren't available as attributes, but maybe we should still
// render them somehow? (Clang doesn't render them, but that's an issue
// for template names too - since then the DWARF names of templates
// instantiated with function types with these calling conventions won't
// have distinct names - so we'd need to fix that too)
break;
case CallingConvention::DW_CC_LLVM_Swift:
// SwiftAsync missing
OS << " __attribute__((swiftcall))";
break;
case CallingConvention::DW_CC_LLVM_PreserveMost:
OS << " __attribute__((preserve_most))";
break;
case CallingConvention::DW_CC_LLVM_PreserveAll:
OS << " __attribute__((preserve_all))";
break;
case CallingConvention::DW_CC_LLVM_X86RegCall:
OS << " __attribute__((regcall))";
break;
}
}
if (Const)
OS << " const";
if (Volatile)
OS << " volatile";
if (D.find(DW_AT_reference))
OS << " &";
if (D.find(DW_AT_rvalue_reference))
OS << " &&";
appendUnqualifiedNameAfter(Inner, resolveReferencedType(Inner));
}
void DWARFTypePrinter::appendScopes(DWARFDie D) {
if (D.getTag() == DW_TAG_compile_unit)
return;
if (D.getTag() == DW_TAG_type_unit)
return;
if (D.getTag() == DW_TAG_skeleton_unit)
return;
if (D.getTag() == DW_TAG_subprogram)
return;
if (D.getTag() == DW_TAG_lexical_block)
return;
D = D.resolveTypeUnitReference();
if (DWARFDie P = D.getParent())
appendScopes(P);
appendUnqualifiedName(D);
OS << "::";
}
} // namespace llvm
|