Searched refs:NVPTXSection (Results 1 - 3 of 3) sorted by relevance
/external/llvm/lib/Target/NVPTX/ |
H A D | NVPTXSection.h | 1 //===- NVPTXSection.h - NVPTX-specific section representation -*- C++ -*-===// 10 // This file declares the NVPTXSection class. 24 class NVPTXSection final : public MCSection { 27 NVPTXSection(SectionVariant V, SectionKind K) : MCSection(V, K, nullptr) {} function in class:llvm::final 28 ~NVPTXSection() {}
|
H A D | NVPTXTargetObjectFile.h | 13 #include "NVPTXSection.h" 50 TextSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getText()); 51 DataSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getData()); 52 BSSSection = new NVPTXSection(MCSection::SV_ELF, SectionKind::getBSS()); 54 new NVPTXSection(MCSection::SV_ELF, SectionKind::getReadOnly()); 57 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); 59 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); 61 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); 63 new NVPTXSection(MCSection::SV_ELF, SectionKind::getMetadata()); 65 new NVPTXSection(MCSectio [all...] |
H A D | NVPTXISelLowering.cpp | 4540 // Pin NVPTXSection's and NVPTXTargetObjectFile's vtables to this file. 4541 void NVPTXSection::anchor() {} 4544 delete static_cast<NVPTXSection *>(TextSection); 4545 delete static_cast<NVPTXSection *>(DataSection); 4546 delete static_cast<NVPTXSection *>(BSSSection); 4547 delete static_cast<NVPTXSection *>(ReadOnlySection); 4549 delete static_cast<NVPTXSection *>(StaticCtorSection); 4550 delete static_cast<NVPTXSection *>(StaticDtorSection); 4551 delete static_cast<NVPTXSection *>(LSDASection); 4552 delete static_cast<NVPTXSection *>(EHFrameSectio [all...] |
Completed in 103 milliseconds