Searched refs:SectionName (Results 1 - 25 of 96) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUMCAsmInfo.cpp48 bool AMDGPUMCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const {
49 return SectionName == ".hsatext" || SectionName == ".hsadata_global_agent" ||
50 SectionName == ".hsadata_global_program" ||
51 SectionName == ".hsarodata_readonly_agent" ||
52 MCAsmInfo::shouldOmitSectionDirective(SectionName);
H A DAMDGPUMCAsmInfo.h29 bool shouldOmitSectionDirective(StringRef SectionName) const override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFSection.h20 struct SectionName { struct in namespace:llvm
H A DDWARFListTable.h50 uint64_t *OffsetPtr, StringRef SectionName,
85 StringRef SectionName; member in class:llvm::DWARFListTableHeader
91 DWARFListTableHeader(StringRef SectionName, StringRef ListTypeString) argument
92 : SectionName(SectionName), ListTypeString(ListTypeString) {}
102 StringRef getSectionName() const { return SectionName; }
149 DWARFListTableBase(StringRef SectionName, StringRef HeaderString, argument
151 : Header(SectionName, ListTypeString), HeaderString(HeaderString) {}
220 StringRef SectionName,
238 SectionName
217 extract(DWARFDataExtractor Data, uint64_t HeaderOffset, uint64_t End, uint64_t *OffsetPtr, StringRef SectionName, StringRef ListTypeString) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetObjectFile.cpp35 StringRef SectionName = GO->getSection(); local
36 if (SectionName.startswith(".AMDGPU.comment."))
H A DAMDGPUPTNote.h23 const char SectionName[] = ".note"; member in namespace:AMDGPU::ElfNote
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSectionELF.h30 StringRef SectionName; member in class:llvm::final
56 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type),
63 void setSectionName(StringRef Name) { SectionName = Name; }
70 StringRef getSectionName() const { return SectionName; }
H A DMCSectionMachO.h26 char SectionName[16]; // Not necessarily null terminated! member in class:llvm::final
48 // SectionName is not necessarily null terminated!
49 if (SectionName[15])
50 return StringRef(SectionName, 16);
51 return StringRef(SectionName);
H A DMCSectionCOFF.h28 StringRef SectionName; member in class:llvm::final
57 : MCSection(SV_COFF, K, Begin), SectionName(Section),
69 StringRef getSectionName() const { return SectionName; }
H A DMCSectionWasm.h30 StringRef SectionName; member in class:llvm::final
51 : MCSection(SV_Wasm, K, Begin), SectionName(Section), UniqueID(UniqueID),
59 StringRef getSectionName() const { return SectionName; }
H A DMCContext.h197 std::string SectionName; member in struct:llvm::MCContext::ELFSectionKey
201 ELFSectionKey(StringRef SectionName, StringRef GroupName, argument
203 : SectionName(SectionName), GroupName(GroupName), UniqueID(UniqueID) {
207 if (SectionName != Other.SectionName)
208 return SectionName < Other.SectionName;
216 std::string SectionName; member in struct:llvm::MCContext::COFFSectionKey
221 COFFSectionKey(StringRef SectionName, StringRe argument
238 std::string SectionName; member in struct:llvm::MCContext::WasmSectionKey
242 WasmSectionKey(StringRef SectionName, StringRef GroupName, unsigned UniqueID) argument
257 std::string SectionName; member in struct:llvm::MCContext::XCOFFSectionKey
260 XCOFFSectionKey(StringRef SectionName, XCOFF::StorageMappingClass MappingClass) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXMCAsmInfo.h30 /// emitting \p SectionName. For example:
36 bool shouldOmitSectionDirective(StringRef SectionName) const override {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCodeViewYAMLTypes.h54 StringRef SectionName);
56 StringRef SectionName);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFListTable.cpp26 SectionName.data(), *OffsetPtr);
38 SectionName.data(), HeaderOffset, HeaderData.Length);
48 SectionName.data(), HeaderOffset, FullLength);
54 SectionName.data(), FullLength, HeaderOffset);
66 SectionName.data(), HeaderData.Version, HeaderOffset);
71 SectionName.data(), HeaderOffset, HeaderData.AddrSize);
76 SectionName.data(), HeaderOffset, HeaderData.SegSize);
82 SectionName.data(), HeaderOffset, HeaderData.OffsetEntryCount);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCAsmInfo.cpp122 bool MCAsmInfo::shouldOmitSectionDirective(StringRef SectionName) const {
124 return SectionName == ".text" || SectionName == ".data" ||
125 (SectionName == ".bss" && !usesELFSectionDirectiveForBSS());
H A DMCSectionCOFF.cpp41 if (ShouldOmitSectionDirective(SectionName, MAI)) {
64 !isImplicitlyDiscardable(SectionName))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Remarks/
H A DRemarkLinker.cpp34 Expected<StringRef> SectionName = getRemarksSectionName(Obj); local
35 if (!SectionName)
36 return SectionName.takeError();
42 if (*MaybeName != *SectionName)
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFConfig.h26 StringRef SectionName; member in struct:llvm::objcopy::elf::NewSymbolInfo
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp155 bool ParseSectionName(StringRef &SectionName);
239 bool ELFAsmParser::ParseSectionName(StringRef &SectionName) { argument
246 SectionName = getTok().getIdentifier();
269 SectionName = StringRef(FirstLoc.getPointer(), Size);
482 static bool hasPrefix(StringRef SectionName, StringRef Prefix) { argument
483 return SectionName.startswith(Prefix) || SectionName == Prefix.drop_back();
487 StringRef SectionName; local
489 if (ParseSectionName(SectionName))
502 if (hasPrefix(SectionName, "
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/lli/
H A DRemoteJITUtils.h92 StringRef SectionName) override {
93 return MemMgr->allocateCodeSection(Size, Alignment, SectionID, SectionName);
97 unsigned SectionID, StringRef SectionName,
99 return MemMgr->allocateDataSection(Size, Alignment, SectionID, SectionName,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DSectionMemoryManager.h120 StringRef SectionName) override;
128 unsigned SectionID, StringRef SectionName,
H A DRuntimeDyld.h66 StringRef FileName, StringRef SectionName, StringRef SymbolName,
106 StringRef SectionName) = 0;
113 StringRef SectionName,
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp172 StringRef FileName, StringRef SectionName) {
178 auto J = SectionIDs.find(SectionName);
180 return make_error<StringError>("No section named \"" + SectionName +
203 StringRef SectionName) override;
205 unsigned SectionID, StringRef SectionName,
261 StringRef SectionName, unsigned SectionID) {
269 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID));
271 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID));
288 StringRef SectionName) {
291 << Alignment << ", SectionName local
171 getSectionId(const FileToSectionIDMap &FileToSecIDMap, StringRef FileName, StringRef SectionName) argument
260 allocateFromSlab(uintptr_t Size, unsigned Alignment, bool isCode, StringRef SectionName, unsigned SectionID) argument
285 allocateCodeSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName) argument
312 allocateDataSection(uintptr_t Size, unsigned Alignment, unsigned SectionID, StringRef SectionName, bool IsReadOnly) argument
319 << Alignment << ", SectionName = " << SectionName << ")\\n"; local
610 std::string SectionName = SectionIDStr.substr(ComaIdx + 1); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h125 Str SectionName; member in struct:llvm::irsymtab::storage::Uncommon
174 StringRef SectionName; member in struct:llvm::irsymtab::Symbol
226 StringRef getSectionName() const { return SectionName; }
324 SectionName = R->str(UncI->SectionName);
327 SectionName = "";
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DDwarfCFIEHPrinter.h89 auto SectionName = Obj->getSectionName(&Shdr); local
90 if (Error E = SectionName.takeError())
93 if (*SectionName == ".eh_frame")
110 auto SectionName = Obj->getSectionName(EHFrameHdrShdr); local
111 if (Error E = SectionName.takeError())
114 W.printString("Corresponding Section", *SectionName);

Completed in 424 milliseconds

1234