summaryrefslogtreecommitdiffstats
path: root/lldb/source/Utility
diff options
context:
space:
mode:
authorTamas Berghammer <tberghammer@google.com>2015-09-30 13:50:14 +0000
committerTamas Berghammer <tberghammer@google.com>2015-09-30 13:50:14 +0000
commit648f3c7efa0e7d760a668686066adb4e2a91ca6d (patch)
treec310c8f4f3d7142da83f5b2ca42783b4b5f94b55 /lldb/source/Utility
parente6e082348d5125cbf7a0027d208f28d9f12f2832 (diff)
downloadbcm5719-llvm-648f3c7efa0e7d760a668686066adb4e2a91ca6d.tar.gz
bcm5719-llvm-648f3c7efa0e7d760a668686066adb4e2a91ca6d.zip
Add support for .ARM.exidx unwind information
.ARM.exidx/.ARM.extab sections contain unwind information used on ARM architecture from unwinding from an exception. Differential revision: http://reviews.llvm.org/D13245 llvm-svn: 248903
Diffstat (limited to 'lldb/source/Utility')
-rw-r--r--lldb/source/Utility/ConvertEnum.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lldb/source/Utility/ConvertEnum.cpp b/lldb/source/Utility/ConvertEnum.cpp
index f7dab08498c..ecadc7120c9 100644
--- a/lldb/source/Utility/ConvertEnum.cpp
+++ b/lldb/source/Utility/ConvertEnum.cpp
@@ -105,6 +105,10 @@ lldb_private::GetSectionTypeAsCString(lldb::SectionType sect_type)
return "apple-objc";
case eSectionTypeEHFrame:
return "eh-frame";
+ case eSectionTypeARMexidx:
+ return "ARM.exidx";
+ case eSectionTypeARMextab:
+ return "ARM.extab";
case eSectionTypeCompactUnwind:
return "compact-unwind";
case eSectionTypeGoSymtab:
OpenPOWER on IntegriCloud