Home
last modified time | relevance | path

Searched refs:LSDASection (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/llvm/lib/MC/
H A DMCObjectFileInfo.cpp200 LSDASection = Ctx->getMachOSection("__TEXT", "__gcc_except_tab", 0, in initMachOMCObjectFileInfo()
424 LSDASection = Ctx->getELFSection(".gcc_except_table", ELF::SHT_PROGBITS, in initELFMCObjectFileInfo()
581 LSDASection = nullptr; in initCOFFMCObjectFileInfo()
583 LSDASection = Ctx->getCOFFSection(".gcc_except_table", in initCOFFMCObjectFileInfo()
913 LSDASection = Ctx->getWasmSection(".rodata.gcc_except_table", in initWasmMCObjectFileInfo()
965 LSDASection = Ctx->getXCOFFSection( in initXCOFFMCObjectFileInfo()
/llvm-project-15.0.7/llvm/lib/Target/ARM/
H A DARMTargetObjectFile.cpp41 LSDASection = nullptr; in Initialize()
/llvm-project-15.0.7/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp417 MCSection *LSDASection = Asm->getObjFileLowering().getSectionForLSDA( in emitExceptionTable() local
459 if (LSDASection) in emitExceptionTable()
460 Asm->OutStreamer->switchSection(LSDASection); in emitExceptionTable()
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h72 MCSection *LSDASection = nullptr; variable
271 MCSection *getLSDASection() const { return LSDASection; } in getLSDASection()
/llvm-project-15.0.7/llvm/include/llvm/Target/
H A DTargetLoweringObjectFile.h136 return LSDASection; in getSectionForLSDA()
/llvm-project-15.0.7/bolt/include/bolt/Rewrite/
H A DRewriteInstance.h526 ErrorOr<BinarySection &> LSDASection{std::errc::bad_address};
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp942 if (!LSDASection || (!F.hasComdat() && !TM.getFunctionSections())) in getSectionForLSDA()
943 return LSDASection; in getSectionForLSDA()
945 const auto *LSDA = cast<MCSectionELF>(LSDASection); in getSectionForLSDA()
2570 auto *LSDA = cast<MCSectionXCOFF>(LSDASection); in getSectionForLSDA()
/llvm-project-15.0.7/bolt/lib/Rewrite/
H A DRewriteInstance.cpp1554 return ArrayRef<uint8_t>(LSDASection->getData(), in getLSDAData()
1555 LSDASection->getContents().size()); in getLSDAData()
1558 uint64_t RewriteInstance::getLSDAAddress() { return LSDASection->getAddress(); } in getLSDAAddress()
1596 LSDASection = BC->getUniqueSectionByName(".gcc_except_table"); in readSpecialSections()