[PATCH] D127148: [ELF] Support 'G' in lld
Florian Mayer via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Tue Jun 7 13:58:59 PDT 2022
fmayer updated this revision to Diff 434943.
fmayer added a comment.
remove comments
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D127148/new/
https://reviews.llvm.org/D127148
Files:
lld/ELF/EhFrame.cpp
lld/test/ELF/stack-tagging-cfi.s
Index: lld/test/ELF/stack-tagging-cfi.s
===================================================================
--- /dev/null
+++ lld/test/ELF/stack-tagging-cfi.s
@@ -0,0 +1,17 @@
+# RUN: llvm-mc -filetype=obj -triple aarch64 -mattr=+mte %s -o %t.o
+# RUN: ld.lld --eh-frame-hdr %t.o -o %t
+# RUN: llvm-objdump --dwarf=frames %t | FileCheck %s
+
+# CHECK: Augmentation: "zRG"
+
+ .text
+ .globl WithUnwind
+ .p2align 2
+ .type WithUnwind, at function
+WithUnwind:
+ .cfi_startproc
+ .cfi_mte_tagged_frame
+ ret
+.Lfunc_end0:
+ .size WithUnwind, .Lfunc_end0-WithUnwind
+ .cfi_endproc
Index: lld/ELF/EhFrame.cpp
===================================================================
--- lld/ELF/EhFrame.cpp
+++ lld/ELF/EhFrame.cpp
@@ -171,7 +171,7 @@
readByte();
else if (c == 'P')
skipAugP();
- else if (c != 'B' && c != 'S')
+ else if (c != 'B' && c != 'S' && c != 'G')
failOn(aug.data(), "unknown .eh_frame augmentation string: " + aug);
}
return DW_EH_PE_absptr;
@@ -188,7 +188,7 @@
skipAugP();
else if (c == 'R')
readByte();
- else if (c != 'B' && c != 'S')
+ else if (c != 'B' && c != 'S' && c != 'G')
failOn(aug.data(), "unknown .eh_frame augmentation string: " + aug);
}
return false;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D127148.434943.patch
Type: text/x-patch
Size: 1266 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220607/b8a289f5/attachment.bin>
More information about the llvm-commits
mailing list