[all-commits] [llvm/llvm-project] 430e22: [DebugInfo] generate btf_tag annotations for DIDer...
yonghong-song via All-commits
all-commits at lists.llvm.org
Fri Aug 20 12:11:29 PDT 2021
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 430e22388173c96da6777fccb9735a6e8ee3ea1c
https://github.com/llvm/llvm-project/commit/430e22388173c96da6777fccb9735a6e8ee3ea1c
Author: Yonghong Song <yhs at fb.com>
Date: 2021-08-20 (Fri, 20 Aug 2021)
Changed paths:
M llvm/include/llvm/IR/DIBuilder.h
M llvm/include/llvm/IR/DebugInfoMetadata.h
M llvm/lib/AsmParser/LLParser.cpp
M llvm/lib/Bitcode/Reader/MetadataLoader.cpp
M llvm/lib/Bitcode/Writer/BitcodeWriter.cpp
M llvm/lib/IR/AsmWriter.cpp
M llvm/lib/IR/DIBuilder.cpp
M llvm/lib/IR/DebugInfoMetadata.cpp
M llvm/lib/IR/LLVMContextImpl.h
A llvm/test/Bitcode/attr-btf_tag-field.ll
Log Message:
-----------
[DebugInfo] generate btf_tag annotations for DIDerived types
Generate btf_tag annotations for DIDrived types. More specifically,
clang frontend generates the btf_tag annotations for record
fields. The annotations are represented as an DINodeArray
in DebugInfo. The following example illustrate how
annotations are encoded in IR:
distinct !DIDerivedType(tag: DW_TAG_member, ..., annotations: !10)
!10 = !{!11, !12}
!11 = !{!"btf_tag", !"a"}
!12 = !{!"btf_tag", !"b"}
Differential Revision: https://reviews.llvm.org/D106616
More information about the All-commits
mailing list