123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686 |
- //===-- ARMWinEHPrinter.cpp - Windows on ARM EH Data Printer ----*- C++ -*-===//
- //
- // The LLVM Compiler Infrastructure
- //
- // This file is distributed under the University of Illinois Open Source
- // License. See LICENSE.TXT for details.
- //
- //===----------------------------------------------------------------------===//
- #include "ARMWinEHPrinter.h"
- #include "Error.h"
- #include "llvm/ADT/STLExtras.h"
- #include "llvm/ADT/StringExtras.h"
- #include "llvm/Support/ARMWinEH.h"
- #include "llvm/Support/Format.h"
- using namespace llvm;
- using namespace llvm::object;
- using namespace llvm::support;
- namespace llvm {
- raw_ostream &operator<<(raw_ostream &OS, const ARM::WinEH::ReturnType &RT) {
- switch (RT) {
- case ARM::WinEH::ReturnType::RT_POP:
- OS << "pop {pc}";
- break;
- case ARM::WinEH::ReturnType::RT_B:
- OS << "b target";
- break;
- case ARM::WinEH::ReturnType::RT_BW:
- OS << "b.w target";
- break;
- case ARM::WinEH::ReturnType::RT_NoEpilogue:
- OS << "(no epilogue)";
- break;
- }
- return OS;
- }
- }
- static std::string formatSymbol(StringRef Name, uint64_t Address,
- uint64_t Offset = 0) {
- std::string Buffer;
- raw_string_ostream OS(Buffer);
- if (!Name.empty())
- OS << Name << " ";
- if (Offset)
- OS << format("+0x%X (0x%" PRIX64 ")", Offset, Address);
- else if (!Name.empty())
- OS << format("(0x%" PRIX64 ")", Address);
- else
- OS << format("0x%" PRIX64, Address);
- return OS.str();
- }
- namespace llvm {
- namespace ARM {
- namespace WinEH {
- const size_t Decoder::PDataEntrySize = sizeof(RuntimeFunction);
- // TODO name the uops more appropriately
- const Decoder::RingEntry Decoder::Ring[] = {
- { 0x80, 0x00, &Decoder::opcode_0xxxxxxx }, // UOP_STACK_FREE (16-bit)
- { 0xc0, 0x80, &Decoder::opcode_10Lxxxxx }, // UOP_POP (32-bit)
- { 0xf0, 0xc0, &Decoder::opcode_1100xxxx }, // UOP_STACK_SAVE (16-bit)
- { 0xf8, 0xd0, &Decoder::opcode_11010Lxx }, // UOP_POP (16-bit)
- { 0xf8, 0xd8, &Decoder::opcode_11011Lxx }, // UOP_POP (32-bit)
- { 0xf8, 0xe0, &Decoder::opcode_11100xxx }, // UOP_VPOP (32-bit)
- { 0xfc, 0xe8, &Decoder::opcode_111010xx }, // UOP_STACK_FREE (32-bit)
- { 0xfe, 0xec, &Decoder::opcode_1110110L }, // UOP_POP (16-bit)
- { 0xff, 0xee, &Decoder::opcode_11101110 }, // UOP_MICROSOFT_SPECIFIC (16-bit)
- // UOP_PUSH_MACHINE_FRAME
- // UOP_PUSH_CONTEXT
- // UOP_PUSH_TRAP_FRAME
- // UOP_REDZONE_RESTORE_LR
- { 0xff, 0xef, &Decoder::opcode_11101111 }, // UOP_LDRPC_POSTINC (32-bit)
- { 0xff, 0xf5, &Decoder::opcode_11110101 }, // UOP_VPOP (32-bit)
- { 0xff, 0xf6, &Decoder::opcode_11110110 }, // UOP_VPOP (32-bit)
- { 0xff, 0xf7, &Decoder::opcode_11110111 }, // UOP_STACK_RESTORE (16-bit)
- { 0xff, 0xf8, &Decoder::opcode_11111000 }, // UOP_STACK_RESTORE (16-bit)
- { 0xff, 0xf9, &Decoder::opcode_11111001 }, // UOP_STACK_RESTORE (32-bit)
- { 0xff, 0xfa, &Decoder::opcode_11111010 }, // UOP_STACK_RESTORE (32-bit)
- { 0xff, 0xfb, &Decoder::opcode_11111011 }, // UOP_NOP (16-bit)
- { 0xff, 0xfc, &Decoder::opcode_11111100 }, // UOP_NOP (32-bit)
- { 0xff, 0xfd, &Decoder::opcode_11111101 }, // UOP_NOP (16-bit) / END
- { 0xff, 0xfe, &Decoder::opcode_11111110 }, // UOP_NOP (32-bit) / END
- { 0xff, 0xff, &Decoder::opcode_11111111 }, // UOP_END
- };
- void Decoder::printRegisters(const std::pair<uint16_t, uint32_t> &RegisterMask) {
- static const char * const GPRRegisterNames[16] = {
- "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7", "r8", "r9", "r10",
- "r11", "ip", "sp", "lr", "pc",
- };
- const uint16_t GPRMask = std::get<0>(RegisterMask);
- const uint16_t VFPMask = std::get<1>(RegisterMask);
- OS << '{';
- bool Comma = false;
- for (unsigned RI = 0, RE = 11; RI < RE; ++RI) {
- if (GPRMask & (1 << RI)) {
- if (Comma)
- OS << ", ";
- OS << GPRRegisterNames[RI];
- Comma = true;
- }
- }
- for (unsigned RI = 0, RE = 32; RI < RE; ++RI) {
- if (VFPMask & (1 << RI)) {
- if (Comma)
- OS << ", ";
- OS << "d" << unsigned(RI);
- Comma = true;
- }
- }
- for (unsigned RI = 11, RE = 16; RI < RE; ++RI) {
- if (GPRMask & (1 << RI)) {
- if (Comma)
- OS << ", ";
- OS << GPRRegisterNames[RI];
- Comma = true;
- }
- }
- OS << '}';
- }
- ErrorOr<object::SectionRef>
- Decoder::getSectionContaining(const COFFObjectFile &COFF, uint64_t VA) {
- for (const auto &Section : COFF.sections()) {
- uint64_t Address = Section.getAddress();
- uint64_t Size = Section.getSize();
- if (VA >= Address && (VA - Address) <= Size)
- return Section;
- }
- return readobj_error::unknown_symbol;
- }
- ErrorOr<object::SymbolRef> Decoder::getSymbol(const COFFObjectFile &COFF,
- uint64_t VA, bool FunctionOnly) {
- for (const auto &Symbol : COFF.symbols()) {
- if (FunctionOnly && Symbol.getType() != SymbolRef::ST_Function)
- continue;
- ErrorOr<uint64_t> Address = Symbol.getAddress();
- if (std::error_code EC = Address.getError())
- return EC;
- if (*Address == VA)
- return Symbol;
- }
- return readobj_error::unknown_symbol;
- }
- ErrorOr<SymbolRef> Decoder::getRelocatedSymbol(const COFFObjectFile &,
- const SectionRef &Section,
- uint64_t Offset) {
- for (const auto &Relocation : Section.relocations()) {
- uint64_t RelocationOffset = Relocation.getOffset();
- if (RelocationOffset == Offset)
- return *Relocation.getSymbol();
- }
- return readobj_error::unknown_symbol;
- }
- bool Decoder::opcode_0xxxxxxx(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- uint8_t Imm = OC[Offset] & 0x7f;
- SW.startLine() << format("0x%02x ; %s sp, #(%u * 4)\n",
- OC[Offset],
- static_cast<const char *>(Prologue ? "sub" : "add"),
- Imm);
- ++Offset;
- return false;
- }
- bool Decoder::opcode_10Lxxxxx(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- unsigned Link = (OC[Offset] & 0x20) >> 5;
- uint16_t RegisterMask = (Link << (Prologue ? 14 : 15))
- | ((OC[Offset + 0] & 0x1f) << 8)
- | ((OC[Offset + 1] & 0xff) << 0);
- assert((~RegisterMask & (1 << 13)) && "sp must not be set");
- assert((~RegisterMask & (1 << (Prologue ? 15 : 14))) && "pc must not be set");
- SW.startLine() << format("0x%02x 0x%02x ; %s.w ",
- OC[Offset + 0], OC[Offset + 1],
- Prologue ? "push" : "pop");
- printRegisters(std::make_pair(RegisterMask, 0));
- OS << '\n';
- ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_1100xxxx(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- if (Prologue)
- SW.startLine() << format("0x%02x ; mov r%u, sp\n",
- OC[Offset], OC[Offset] & 0xf);
- else
- SW.startLine() << format("0x%02x ; mov sp, r%u\n",
- OC[Offset], OC[Offset] & 0xf);
- ++Offset;
- return false;
- }
- bool Decoder::opcode_11010Lxx(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- unsigned Link = (OC[Offset] & 0x4) >> 3;
- unsigned Count = (OC[Offset] & 0x3);
- uint16_t GPRMask = (Link << (Prologue ? 14 : 15))
- | (((1 << (Count + 1)) - 1) << 4);
- SW.startLine() << format("0x%02x ; %s ", OC[Offset],
- Prologue ? "push" : "pop");
- printRegisters(std::make_pair(GPRMask, 0));
- OS << '\n';
- ++Offset;
- return false;
- }
- bool Decoder::opcode_11011Lxx(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- unsigned Link = (OC[Offset] & 0x4) >> 2;
- unsigned Count = (OC[Offset] & 0x3) + 4;
- uint16_t GPRMask = (Link << (Prologue ? 14 : 15))
- | (((1 << (Count + 1)) - 1) << 4);
- SW.startLine() << format("0x%02x ; %s.w ", OC[Offset],
- Prologue ? "push" : "pop");
- printRegisters(std::make_pair(GPRMask, 0));
- OS << '\n';
- ++Offset;
- return false;
- }
- bool Decoder::opcode_11100xxx(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- unsigned High = (OC[Offset] & 0x7);
- uint32_t VFPMask = (((1 << (High + 1)) - 1) << 8);
- SW.startLine() << format("0x%02x ; %s ", OC[Offset],
- Prologue ? "vpush" : "vpop");
- printRegisters(std::make_pair(0, VFPMask));
- OS << '\n';
- ++Offset;
- return false;
- }
- bool Decoder::opcode_111010xx(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- uint16_t Imm = ((OC[Offset + 0] & 0x03) << 8) | ((OC[Offset + 1] & 0xff) << 0);
- SW.startLine() << format("0x%02x 0x%02x ; %s.w sp, #(%u * 4)\n",
- OC[Offset + 0], OC[Offset + 1],
- static_cast<const char *>(Prologue ? "sub" : "add"),
- Imm);
- ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_1110110L(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- uint8_t GPRMask = ((OC[Offset + 0] & 0x01) << (Prologue ? 14 : 15))
- | ((OC[Offset + 1] & 0xff) << 0);
- SW.startLine() << format("0x%02x 0x%02x ; %s ", OC[Offset + 0],
- OC[Offset + 1], Prologue ? "push" : "pop");
- printRegisters(std::make_pair(GPRMask, 0));
- OS << '\n';
- ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11101110(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- assert(!Prologue && "may not be used in prologue");
- if (OC[Offset + 1] & 0xf0)
- SW.startLine() << format("0x%02x 0x%02x ; reserved\n",
- OC[Offset + 0], OC[Offset + 1]);
- else
- SW.startLine()
- << format("0x%02x 0x%02x ; microsoft-specific (type: %u)\n",
- OC[Offset + 0], OC[Offset + 1], OC[Offset + 1] & 0x0f);
- ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11101111(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- assert(!Prologue && "may not be used in prologue");
- if (OC[Offset + 1] & 0xf0)
- SW.startLine() << format("0x%02x 0x%02x ; reserved\n",
- OC[Offset + 0], OC[Offset + 1]);
- else
- SW.startLine()
- << format("0x%02x 0x%02x ; ldr.w lr, [sp], #%u\n",
- OC[Offset + 0], OC[Offset + 1], OC[Offset + 1] << 2);
- ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11110101(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- unsigned Start = (OC[Offset + 1] & 0xf0) >> 4;
- unsigned End = (OC[Offset + 1] & 0x0f) >> 0;
- uint32_t VFPMask = ((1 << (End - Start)) - 1) << Start;
- SW.startLine() << format("0x%02x 0x%02x ; %s ", OC[Offset + 0],
- OC[Offset + 1], Prologue ? "vpush" : "vpop");
- printRegisters(std::make_pair(0, VFPMask));
- OS << '\n';
- ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11110110(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- unsigned Start = (OC[Offset + 1] & 0xf0) >> 4;
- unsigned End = (OC[Offset + 1] & 0x0f) >> 0;
- uint32_t VFPMask = ((1 << (End - Start)) - 1) << 16;
- SW.startLine() << format("0x%02x 0x%02x ; %s ", OC[Offset + 0],
- OC[Offset + 1], Prologue ? "vpush" : "vpop");
- printRegisters(std::make_pair(0, VFPMask));
- OS << '\n';
- ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11110111(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- uint32_t Imm = (OC[Offset + 1] << 8) | (OC[Offset + 2] << 0);
- SW.startLine() << format("0x%02x 0x%02x 0x%02x ; %s sp, sp, #(%u * 4)\n",
- OC[Offset + 0], OC[Offset + 1], OC[Offset + 2],
- static_cast<const char *>(Prologue ? "sub" : "add"),
- Imm);
- ++Offset, ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11111000(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- uint32_t Imm = (OC[Offset + 1] << 16)
- | (OC[Offset + 2] << 8)
- | (OC[Offset + 3] << 0);
- SW.startLine()
- << format("0x%02x 0x%02x 0x%02x 0x%02x ; %s sp, sp, #(%u * 4)\n",
- OC[Offset + 0], OC[Offset + 1], OC[Offset + 2], OC[Offset + 3],
- static_cast<const char *>(Prologue ? "sub" : "add"), Imm);
- ++Offset, ++Offset, ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11111001(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- uint32_t Imm = (OC[Offset + 1] << 8) | (OC[Offset + 2] << 0);
- SW.startLine()
- << format("0x%02x 0x%02x 0x%02x ; %s.w sp, sp, #(%u * 4)\n",
- OC[Offset + 0], OC[Offset + 1], OC[Offset + 2],
- static_cast<const char *>(Prologue ? "sub" : "add"), Imm);
- ++Offset, ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11111010(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- uint32_t Imm = (OC[Offset + 1] << 16)
- | (OC[Offset + 2] << 8)
- | (OC[Offset + 3] << 0);
- SW.startLine()
- << format("0x%02x 0x%02x 0x%02x 0x%02x ; %s.w sp, sp, #(%u * 4)\n",
- OC[Offset + 0], OC[Offset + 1], OC[Offset + 2], OC[Offset + 3],
- static_cast<const char *>(Prologue ? "sub" : "add"), Imm);
- ++Offset, ++Offset, ++Offset, ++Offset;
- return false;
- }
- bool Decoder::opcode_11111011(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- SW.startLine() << format("0x%02x ; nop\n", OC[Offset]);
- ++Offset;
- return false;
- }
- bool Decoder::opcode_11111100(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- SW.startLine() << format("0x%02x ; nop.w\n", OC[Offset]);
- ++Offset;
- return false;
- }
- bool Decoder::opcode_11111101(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- SW.startLine() << format("0x%02x ; b\n", OC[Offset]);
- ++Offset;
- return true;
- }
- bool Decoder::opcode_11111110(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- SW.startLine() << format("0x%02x ; b.w\n", OC[Offset]);
- ++Offset;
- return true;
- }
- bool Decoder::opcode_11111111(const uint8_t *OC, unsigned &Offset,
- unsigned Length, bool Prologue) {
- ++Offset;
- return true;
- }
- void Decoder::decodeOpcodes(ArrayRef<uint8_t> Opcodes, unsigned Offset,
- bool Prologue) {
- assert((!Prologue || Offset == 0) && "prologue should always use offset 0");
- bool Terminated = false;
- for (unsigned OI = Offset, OE = Opcodes.size(); !Terminated && OI < OE; ) {
- for (unsigned DI = 0;; ++DI) {
- if ((Opcodes[OI] & Ring[DI].Mask) == Ring[DI].Value) {
- Terminated = (this->*Ring[DI].Routine)(Opcodes.data(), OI, 0, Prologue);
- break;
- }
- assert(DI < array_lengthof(Ring) && "unhandled opcode");
- }
- }
- }
- bool Decoder::dumpXDataRecord(const COFFObjectFile &COFF,
- const SectionRef &Section,
- uint64_t FunctionAddress, uint64_t VA) {
- ArrayRef<uint8_t> Contents;
- if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
- return false;
- uint64_t SectionVA = Section.getAddress();
- uint64_t Offset = VA - SectionVA;
- const ulittle32_t *Data =
- reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset);
- const ExceptionDataRecord XData(Data);
- DictScope XRS(SW, "ExceptionData");
- SW.printNumber("FunctionLength", XData.FunctionLength() << 1);
- SW.printNumber("Version", XData.Vers());
- SW.printBoolean("ExceptionData", XData.X());
- SW.printBoolean("EpiloguePacked", XData.E());
- SW.printBoolean("Fragment", XData.F());
- SW.printNumber(XData.E() ? "EpilogueOffset" : "EpilogueScopes",
- XData.EpilogueCount());
- SW.printNumber("ByteCodeLength",
- static_cast<uint64_t>(XData.CodeWords() * sizeof(uint32_t)));
- if (XData.E()) {
- ArrayRef<uint8_t> UC = XData.UnwindByteCode();
- if (!XData.F()) {
- ListScope PS(SW, "Prologue");
- decodeOpcodes(UC, 0, /*Prologue=*/true);
- }
- if (XData.EpilogueCount()) {
- ListScope ES(SW, "Epilogue");
- decodeOpcodes(UC, XData.EpilogueCount(), /*Prologue=*/false);
- }
- } else {
- ArrayRef<ulittle32_t> EpilogueScopes = XData.EpilogueScopes();
- ListScope ESS(SW, "EpilogueScopes");
- for (const EpilogueScope ES : EpilogueScopes) {
- DictScope ESES(SW, "EpilogueScope");
- SW.printNumber("StartOffset", ES.EpilogueStartOffset());
- SW.printNumber("Condition", ES.Condition());
- SW.printNumber("EpilogueStartIndex", ES.EpilogueStartIndex());
- ListScope Opcodes(SW, "Opcodes");
- decodeOpcodes(XData.UnwindByteCode(), ES.EpilogueStartIndex(),
- /*Prologue=*/false);
- }
- }
- if (XData.X()) {
- const uint32_t Address = XData.ExceptionHandlerRVA();
- const uint32_t Parameter = XData.ExceptionHandlerParameter();
- const size_t HandlerOffset = HeaderWords(XData)
- + (XData.E() ? 0 : XData.EpilogueCount())
- + XData.CodeWords();
- ErrorOr<SymbolRef> Symbol =
- getRelocatedSymbol(COFF, Section, HandlerOffset * sizeof(uint32_t));
- if (!Symbol)
- Symbol = getSymbol(COFF, Address, /*FunctionOnly=*/true);
- ErrorOr<StringRef> Name = Symbol->getName();
- if (std::error_code EC = Name.getError())
- report_fatal_error(EC.message());
- ListScope EHS(SW, "ExceptionHandler");
- SW.printString("Routine", formatSymbol(*Name, Address));
- SW.printHex("Parameter", Parameter);
- }
- return true;
- }
- bool Decoder::dumpUnpackedEntry(const COFFObjectFile &COFF,
- const SectionRef Section, uint64_t Offset,
- unsigned Index, const RuntimeFunction &RF) {
- assert(RF.Flag() == RuntimeFunctionFlag::RFF_Unpacked &&
- "packed entry cannot be treated as an unpacked entry");
- ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
- if (!Function)
- Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
- ErrorOr<SymbolRef> XDataRecord = getRelocatedSymbol(COFF, Section, Offset + 4);
- if (!XDataRecord)
- XDataRecord = getSymbol(COFF, RF.ExceptionInformationRVA());
- if (!RF.BeginAddress && !Function)
- return false;
- if (!RF.UnwindData && !XDataRecord)
- return false;
- StringRef FunctionName;
- uint64_t FunctionAddress;
- if (Function) {
- ErrorOr<StringRef> FunctionNameOrErr = Function->getName();
- if (std::error_code EC = FunctionNameOrErr.getError())
- report_fatal_error(EC.message());
- FunctionName = *FunctionNameOrErr;
- ErrorOr<uint64_t> FunctionAddressOrErr = Function->getAddress();
- if (std::error_code EC = FunctionAddressOrErr.getError())
- report_fatal_error(EC.message());
- FunctionAddress = *FunctionAddressOrErr;
- } else {
- const pe32_header *PEHeader;
- if (COFF.getPE32Header(PEHeader))
- return false;
- FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
- }
- SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
- if (XDataRecord) {
- ErrorOr<StringRef> Name = XDataRecord->getName();
- if (std::error_code EC = Name.getError())
- report_fatal_error(EC.message());
- ErrorOr<uint64_t> AddressOrErr = XDataRecord->getAddress();
- if (std::error_code EC = AddressOrErr.getError())
- report_fatal_error(EC.message());
- uint64_t Address = *AddressOrErr;
- SW.printString("ExceptionRecord", formatSymbol(*Name, Address));
- section_iterator SI = COFF.section_end();
- if (XDataRecord->getSection(SI))
- return false;
- return dumpXDataRecord(COFF, *SI, FunctionAddress, Address);
- } else {
- const pe32_header *PEHeader;
- if (COFF.getPE32Header(PEHeader))
- return false;
- uint64_t Address = PEHeader->ImageBase + RF.ExceptionInformationRVA();
- SW.printString("ExceptionRecord", formatSymbol("", Address));
- ErrorOr<SectionRef> Section =
- getSectionContaining(COFF, RF.ExceptionInformationRVA());
- if (!Section)
- return false;
- return dumpXDataRecord(COFF, *Section, FunctionAddress,
- RF.ExceptionInformationRVA());
- }
- }
- bool Decoder::dumpPackedEntry(const object::COFFObjectFile &COFF,
- const SectionRef Section, uint64_t Offset,
- unsigned Index, const RuntimeFunction &RF) {
- assert((RF.Flag() == RuntimeFunctionFlag::RFF_Packed ||
- RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment) &&
- "unpacked entry cannot be treated as a packed entry");
- ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
- if (!Function)
- Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
- StringRef FunctionName;
- uint64_t FunctionAddress;
- if (Function) {
- ErrorOr<StringRef> FunctionNameOrErr = Function->getName();
- if (std::error_code EC = FunctionNameOrErr.getError())
- report_fatal_error(EC.message());
- FunctionName = *FunctionNameOrErr;
- ErrorOr<uint64_t> FunctionAddressOrErr = Function->getAddress();
- FunctionAddress = *FunctionAddressOrErr;
- } else {
- const pe32_header *PEHeader;
- if (COFF.getPE32Header(PEHeader))
- return false;
- FunctionAddress = PEHeader->ImageBase + RF.BeginAddress;
- }
- SW.printString("Function", formatSymbol(FunctionName, FunctionAddress));
- SW.printBoolean("Fragment",
- RF.Flag() == RuntimeFunctionFlag::RFF_PackedFragment);
- SW.printNumber("FunctionLength", RF.FunctionLength());
- SW.startLine() << "ReturnType: " << RF.Ret() << '\n';
- SW.printBoolean("HomedParameters", RF.H());
- SW.startLine() << "SavedRegisters: ";
- printRegisters(SavedRegisterMask(RF));
- OS << '\n';
- SW.printNumber("StackAdjustment", StackAdjustment(RF) << 2);
- return true;
- }
- bool Decoder::dumpProcedureDataEntry(const COFFObjectFile &COFF,
- const SectionRef Section, unsigned Index,
- ArrayRef<uint8_t> Contents) {
- uint64_t Offset = PDataEntrySize * Index;
- const ulittle32_t *Data =
- reinterpret_cast<const ulittle32_t *>(Contents.data() + Offset);
- const RuntimeFunction Entry(Data);
- DictScope RFS(SW, "RuntimeFunction");
- if (Entry.Flag() == RuntimeFunctionFlag::RFF_Unpacked)
- return dumpUnpackedEntry(COFF, Section, Offset, Index, Entry);
- return dumpPackedEntry(COFF, Section, Offset, Index, Entry);
- }
- void Decoder::dumpProcedureData(const COFFObjectFile &COFF,
- const SectionRef Section) {
- ArrayRef<uint8_t> Contents;
- if (COFF.getSectionContents(COFF.getCOFFSection(Section), Contents))
- return;
- if (Contents.size() % PDataEntrySize) {
- errs() << ".pdata content is not " << PDataEntrySize << "-byte aligned\n";
- return;
- }
- for (unsigned EI = 0, EE = Contents.size() / PDataEntrySize; EI < EE; ++EI)
- if (!dumpProcedureDataEntry(COFF, Section, EI, Contents))
- break;
- }
- std::error_code Decoder::dumpProcedureData(const COFFObjectFile &COFF) {
- for (const auto &Section : COFF.sections()) {
- StringRef SectionName;
- if (std::error_code EC =
- COFF.getSectionName(COFF.getCOFFSection(Section), SectionName))
- return EC;
- if (SectionName.startswith(".pdata"))
- dumpProcedureData(COFF, Section);
- }
- return std::error_code();
- }
- }
- }
- }
|