1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580
|
/*========================== begin_copyright_notice ============================
Copyright (C) 2017-2021 Intel Corporation
SPDX-License-Identifier: MIT
============================= end_copyright_notice ===========================*/
/*========================== begin_copyright_notice ============================
This file is distributed under the University of Illinois Open Source License.
See LICENSE.TXT for details.
============================= end_copyright_notice ===========================*/
// clang-format off
#include "common/LLVMWarningsPush.hpp"
#include "llvm/BinaryFormat/ELF.h"
#include "llvm/IR/DIBuilder.h"
#include "llvm/IR/Module.h"
#include "llvm/IR/Verifier.h"
#include "llvm/MC/MCDwarf.h"
#include "llvm/MC/MCSymbol.h"
#include "common/LLVMWarningsPop.hpp"
// clang-format on
#include "DwarfDebug.hpp"
#include "StreamEmitter.hpp"
#include "VISADebugEmitter.hpp"
#include "VISAModule.hpp"
#include "VISADebugInfo.hpp"
#include "Probe/Assertion.h"
#include "secure_mem.h"
#include "CLElfLib/CLElfTypes.h"
#define DEBUG_TYPE "dwarfdebug"
using namespace llvm;
using namespace IGC;
using namespace CLElfLib; // ElfReader related typedefs
IDebugEmitter *IDebugEmitter::Create() { return new DebugEmitter(); }
void IDebugEmitter::Release(IDebugEmitter *pDebugEmitter) {
delete pDebugEmitter;
}
DebugEmitter::DebugEmitter() : IDebugEmitter(), m_outStream(m_str) {}
DebugEmitter::~DebugEmitter() { Reset(); }
void DebugEmitter::Reset() {
m_str.clear();
m_pVISAModule = nullptr;
m_pStreamEmitter.reset();
m_pDwarfDebug.reset();
m_initialized = false;
}
void DebugEmitter::Initialize(std::unique_ptr<VISAModule> VM,
const DebugEmitterOpts &Opts) {
IGC_ASSERT_MESSAGE(false == m_initialized,
"DebugEmitter is already initialized!");
// IGC_ASSERT(!doneOnce);
m_initialized = true;
m_pVISAModule = VM.get();
m_debugEnabled = Opts.DebugEnabled;
// VISA module will be initialized even when debugger is disabled.
// Its overhead is minimum and it will be used in debug mode to
// assertion test on calling DebugEmitter in the right order.
toFree.push_back(std::move(VM));
if (!m_debugEnabled) {
return;
}
const auto &dataLayout = m_pVISAModule->GetDataLayout();
m_pStreamEmitter = std::make_unique<StreamEmitter>(
m_outStream, dataLayout, m_pVISAModule->GetTargetTriple(), Opts);
m_pDwarfDebug =
std::make_unique<DwarfDebug>(m_pStreamEmitter.get(), m_pVISAModule);
registerVISA(m_pVISAModule);
}
void DebugEmitter::processCurrentFunction(bool finalize,
const IGC::VISAObjectDebugInfo &VDI) {
auto EmitIpLabel = [&](unsigned int ip) {
// Emit label before %ip
if (m_pStreamEmitter->GetEmitterSettings().EnableRelocation) {
auto instLabel = m_pDwarfDebug->GetLabelBeforeIp(ip);
m_pStreamEmitter->EmitLabel(instLabel);
}
};
m_pVISAModule->rebuildVISAIndexes();
// Emit src line mapping directly instead of
// relying on dbgmerge. elf generated will have
// text section and debug_line sections populated.
VISAObjectDebugInfo::GenToVisaIndexes GenISAToVISAIndex;
const auto &GenToByteSizeLUT = VDI.getGenToSizeInBytesLUT();
unsigned int subEnd = m_pVISAModule->GetCurrentVISAId();
unsigned int prevLastGenOff = lastGenOff;
m_pDwarfDebug->lowPc = lastGenOff;
LLVM_DEBUG(dbgs() << "[DwarfDebug][IP-RANGE] initial bounds info: "
<< "subEnd = " << subEnd << "(VI), "
<< "lastGenOff = 0x" << llvm::Twine::utohexstr(lastGenOff)
<< "\n");
// SIMD width
m_pDwarfDebug->simdWidth = m_pVISAModule->GetSIMDSize();
if (VDI.getSubroutines().empty()) {
// TODO: we copy large object here. do we really need it?
GenISAToVISAIndex = VDI.getGenToVisaIndexLUT();
if (GenISAToVISAIndex.size() > 0)
lastGenOff = GenISAToVISAIndex.back().GenOffset;
m_pDwarfDebug->lowPc = VDI.getRelocOffset();
} else {
for (const auto &item : VDI.getGenToVisaIndexLUT()) {
if (item.GenOffset >= lastGenOff) {
if (item.VisaOffset <= subEnd || item.VisaOffset == 0xffffffff) {
GenISAToVISAIndex.push_back(item);
auto Size = GenToByteSizeLUT.lookup(item.GenOffset);
lastGenOff = item.GenOffset + Size;
continue;
}
if (item.VisaOffset > subEnd)
break;
}
}
}
LLVM_DEBUG(dbgs() << "[DwarfDebug][IP-RANGE] updated bounds info: "
<< "lastGenOff = 0x" << llvm::Twine::utohexstr(lastGenOff)
<< "\n");
LLVM_DEBUG(dbgs() << "[DwarfDebug][IP-RANGE] GenISAInstructions selected: "
<< GenISAToVISAIndex.size() << "\n");
auto genxISA = m_pVISAModule->getGenBinary();
DebugLoc prevSrcLoc = DebugLoc();
unsigned int pc = prevLastGenOff;
LLVM_DEBUG(dbgs() << "[DwarfDebug][IP-RANGE] updated bounds info: "
<< "pc = 0x" << llvm::Twine::utohexstr(pc) << "\n");
if (!GenISAToVISAIndex.empty()) {
IGC_ASSERT(GenISAToVISAIndex.rbegin()->GenOffset <= genxISA.size());
IGC_ASSERT(pc < genxISA.size());
IGC_ASSERT(GenISAToVISAIndex.begin()->GenOffset >= pc);
}
for (const auto &item : GenISAToVISAIndex) {
for (unsigned int i = pc; i != item.GenOffset; i++) {
EmitIpLabel(i);
m_pStreamEmitter->EmitInt8(genxISA[i]);
}
pc = item.GenOffset;
const auto &VisaIndexToInst = m_pVISAModule->getVisaIndexToInstLUT();
const auto &VisaIndexToVisaSizeIndex =
m_pVISAModule->getVisaIndexToVisaSizeIndexLUT();
auto InstIt = VisaIndexToInst.end();
auto SizeIndexIt = VisaIndexToVisaSizeIndex.find(item.VisaOffset);
if (SizeIndexIt != VisaIndexToVisaSizeIndex.end()) {
// Lookup all VISA instructions that may
// map to an llvm::Instruction. This is useful
// when an llvm::Instruction leads to multiple
// VISA instructions, and VISA optimizer
// optimizes some of those away. Src line
// mapping for all VISA instructions is the
// same. So lookup any one that still exists.
auto StartIdx = SizeIndexIt->second.VisaOffset;
auto NumVISAInsts = SizeIndexIt->second.VisaInstrNum;
// Loop till at least one VISA instruction
// is found.
for (unsigned int visaId = StartIdx; visaId != (StartIdx + NumVISAInsts);
visaId++) {
InstIt = VisaIndexToInst.find(visaId);
if (InstIt != VisaIndexToInst.end())
break;
}
}
if (InstIt == VisaIndexToInst.end())
continue;
if (!m_pVISAModule->IsExecutableInst(*InstIt->second))
continue;
const auto &loc = InstIt->second->getDebugLoc();
if (!loc || loc == prevSrcLoc)
continue;
const auto *scope = loc->getScope();
auto src = m_pDwarfDebug->getOrCreateSourceID(
scope->getFilename(), scope->getDirectory(),
m_pStreamEmitter->GetDwarfCompileUnitID());
unsigned int Flags = 0;
if (!m_pDwarfDebug->isStmtExists(loc.getLine(), loc.getInlinedAt(), true)) {
Flags |= DWARF2_FLAG_IS_STMT;
}
if (!m_pDwarfDebug->prologueEndExists(
loc.get()->getScope()->getSubprogram(), loc.getInlinedAt(), true)) {
Flags |= DWARF2_FLAG_PROLOGUE_END;
}
m_pStreamEmitter->EmitDwarfLocDirective(src, loc.getLine(), loc.getCol(),
Flags, 0, 0, scope->getFilename());
prevSrcLoc = loc;
}
if (finalize) {
size_t unpaddedSize = m_pVISAModule->getUnpaddedProgramSize();
IGC_ASSERT(unpaddedSize <= genxISA.size());
IGC_ASSERT((pc < genxISA.size() && pc < unpaddedSize) ||
pc == unpaddedSize);
for (unsigned int i = pc; i != unpaddedSize; i++) {
m_pStreamEmitter->EmitInt8(genxISA[i]);
lastGenOff++;
}
} else if (pc != lastGenOff) {
IGC_ASSERT(lastGenOff <= genxISA.size());
IGC_ASSERT((pc < genxISA.size() && pc < lastGenOff) || pc == lastGenOff);
// for subroutines
for (unsigned int i = pc; i != lastGenOff; i++) {
EmitIpLabel(i);
m_pStreamEmitter->EmitInt8(genxISA[i]);
}
}
m_pDwarfDebug->highPc = lastGenOff;
LLVM_DEBUG(dbgs() << "[DwarfDebug][IP-RANGE] updated bounds info: "
<< "high_pc = 0x"
<< llvm::Twine::utohexstr(m_pDwarfDebug->highPc) << "\n");
}
void DebugEmitter::SetDISPCache(DwarfDISubprogramCache *DISPCache) {
IGC_ASSERT(m_pDwarfDebug);
m_pDwarfDebug->setDISPCache(DISPCache);
}
std::vector<char> DebugEmitter::Finalize(bool Finalize,
const IGC::VISADebugInfo &VD) {
if (!m_debugEnabled) {
return {};
}
IGC_ASSERT_MESSAGE(m_pVISAModule,
"active visa object must be selected before finalization");
IGC_ASSERT(m_pDwarfDebug);
const auto &VisaDbgInfo = m_pVISAModule->getVisaObjectDI(VD);
m_pDwarfDebug->setVisaDbgInfo(VisaDbgInfo);
if (!doneOnce) {
m_pDwarfDebug->beginModule();
doneOnce = true;
}
const Function *pFunc = m_pVISAModule->GetEntryFunction();
// Collect debug information for given function.
m_pStreamEmitter->SwitchSection(m_pStreamEmitter->GetTextSection());
LLVM_DEBUG(dbgs() << "[DwarfDebug] beginFunction called for <"
<< pFunc->getName() << "> ---\n");
m_pDwarfDebug->beginFunction(pFunc, m_pVISAModule);
LLVM_DEBUG(dbgs() << "[DwarfDebug] beginFunction end ***\n");
processCurrentFunction(Finalize, VisaDbgInfo);
// Emit post-function debug information
LLVM_DEBUG(dbgs() << "[DwarfDebug] endFunction start ---\n");
m_pDwarfDebug->endFunction(pFunc);
LLVM_DEBUG(dbgs() << "[DwarfDebug] endFunction done ***\n");
LLVM_DEBUG(dbgs() << "Processed VISA Object:\n");
LLVM_DEBUG(m_pVISAModule->dump());
if (!Finalize) {
LLVM_DEBUG(dbgs() << "[DwarfDebug] non-finalized exit ***\n");
return {};
}
LLVM_DEBUG(dbgs() << "[DwarfDebug] starting finalization ---\n");
IGC_ASSERT(doneOnce);
// Finalize debug information.
m_pDwarfDebug->endModule();
m_pStreamEmitter->Finalize();
LLVM_DEBUG(dbgs() << "[DwarfDebug] finalized***\n");
// Add program header table to satisfy latest gdb
bool is64Bit = m_pVISAModule->getPointerSize() == 8;
unsigned int phtSize = sizeof(llvm::ELF::Elf32_Phdr);
if (is64Bit)
phtSize = sizeof(llvm::ELF::Elf64_Phdr);
const Function *PrimaryEntry = m_pDwarfDebug->GetPrimaryEntry();
std::string EntryNameWithDot = ("." + PrimaryEntry->getName()).str();
size_t ContentSize = m_str.size();
if (m_pStreamEmitter->GetEmitterSettings().ZeBinCompatible)
ContentSize += EntryNameWithDot.size();
size_t elfWithProgramHeaderSize = phtSize + ContentSize;
std::vector<char> Result(elfWithProgramHeaderSize);
if (!m_pStreamEmitter->GetEmitterSettings().ZeBinCompatible) {
// Text section remains with its standard name .text
std::copy(m_str.begin(), m_str.end(), Result.begin());
} else {
// Text section's name to be extended by a kernel name.
size_t endOfDotTextNameOffset = 0;
prepareElfForZeBinary(is64Bit, m_str.begin(), m_str.size(),
EntryNameWithDot.size(), &endOfDotTextNameOffset);
// First copy ELF binary from the beginning to the .text name (included)
// located in the .str.tab
std::copy(m_str.begin(), m_str.begin() + endOfDotTextNameOffset,
Result.begin());
// Next concatenate .text with a kernel name (a dot joining both names also
// added).
std::copy(EntryNameWithDot.begin(), EntryNameWithDot.end(),
Result.begin() + endOfDotTextNameOffset);
// Finally copy remaining part of ELF binary.
std::copy(m_str.begin() + endOfDotTextNameOffset + 1, m_str.end(),
Result.begin() + endOfDotTextNameOffset + 1 +
EntryNameWithDot.size());
}
writeProgramHeaderTable(is64Bit, Result.data(), ContentSize);
setElfType(is64Bit, Result.data());
m_errs = m_pStreamEmitter->getErrors();
Reset();
return std::move(Result);
}
void DebugEmitter::prepareElfForZeBinary(bool is64Bit, char *pElfBuffer,
size_t elfBufferSize,
size_t kernelNameWithDotSize,
size_t *pEndOfDotTextNameInStrtab) {
// ELF binary header contains 'SectionHeadersOffset' (e_shoff in ELF spec.),
// which is an offset to section headers placed one by one. A location (index)
// of the header with names (including section name) is stored in the ELF
// binary header at 'SectionNameTableIndex' (e_shstrndx). A section header
// under this index contains an offset to location of the String Table data,
// which may look as showed in the line below:
// .debug_abbrev .text.stackcall .debug_ranges .debug_str .debug_info
// ^NULL ^NULL ^NULL ^NULL ^NULL ^NULL
//
// Each section header contain 'Name' (sh_name) fields which is a byte offset
// to this data showed above. The String Table is a simple chunk of memory,
// where the names are placed one by one and separated by NULL (\0). String
// Table contains NULL (\0) also at the beginning (i.e. 'Name' equal 0 means
// no name).
if (is64Bit) {
SElf64Header *pElf64Header = (SElf64Header *)pElfBuffer;
// First simply validate ELF binary
IGC_ASSERT_MESSAGE(
pElf64Header && (pElf64Header->Identity[ID_IDX_MAGIC0] == ELF_MAG0) &&
(pElf64Header->Identity[ID_IDX_MAGIC1] == ELF_MAG1) &&
(pElf64Header->Identity[ID_IDX_MAGIC2] == ELF_MAG2) &&
(pElf64Header->Identity[ID_IDX_MAGIC3] == ELF_MAG3) &&
(pElf64Header->Identity[ID_IDX_CLASS] == EH_CLASS_64),
"ELF file header incorrect");
// Using the Section Name Table Index, calculate the offset to the String
// Table (.strtab) header.
size_t entrySize = pElf64Header->SectionHeaderEntrySize;
size_t nameSectionHeaderOffset =
(size_t)pElf64Header->SectionHeadersOffset +
(pElf64Header->SectionNameTableIndex * entrySize);
IGC_ASSERT_MESSAGE(pElf64Header->SectionNameTableIndex <
pElf64Header->NumSectionHeaderEntries,
"ELF header incorrect");
IGC_ASSERT_MESSAGE(nameSectionHeaderOffset < elfBufferSize,
"ELF header incorrect");
// Using the offset found above get a header of the String Table section
SElf64SectionHeader *pNamesSectionHeader =
(SElf64SectionHeader *)((char *)pElf64Header + nameSectionHeaderOffset);
SElf64SectionHeader *pSectionHeader = NULL;
size_t indexedSectionHeaderOffset = 0;
Elf64_Word textSectionHeaderName = 0;
char *pSectionName = NULL;
size_t sectionNameOffset = 0;
size_t textSectionNameOffset = 0;
// Scan section headers to find the Text section using simple section name
// comparison.
for (unsigned int elfSectionIdx = 1;
elfSectionIdx < pElf64Header->NumSectionHeaderEntries;
elfSectionIdx++) {
// Calculate a byte offset to the current section's header
indexedSectionHeaderOffset = (size_t)pElf64Header->SectionHeadersOffset +
(elfSectionIdx * entrySize);
// Get a header of the current section
pSectionHeader = (SElf64SectionHeader *)((char *)pElf64Header +
indexedSectionHeaderOffset);
// Using the byte offset from the current section's header, find the
// current section's name in the String Table.
sectionNameOffset =
(size_t)pNamesSectionHeader->DataOffset + pSectionHeader->Name;
pSectionName = (char *)pElf64Header + sectionNameOffset;
// Check if the Text section is found.
if (pSectionName && (strcmp(pSectionName, ".text") == 0)) {
textSectionHeaderName =
pSectionHeader->Name; // Remember for the next loop over sections.
textSectionNameOffset =
sectionNameOffset; // Remember for the next loop over sections.
pNamesSectionHeader->DataSize +=
kernelNameWithDotSize; //.strtab size increases not .text section
// Return an offset (from the beginning of ELF binary) to the first
// character after '.text'
*pEndOfDotTextNameInStrtab = sectionNameOffset + sizeof(".text") - 1;
break; // Text section found, its location saved.
}
}
// Update headers of ELF sections due to a longer Text section name
// (i.e. in strtab .text will be replaced with .text.kernelName).
// - change location of each section name located after the Text section
// name in .strtab
// - change data offset of each section located after the .strtab section
for (unsigned int elfSectionIdx = 1;
elfSectionIdx < pElf64Header->NumSectionHeaderEntries;
elfSectionIdx++) {
indexedSectionHeaderOffset = (size_t)pElf64Header->SectionHeadersOffset +
(elfSectionIdx * entrySize);
pSectionHeader = (SElf64SectionHeader *)((char *)pElf64Header +
indexedSectionHeaderOffset);
if (pSectionHeader->Name > textSectionHeaderName) {
pSectionHeader->Name += kernelNameWithDotSize;
}
if (pSectionHeader->DataOffset > textSectionNameOffset) {
pSectionHeader->DataOffset += kernelNameWithDotSize;
// This data offset update may be not enough if such a section contains
// elf global offsets (i.e. relative to the beginning of the elf
// binary). However, as long as .strtab is the last section in our ELF
// binary then there is no side-effects. If location of this section
// changes in the future, then a copy (or move) of this section content
// will be required. This future need must be verified if the assertion
// below hits (then assertion below must be changed based on results of
// such verification).
IGC_ASSERT(0);
}
}
if (pSectionHeader) {
// ELF binary header also must be updated to reflect offsets changes.
if (pElf64Header->SectionHeadersOffset > pSectionHeader->DataOffset) {
pElf64Header->SectionHeadersOffset += kernelNameWithDotSize;
}
if (pElf64Header->ProgramHeadersOffset > pSectionHeader->DataOffset) {
pElf64Header->ProgramHeadersOffset += kernelNameWithDotSize;
}
}
} else {
IGC_ASSERT_MESSAGE(is64Bit, "64-bit ELF file only supported");
}
}
void DebugEmitter::setElfType(bool is64Bit, void *pBuffer) {
// Set 1-step elf's e_type to ET_EXEC
if (!pBuffer)
return;
if (is64Bit) {
void *etypeOff =
((char *)pBuffer) + (offsetof(llvm::ELF::Elf64_Ehdr, e_type));
if (m_pStreamEmitter->GetEmitterSettings().EnableRelocation) {
*((llvm::ELF::Elf64_Half *)etypeOff) = llvm::ELF::ET_REL;
} else {
*((llvm::ELF::Elf64_Half *)etypeOff) = llvm::ELF::ET_EXEC;
}
} else {
void *etypeOff =
((char *)pBuffer) + (offsetof(llvm::ELF::Elf32_Ehdr, e_type));
if (m_pStreamEmitter->GetEmitterSettings().EnableRelocation) {
*((llvm::ELF::Elf32_Half *)etypeOff) = llvm::ELF::ET_REL;
} else {
*((llvm::ELF::Elf32_Half *)etypeOff) = llvm::ELF::ET_EXEC;
}
}
}
void DebugEmitter::writeProgramHeaderTable(bool is64Bit, void *pBuffer,
unsigned int size) {
// Write program header table at end of elf
if (is64Bit) {
llvm::ELF::Elf64_Phdr hdr;
hdr.p_type = llvm::ELF::PT_LOAD;
hdr.p_flags = 0;
hdr.p_offset = 0;
hdr.p_vaddr = 0;
hdr.p_paddr = 0;
hdr.p_filesz = size;
hdr.p_memsz = size;
hdr.p_align = 4;
void *phOffAddr =
((char *)pBuffer) + (offsetof(llvm::ELF::Elf64_Ehdr, e_phoff));
*(llvm::ELF::Elf64_Off *)(phOffAddr) = size;
((char *)pBuffer)[offsetof(llvm::ELF::Elf64_Ehdr, e_phentsize)] =
sizeof(llvm::ELF::Elf64_Phdr);
((char *)pBuffer)[offsetof(llvm::ELF::Elf64_Ehdr, e_phnum)] = 1;
memcpy_s((char *)pBuffer + size, sizeof(llvm::ELF::Elf64_Phdr), &hdr,
sizeof(hdr));
} else {
llvm::ELF::Elf32_Phdr hdr;
hdr.p_type = llvm::ELF::PT_LOAD;
hdr.p_offset = 0;
hdr.p_vaddr = 0;
hdr.p_paddr = 0;
hdr.p_filesz = size;
hdr.p_memsz = size;
hdr.p_flags = 0;
hdr.p_align = 4;
void *phOffAddr =
((char *)pBuffer) + (offsetof(llvm::ELF::Elf32_Ehdr, e_phoff));
*(llvm::ELF::Elf32_Off *)(phOffAddr) = size;
((char *)pBuffer)[offsetof(llvm::ELF::Elf32_Ehdr, e_phentsize)] =
sizeof(llvm::ELF::Elf32_Phdr);
((char *)pBuffer)[offsetof(llvm::ELF::Elf32_Ehdr, e_phnum)] = 1;
memcpy_s((char *)pBuffer + size, sizeof(llvm::ELF::Elf32_Phdr), &hdr,
sizeof(hdr));
}
}
void DebugEmitter::BeginInstruction(Instruction *pInst) {
BeginEncodingMark();
if (!m_debugEnabled) {
return;
}
m_pVISAModule->BeginInstruction(pInst);
}
void DebugEmitter::EndInstruction(Instruction *pInst) {
EndEncodingMark();
if (!m_debugEnabled) {
return;
}
m_pVISAModule->EndInstruction(pInst);
}
void DebugEmitter::BeginEncodingMark() { m_pVISAModule->BeginEncodingMark(); }
void DebugEmitter::EndEncodingMark() { m_pVISAModule->EndEncodingMark(); }
// TODO: do we really need it?
void DebugEmitter::registerVISA(IGC::VISAModule *VM) {
m_pDwarfDebug->registerVISA(VM);
}
void DebugEmitter::setCurrentVISA(IGC::VISAModule *VM) {
// TODO: add assertion statement to check that this module is registered/owned
m_pVISAModule = VM;
}
void DebugEmitter::resetModule(std::unique_ptr<IGC::VISAModule> VM) {
m_pVISAModule = VM.get();
toFree.push_back(std::move(VM));
}
const std::string &DebugEmitter::getErrors() const { return m_errs; }
|