Home
last modified time | relevance | path

Searched refs:SectionInfo (Results 1 – 11 of 11) sorted by relevance

/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp83 __itt_section_info SectionInfo; in fillSectionInformation() local
84 memset(&SectionInfo, 0, sizeof(SectionInfo)); in fillSectionInformation()
85 SectionInfo.start_addr = reinterpret_cast<void *>(SectionLoadAddr); in fillSectionInformation()
86 SectionInfo.file_offset = ElfSection.getOffset(); in fillSectionInformation()
87 SectionInfo.flags = ElfSection.getFlags(); in fillSectionInformation()
95 SectionInfo.size = ElfSection.getSize(); in fillSectionInformation()
97 SectionInfo.size); in fillSectionInformation()
100 SectionInfo.type = itt_section_type_bss; in fillSectionInformation()
102 SectionInfo.type = itt_section_type_data; in fillSectionInformation()
104 SectionInfo.type = itt_section_type_text; in fillSectionInformation()
[all …]
/netbsd/external/gpl3/gdb/dist/gold/testsuite/
H A Dplugin_section_alignment.cc73 struct SectionInfo { struct
80 static bool SectionInfoLt(const SectionInfo &i1, in SectionInfoLt() argument
81 const SectionInfo &i2) in SectionInfoLt()
122 typedef std::vector<SectionInfo> section_info_vector;
215 SectionInfo si; in claim_file_hook()
243 SectionInfo::SectionInfoLt); in all_symbols_read_hook()
255 const SectionInfo &si = (*it); in all_symbols_read_hook()
/netbsd/external/gpl3/gdb.old/dist/gold/testsuite/
H A Dplugin_section_alignment.cc73 struct SectionInfo { struct
80 static bool SectionInfoLt(const SectionInfo &i1, in SectionInfoLt() argument
81 const SectionInfo &i2) in SectionInfoLt()
122 typedef std::vector<SectionInfo> section_info_vector;
215 SectionInfo si; in claim_file_hook()
243 SectionInfo::SectionInfoLt); in all_symbols_read_hook()
255 const SectionInfo &si = (*it); in all_symbols_read_hook()
/netbsd/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp321 EHFrameRelatedSections &SectionInfo = UnregisteredEHFrameSections[i]; in registerEHFrames() local
322 if (SectionInfo.EHFrameSID == RTDYLD_INVALID_SECTION_ID || in registerEHFrames()
323 SectionInfo.TextSID == RTDYLD_INVALID_SECTION_ID) in registerEHFrames()
325 SectionEntry *Text = &Sections[SectionInfo.TextSID]; in registerEHFrames()
326 SectionEntry *EHFrame = &Sections[SectionInfo.EHFrameSID]; in registerEHFrames()
328 if (SectionInfo.ExceptTabSID != RTDYLD_INVALID_SECTION_ID) in registerEHFrames()
329 ExceptTab = &Sections[SectionInfo.ExceptTabSID]; in registerEHFrames()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
H A Dllvm-rtdyld.cpp191 struct SectionInfo { struct in TrivialMemoryManager
192 SectionInfo(StringRef Name, sys::MemoryBlock MB, unsigned SectionID) in SectionInfo() argument
199 SmallVector<SectionInfo, 16> FunctionMemory;
200 SmallVector<SectionInfo, 16> DataMemory;
270 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateFromSlab()
272 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateFromSlab()
309 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateCodeSection()
337 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateDataSection()
643 typedef std::list<const TrivialMemoryManager::SectionInfo*> WorklistT; in remapSectionsAndSymbols()
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DMachO.h145 struct SectionInfo { struct
154 const SectionInfo &findSection(int32_t SegIndex, uint64_t SegOffset); argument
156 SmallVector<SectionInfo, 32> Sections;
/netbsd/external/apache2/llvm/dist/clang/include/clang/AST/
H A DASTContext.h3136 struct SectionInfo { struct
3141 SectionInfo() = default; argument
3142 SectionInfo(NamedDecl *Decl, SourceLocation PragmaSectionLocation, in SectionInfo() argument
3148 llvm::StringMap<SectionInfo> SectionInfos;
3169 const ASTContext::SectionInfo &Section);
/netbsd/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaAttr.cpp613 ASTContext::SectionInfo(Decl, PragmaLocation, SectionFlags); in UnifySection()
653 ASTContext::SectionInfo(nullptr, PragmaSectionLocation, SectionFlags); in UnifySection()
/netbsd/external/apache2/llvm/dist/llvm/lib/Object/
H A DMachOObjectFile.cpp4016 SectionInfo Info; in BindRebaseSegInfo()
4059 for (const SectionInfo &SI : Sections) { in checkSegAndOffsets()
4080 for (const SectionInfo &SI : Sections) { in segmentName()
4089 const BindRebaseSegInfo::SectionInfo &BindRebaseSegInfo::findSection( in findSection()
4091 for (const SectionInfo &SI : Sections) { in findSection()
4113 const SectionInfo &SI = findSection(SegIndex, OffsetInSeg); in address()
/netbsd/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCodeGenModule.cpp4429 const ASTContext::SectionInfo &SI = Context.SectionInfos[SA->getName()]; in EmitGlobalVarDefinition()
/netbsd/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp11618 const ASTContext::SectionInfo &Section) { in operator <<()