Searched refs:NVPTXSection (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXTargetObjectFile.h | 50 TextSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getText()); in Initialize() 51 DataSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getData()); in Initialize() 52 BSSSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getBSS()); in Initialize() 54 new NVPTXSection(MCSection::SV_ELF, SectionKind::getReadOnly()); in Initialize() 57 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 59 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 61 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 63 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 65 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() 67 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); in Initialize() [all …]
|
D | NVPTXSection.h | 25 class NVPTXSection final : public MCSection { 28 NVPTXSection(SectionVariant V, SectionKind K) : MCSection(V, K, nullptr) {} in NVPTXSection() function 29 ~NVPTXSection() {} in ~NVPTXSection()
|
D | NVPTXISelLowering.cpp | 4530 void NVPTXSection::anchor() {} in anchor() 4533 delete static_cast<NVPTXSection *>(TextSection); in ~NVPTXTargetObjectFile() 4534 delete static_cast<NVPTXSection *>(DataSection); in ~NVPTXTargetObjectFile() 4535 delete static_cast<NVPTXSection *>(BSSSection); in ~NVPTXTargetObjectFile() 4536 delete static_cast<NVPTXSection *>(ReadOnlySection); in ~NVPTXTargetObjectFile() 4538 delete static_cast<NVPTXSection *>(StaticCtorSection); in ~NVPTXTargetObjectFile() 4539 delete static_cast<NVPTXSection *>(StaticDtorSection); in ~NVPTXTargetObjectFile() 4540 delete static_cast<NVPTXSection *>(LSDASection); in ~NVPTXTargetObjectFile() 4541 delete static_cast<NVPTXSection *>(EHFrameSection); in ~NVPTXTargetObjectFile() 4542 delete static_cast<NVPTXSection *>(DwarfAbbrevSection); in ~NVPTXTargetObjectFile() [all …]
|