25#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \
27 return "DW_TAG_" #NAME;
28#include "llvm/BinaryFormat/Dwarf.def"
34#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \
35 .Case("DW_TAG_" #NAME, DW_TAG_##NAME)
36#include "llvm/BinaryFormat/Dwarf.def"
44#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \
47#include "llvm/BinaryFormat/Dwarf.def"
55#define HANDLE_DW_TAG(ID, NAME, VERSION, VENDOR, KIND) \
57 return DWARF_VENDOR_##VENDOR;
58#include "llvm/BinaryFormat/Dwarf.def"
65 return "DW_CHILDREN_no";
67 return "DW_CHILDREN_yes";
76#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
78 return "DW_AT_" #NAME;
79#include "llvm/BinaryFormat/Dwarf.def"
87#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
90#include "llvm/BinaryFormat/Dwarf.def"
98#define HANDLE_DW_AT(ID, NAME, VERSION, VENDOR) \
100 return DWARF_VENDOR_##VENDOR;
101#include "llvm/BinaryFormat/Dwarf.def"
109#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
110 case DW_FORM_##NAME: \
111 return "DW_FORM_" #NAME;
112#include "llvm/BinaryFormat/Dwarf.def"
120#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
121 case DW_FORM_##NAME: \
123#include "llvm/BinaryFormat/Dwarf.def"
131#define HANDLE_DW_FORM(ID, NAME, VERSION, VENDOR) \
132 case DW_FORM_##NAME: \
133 return DWARF_VENDOR_##VENDOR;
134#include "llvm/BinaryFormat/Dwarf.def"
142#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
144 return "DW_OP_" #NAME;
145#include "llvm/BinaryFormat/Dwarf.def"
147 return "DW_OP_LLVM_convert";
149 return "DW_OP_LLVM_fragment";
151 return "DW_OP_LLVM_tag_offset";
153 return "DW_OP_LLVM_entry_value";
155 return "DW_OP_LLVM_implicit_pointer";
157 return "DW_OP_LLVM_arg";
163#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
164 .Case("DW_OP_" #NAME, DW_OP_##NAME)
165#include "llvm/BinaryFormat/Dwarf.def"
179#define HANDLE_DW_OP_LLVM_USEROP(ID, NAME) \
180 case DW_OP_LLVM_##NAME: \
181 return "DW_OP_LLVM_" #NAME;
182#include "llvm/BinaryFormat/Dwarf.def"
189#define HANDLE_DW_OP_LLVM_USEROP(ID, NAME) .Case(#NAME, DW_OP_LLVM_##NAME)
190#include "llvm/BinaryFormat/Dwarf.def"
192 assert(
E &&
"unhandled DWARF operation string with LLVM user op");
197 unsigned SubOpEncoding) {
198 assert(OpEncoding == DW_OP_LLVM_user);
205 assert(OpEncoding == DW_OP_LLVM_user);
213#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
216#include "llvm/BinaryFormat/Dwarf.def"
224#define HANDLE_DW_OP(ID, NAME, VERSION, VENDOR) \
226 return DWARF_VENDOR_##VENDOR;
227#include "llvm/BinaryFormat/Dwarf.def"
235#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
236 case DW_ATE_##NAME: \
237 return "DW_ATE_" #NAME;
238#include "llvm/BinaryFormat/Dwarf.def"
244#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
245 .Case("DW_ATE_" #NAME, DW_ATE_##NAME)
246#include "llvm/BinaryFormat/Dwarf.def"
254#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
255 case DW_ATE_##NAME: \
257#include "llvm/BinaryFormat/Dwarf.def"
265#define HANDLE_DW_ATE(ID, NAME, VERSION, VENDOR) \
266 case DW_ATE_##NAME: \
267 return DWARF_VENDOR_##VENDOR;
268#include "llvm/BinaryFormat/Dwarf.def"
275 return "DW_DS_unsigned";
277 return "DW_DS_leading_overpunch";
279 return "DW_DS_trailing_overpunch";
281 return "DW_DS_leading_separate";
283 return "DW_DS_trailing_separate";
291 return "DW_END_default";
295 return "DW_END_little";
297 return "DW_END_lo_user";
299 return "DW_END_hi_user";
308 return "DW_ACCESS_public";
310 return "DW_ACCESS_protected";
312 return "DW_ACCESS_private";
318 switch (DefaultedEncodings) {
320 case DW_DEFAULTED_no:
321 return "DW_DEFAULTED_no";
322 case DW_DEFAULTED_in_class:
323 return "DW_DEFAULTED_in_class";
324 case DW_DEFAULTED_out_of_class:
325 return "DW_DEFAULTED_out_of_class";
331 switch (Visibility) {
333 return "DW_VIS_local";
335 return "DW_VIS_exported";
337 return "DW_VIS_qualified";
343 switch (Virtuality) {
346#define HANDLE_DW_VIRTUALITY(ID, NAME) \
347 case DW_VIRTUALITY_##NAME: \
348 return "DW_VIRTUALITY_" #NAME;
349#include "llvm/BinaryFormat/Dwarf.def"
355#define HANDLE_DW_VIRTUALITY(ID, NAME) \
356 .Case("DW_VIRTUALITY_" #NAME, DW_VIRTUALITY_##NAME)
357#include "llvm/BinaryFormat/Dwarf.def"
365#define HANDLE_DW_LANG(ID, NAME, LOWER_BOUND, VERSION, VENDOR) \
366 case DW_LANG_##NAME: \
367 return "DW_LANG_" #NAME;
368#include "llvm/BinaryFormat/Dwarf.def"
374#define HANDLE_DW_LANG(ID, NAME, LOWER_BOUND, VERSION, VENDOR) \
375 .Case("DW_LANG_" #NAME, DW_LANG_##NAME)
376#include "llvm/BinaryFormat/Dwarf.def"
384#define HANDLE_DW_LANG(ID, NAME, LOWER_BOUND, VERSION, VENDOR) \
385 case DW_LANG_##NAME: \
387#include "llvm/BinaryFormat/Dwarf.def"
395#define HANDLE_DW_LANG(ID, NAME, LOWER_BOUND, VERSION, VENDOR) \
396 case DW_LANG_##NAME: \
397 return DWARF_VENDOR_##VENDOR;
398#include "llvm/BinaryFormat/Dwarf.def"
402std::optional<unsigned>
407#define HANDLE_DW_LANG(ID, NAME, LOWER_BOUND, VERSION, VENDOR) \
408 case DW_LANG_##NAME: \
410#include "llvm/BinaryFormat/Dwarf.def"
417 return "DW_ID_case_sensitive";
419 return "DW_ID_up_case";
421 return "DW_ID_down_case";
423 return "DW_ID_case_insensitive";
432#define HANDLE_DW_CC(ID, NAME) \
434 return "DW_CC_" #NAME;
435#include "llvm/BinaryFormat/Dwarf.def"
441#define HANDLE_DW_CC(ID, NAME) .Case("DW_CC_" #NAME, DW_CC_##NAME)
442#include "llvm/BinaryFormat/Dwarf.def"
449 return "DW_INL_not_inlined";
451 return "DW_INL_inlined";
453 return "DW_INL_declared_not_inlined";
455 return "DW_INL_declared_inlined";
463 return "DW_ORD_row_major";
465 return "DW_ORD_col_major";
474#define HANDLE_DW_LNS(ID, NAME) \
475 case DW_LNS_##NAME: \
476 return "DW_LNS_" #NAME;
477#include "llvm/BinaryFormat/Dwarf.def"
485#define HANDLE_DW_LNE(ID, NAME) \
486 case DW_LNE_##NAME: \
487 return "DW_LNE_" #NAME;
488#include "llvm/BinaryFormat/Dwarf.def"
496 return "DW_MACINFO_define";
498 return "DW_MACINFO_undef";
500 return "DW_MACINFO_start_file";
502 return "DW_MACINFO_end_file";
504 return "DW_MACINFO_vendor_ext";
506 return "DW_MACINFO_invalid";
525#define HANDLE_DW_MACRO(ID, NAME) \
526 case DW_MACRO_##NAME: \
527 return "DW_MACRO_" #NAME;
528#include "llvm/BinaryFormat/Dwarf.def"
536#define HANDLE_DW_MACRO_GNU(ID, NAME) \
537 case DW_MACRO_GNU_##NAME: \
538 return "DW_MACRO_GNU_" #NAME;
539#include "llvm/BinaryFormat/Dwarf.def"
545#define HANDLE_DW_MACRO(ID, NAME) .Case("DW_MACRO_" #NAME, ID)
546#include "llvm/BinaryFormat/Dwarf.def"
553#define HANDLE_DW_RLE(ID, NAME) \
554 case DW_RLE_##NAME: \
555 return "DW_RLE_" #NAME;
556#include "llvm/BinaryFormat/Dwarf.def"
564#define HANDLE_DW_LLE(ID, NAME) \
565 case DW_LLE_##NAME: \
566 return "DW_LLE_" #NAME;
567#include "llvm/BinaryFormat/Dwarf.def"
574#define SELECT_AARCH64 (Arch == llvm::Triple::aarch64_be || Arch == llvm::Triple::aarch64)
575#define SELECT_MIPS64 Arch == llvm::Triple::mips64
576#define SELECT_SPARC (Arch == llvm::Triple::sparc || Arch == llvm::Triple::sparcv9)
577#define SELECT_X86 (Arch == llvm::Triple::x86 || Arch == llvm::Triple::x86_64)
578#define HANDLE_DW_CFA(ID, NAME)
579#define HANDLE_DW_CFA_PRED(ID, NAME, PRED) \
580 if (ID == Encoding && PRED) \
581 return "DW_CFA_" #NAME;
582#include "llvm/BinaryFormat/Dwarf.def"
587#define HANDLE_DW_CFA_PRED(ID, NAME, PRED)
588#define HANDLE_DW_CFA(ID, NAME) \
589 case DW_CFA_##NAME: \
590 return "DW_CFA_" #NAME;
591#include "llvm/BinaryFormat/Dwarf.def"
604#define HANDLE_DW_APPLE_PROPERTY(ID, NAME) \
605 case DW_APPLE_PROPERTY_##NAME: \
606 return "DW_APPLE_PROPERTY_" #NAME;
607#include "llvm/BinaryFormat/Dwarf.def"
615#define HANDLE_DW_UT(ID, NAME) \
617 return "DW_UT_" #NAME;
618#include "llvm/BinaryFormat/Dwarf.def"
625 return "DW_ATOM_null";
627 return "DW_ATOM_die_offset";
629 return "DW_ATOM_cu_offset";
631 return "DW_ATOM_die_tag";
634 return "DW_ATOM_type_flags";
636 return "DW_ATOM_qual_name_hash";
676 case DW_AT_accessibility:
678 case DW_AT_virtuality:
684 case DW_AT_decimal_sign:
686 case DW_AT_endianity:
688 case DW_AT_visibility:
690 case DW_AT_identifier_case:
692 case DW_AT_calling_convention:
698 case DW_AT_APPLE_runtime_class:
700 case DW_AT_defaulted:
722#define HANDLE_DW_IDX(ID, NAME) \
723 case DW_IDX_##NAME: \
724 return "DW_IDX_" #NAME;
725#include "llvm/BinaryFormat/Dwarf.def"
744 case DW_FORM_ref_udata:
745 case DW_FORM_indirect:
746 case DW_FORM_exprloc:
749 case DW_FORM_loclistx:
750 case DW_FORM_rnglistx:
751 case DW_FORM_GNU_addr_index:
752 case DW_FORM_GNU_str_index:
755 case DW_FORM_ref_addr:
779 case DW_FORM_ref_sup4:
785 case DW_FORM_GNU_ref_alt:
786 case DW_FORM_GNU_strp_alt:
787 case DW_FORM_line_strp:
788 case DW_FORM_sec_offset:
789 case DW_FORM_strp_sup:
796 case DW_FORM_ref_sig8:
797 case DW_FORM_ref_sup8:
800 case DW_FORM_flag_present:
806 case DW_FORM_implicit_const:
821 return FV > 0 && FV <= Version;
844#define HANDLE_DW_RLE(ID, NAME) \
845 case DW_RLE_##NAME: \
846 return "DW_RLE_" #NAME;
847#include "llvm/BinaryFormat/Dwarf.def"
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
static unsigned getLlvmUserOperationEncoding(StringRef LlvmUserOperationEncodingString)
static StringRef LlvmUserOperationEncodingString(unsigned Encoding)
This file contains constants used for implementing Dwarf debug support.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements the StringSwitch template, which mimics a switch() statement whose cases are str...
This class represents an Operation in the Expression.
StringRef - Represent a constant reference to a string, i.e.
A switch()-like statement whose cases are string literals.
StringSwitch & Case(StringLiteral S, T Value)
StringRef LNExtendedString(unsigned Encoding)
StringRef RangeListEncodingString(unsigned Encoding)
StringRef CaseString(unsigned Case)
StringRef VisibilityString(unsigned Visibility)
StringRef GDBIndexEntryLinkageString(GDBIndexEntryLinkage Linkage)
StringRef AttributeString(unsigned Attribute)
StringRef CallFrameString(unsigned Encoding, Triple::ArchType Arch)
StringRef FormEncodingString(unsigned Encoding)
StringRef ArrayOrderString(unsigned Order)
StringRef MacroString(unsigned Encoding)
StringRef LocListEncodingString(unsigned Encoding)
StringRef IndexString(unsigned Idx)
StringRef RLEString(unsigned RLE)
StringRef SubOperationEncodingString(unsigned OpEncoding, unsigned SubOpEncoding)
StringRef LanguageString(unsigned Language)
StringRef DecimalSignString(unsigned Sign)
StringRef VirtualityString(unsigned Virtuality)
StringRef AttributeEncodingString(unsigned Encoding)
StringRef ChildrenString(unsigned Children)
StringRef ApplePropertyString(unsigned)
StringRef AtomTypeString(unsigned Atom)
StringRef FormatString(DwarfFormat Format)
StringRef GnuMacroString(unsigned Encoding)
StringRef EndianityString(unsigned Endian)
StringRef ConventionString(unsigned Convention)
StringRef MacinfoString(unsigned Encoding)
StringRef OperationEncodingString(unsigned Encoding)
StringRef UnitTypeString(unsigned)
StringRef InlineCodeString(unsigned Code)
StringRef GDBIndexEntryKindString(GDBIndexEntryKind Kind)
StringRef TagString(unsigned Tag)
StringRef LNStandardString(unsigned Standard)
StringRef AccessibilityString(unsigned Access)
StringRef DefaultedMemberString(unsigned DefaultedEncodings)
unsigned getSubOperationEncoding(unsigned OpEncoding, StringRef SubOperationEncodingString)
unsigned getOperationEncoding(StringRef OperationEncodingString)
unsigned getAttributeEncoding(StringRef EncodingString)
unsigned getTag(StringRef TagString)
unsigned getCallingConvention(StringRef LanguageString)
unsigned getLanguage(StringRef LanguageString)
unsigned getVirtuality(StringRef VirtualityString)
unsigned getMacro(StringRef MacroString)
unsigned getMacinfo(StringRef MacinfoString)
unsigned AttributeEncodingVendor(TypeKind E)
unsigned FormVendor(Form F)
unsigned AttributeVendor(Attribute A)
unsigned OperationVendor(LocationAtom O)
unsigned TagVendor(Tag T)
unsigned LanguageVendor(SourceLanguage L)
unsigned OperationVersion(LocationAtom O)
unsigned AttributeVersion(Attribute A)
unsigned LanguageVersion(SourceLanguage L)
unsigned AttributeEncodingVersion(TypeKind E)
unsigned TagVersion(Tag T)
unsigned FormVersion(Form F)
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ DW_INL_declared_not_inlined
@ DW_INL_declared_inlined
std::optional< unsigned > LanguageLowerBound(SourceLanguage L)
StringRef AtomValueString(uint16_t Atom, unsigned Val)
Returns the symbolic string representing Val when used as a value for atom Atom.
@ DW_OP_LLVM_entry_value
Only used in LLVM metadata.
@ DW_OP_LLVM_implicit_pointer
Only used in LLVM metadata.
@ DW_OP_LLVM_tag_offset
Only used in LLVM metadata.
@ DW_OP_LLVM_fragment
Only used in LLVM metadata.
@ DW_OP_LLVM_arg
Only used in LLVM metadata.
@ DW_OP_LLVM_convert
Only used in LLVM metadata.
DwarfFormat
Constants that define the DWARF format as 32 or 64 bit.
bool isValidFormForVersion(Form F, unsigned Version, bool ExtensionsOk=true)
Tells whether the specified form is defined in the specified version, or is an extension if extension...
std::optional< uint8_t > getFixedFormByteSize(dwarf::Form Form, FormParams Params)
Get the fixed byte size for a given form.
StringRef AttributeValueString(uint16_t Attr, unsigned Val)
Returns the symbolic string representing Val when used as a value for attribute Attr.
@ DW_DS_trailing_separate
@ DW_DS_trailing_overpunch
@ DW_DS_leading_overpunch
@ DW_ATOM_die_offset
Marker as the end of a list of atoms.
@ DW_ATOM_type_type_flags
@ DW_TAG_invalid
LLVM mock tags (see also llvm/BinaryFormat/Dwarf.def).
@ DW_MACINFO_invalid
Macinfo type for invalid results.
@ DW_VIRTUALITY_invalid
Virtuality for invalid results.
@ DWARF_VENDOR_DWARF
Identifiers we use to distinguish vendor extensions.
This is an optimization pass for GlobalISel generic memory operations.