commit | 925b220ee424f8489bc8d7b1a247f2c5f3edde5d | [log] [tgz] |
---|---|---|
author | Pavel Labath <pavel@labath.sk> | Tue Sep 10 12:57:54 2024 +0200 |
committer | GitHub <noreply@github.com> | Tue Sep 10 12:57:54 2024 +0200 |
tree | d124c25a2e0e667853fb9ac48bf96dabfbbd9e65 | |
parent | fffdd9ed4293f89a1680333fbf17cbab204d0050 [diff] |
[lldb] Recurse through DW_AT_signature when looking for attributes (#107241) This allows e.g. DWARFDIE::GetName() to return the name of the type when looking at its declaration (which contains only DW_AT_declaration+DW_AT_signature). This is similar to how we recurse through DW_AT_specification when looking for a function name. Llvm dwarf parser has obtained the same functionality through #99495. This fixes a bug where we would confuse a type like NS::Outer::Struct with NS::Struct (because NS::Outer (and its name) was in a type unit).
Welcome to the LLVM project!
This repository contains the source code for LLVM, a toolkit for the construction of highly optimized compilers, optimizers, and run-time environments.
The LLVM project has multiple components. The core of the project is itself called “LLVM”. This contains all of the tools, libraries, and header files needed to process intermediate representations and convert them into object files. Tools include an assembler, disassembler, bitcode analyzer, and bitcode optimizer.
C-like languages use the Clang frontend. This component compiles C, C++, Objective-C, and Objective-C++ code into LLVM bitcode -- and from there into object files, using LLVM.
Other components include: the libc++ C++ standard library, the LLD linker, and more.
Consult the Getting Started with LLVM page for information on building and running LLVM.
For information on how to contribute to the LLVM project, please take a look at the Contributing to LLVM guide.
Join the LLVM Discourse forums, Discord chat, LLVM Office Hours or Regular sync-ups.
The LLVM project has adopted a code of conduct for participants to all modes of communication within the project.