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 | 24 class NVPTXSection final : public MCSection { 27 NVPTXSection(SectionVariant V, SectionKind K) : MCSection(V, K, nullptr) {} in NVPTXSection() function 28 ~NVPTXSection() {} in ~NVPTXSection()
|
D | NVPTXISelLowering.cpp | 4541 void NVPTXSection::anchor() {} in anchor() 4544 delete static_cast<NVPTXSection *>(TextSection); in ~NVPTXTargetObjectFile() 4545 delete static_cast<NVPTXSection *>(DataSection); in ~NVPTXTargetObjectFile() 4546 delete static_cast<NVPTXSection *>(BSSSection); in ~NVPTXTargetObjectFile() 4547 delete static_cast<NVPTXSection *>(ReadOnlySection); in ~NVPTXTargetObjectFile() 4549 delete static_cast<NVPTXSection *>(StaticCtorSection); in ~NVPTXTargetObjectFile() 4550 delete static_cast<NVPTXSection *>(StaticDtorSection); in ~NVPTXTargetObjectFile() 4551 delete static_cast<NVPTXSection *>(LSDASection); in ~NVPTXTargetObjectFile() 4552 delete static_cast<NVPTXSection *>(EHFrameSection); in ~NVPTXTargetObjectFile() 4553 delete static_cast<NVPTXSection *>(DwarfAbbrevSection); in ~NVPTXTargetObjectFile() [all …]
|