mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-24 20:29:53 +00:00
[DebugInfo] Dump CIE augmentation data as a list of hex bytes
CIE augmentation data might contain non-printable characters. The patch prints the data as a list of hex bytes. Differential Revision: http://reviews.llvm.org/D17759 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@262361 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
1283c1d7af
commit
b9c447406c
@ -12,6 +12,7 @@
|
||||
#include "llvm/ADT/DenseMap.h"
|
||||
#include "llvm/ADT/Optional.h"
|
||||
#include "llvm/ADT/SmallString.h"
|
||||
#include "llvm/ADT/StringExtras.h"
|
||||
#include "llvm/Support/Casting.h"
|
||||
#include "llvm/Support/DataTypes.h"
|
||||
#include "llvm/Support/Dwarf.h"
|
||||
@ -244,8 +245,12 @@ public:
|
||||
(int32_t)DataAlignmentFactor);
|
||||
OS << format(" Return address column: %d\n",
|
||||
(int32_t)ReturnAddressRegister);
|
||||
if (!AugmentationData.empty())
|
||||
OS << " Augmentation data: " << AugmentationData << "\n";
|
||||
if (!AugmentationData.empty()) {
|
||||
OS << " Augmentation data: ";
|
||||
for (uint8_t Byte : AugmentationData)
|
||||
OS << ' ' << hexdigit(Byte >> 4) << hexdigit(Byte & 0xf);
|
||||
OS << "\n";
|
||||
}
|
||||
OS << "\n";
|
||||
}
|
||||
|
||||
|
BIN
test/tools/llvm-objdump/Inputs/eh_frame.elf-mipsel
Executable file
BIN
test/tools/llvm-objdump/Inputs/eh_frame.elf-mipsel
Executable file
Binary file not shown.
@ -8,7 +8,7 @@
|
||||
# CHECK: Code alignment factor: 1
|
||||
# CHECK: Data alignment factor: -8
|
||||
# CHECK: Return address column: 30
|
||||
# CHECK: Augmentation data:
|
||||
# CHECK: Augmentation data: 10
|
||||
|
||||
# CHECK: DW_CFA_def_cfa: reg31 +0
|
||||
|
||||
|
27
test/tools/llvm-objdump/eh_frame-mipsel.test
Normal file
27
test/tools/llvm-objdump/eh_frame-mipsel.test
Normal file
@ -0,0 +1,27 @@
|
||||
# RUN: llvm-objdump -dwarf=frames %p/Inputs/eh_frame.elf-mipsel | FileCheck %s
|
||||
|
||||
# CHECK: .eh_frame contents:
|
||||
|
||||
# CHECK: 00000000 00000018 ffffffff CIE
|
||||
# CHECK: Version: 1
|
||||
# CHECK: Augmentation: "zPLR"
|
||||
# CHECK: Code alignment factor: 1
|
||||
# CHECK: Data alignment factor: -4
|
||||
# CHECK: Return address column: 31
|
||||
# CHECK: Augmentation data: 80 90 0B 41 00 00 0B
|
||||
|
||||
# CHECK: DW_CFA_def_cfa: reg29 +0
|
||||
|
||||
# CHECK: 0000001c 00000018 00000020 FDE cie=00000020 pc=00400890...004008dc
|
||||
# CHECK: DW_CFA_advance_loc: 4
|
||||
# CHECK: DW_CFA_def_cfa_offset: +24
|
||||
# CHECK: DW_CFA_advance_loc: 4
|
||||
# CHECK: DW_CFA_offset: reg31 -4
|
||||
# CHECK: DW_CFA_nop:
|
||||
|
||||
# CHECK: 00000038 00000000 ffffffff CIE
|
||||
# CHECK: Version: 0
|
||||
# CHECK: Augmentation: ""
|
||||
# CHECK: Code alignment factor: 0
|
||||
# CHECK: Data alignment factor: 0
|
||||
# CHECK: Return address column: 0
|
Loading…
Reference in New Issue
Block a user