Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/IntelJITEvents/
H A DIntelJITEventListener.cpp84 __itt_section_info SectionInfo; in fillSectionInformation() local
85 memset(&SectionInfo, 0, sizeof(SectionInfo)); in fillSectionInformation()
86 SectionInfo.start_addr = reinterpret_cast<void *>(SectionLoadAddr); in fillSectionInformation()
87 SectionInfo.file_offset = ElfSection.getOffset(); in fillSectionInformation()
88 SectionInfo.flags = ElfSection.getFlags(); in fillSectionInformation()
96 SectionInfo.size = ElfSection.getSize(); in fillSectionInformation()
98 SectionInfo.size); in fillSectionInformation()
101 SectionInfo.type = itt_section_type_bss; in fillSectionInformation()
103 SectionInfo.type = itt_section_type_data; in fillSectionInformation()
105 SectionInfo.type = itt_section_type_text; in fillSectionInformation()
[all …]
/openbsd/gnu/llvm/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()
/openbsd/gnu/llvm/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() function
199 SmallVector<SectionInfo, 16> FunctionMemory;
200 SmallVector<SectionInfo, 16> DataMemory;
274 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateFromSlab()
276 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateFromSlab()
317 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateCodeSection()
346 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID)); in allocateDataSection()
693 typedef std::list<const TrivialMemoryManager::SectionInfo*> WorklistT; in remapSectionsAndSymbols()
/openbsd/gnu/llvm/llvm/include/llvm/Object/
H A DMachO.h146 struct SectionInfo { struct
155 const SectionInfo &findSection(int32_t SegIndex, uint64_t SegOffset); argument
157 SmallVector<SectionInfo, 32> Sections;
/openbsd/gnu/llvm/clang/include/clang/AST/
H A DASTContext.h3315 struct SectionInfo { struct
3320 SectionInfo() = default; argument
3321 SectionInfo(NamedDecl *Decl, SourceLocation PragmaSectionLocation, in SectionInfo() argument
3327 llvm::StringMap<SectionInfo> SectionInfos;
3348 const ASTContext::SectionInfo &Section);
/openbsd/gnu/llvm/clang/lib/Sema/
H A DSemaAttr.cpp692 ASTContext::SectionInfo(Decl, PragmaLocation, SectionFlags); in UnifySection()
732 ASTContext::SectionInfo(nullptr, PragmaSectionLocation, SectionFlags); in UnifySection()
/openbsd/gnu/llvm/llvm/lib/Object/
H A DMachOObjectFile.cpp4350 SectionInfo Info; in BindRebaseSegInfo()
4393 for (const SectionInfo &SI : Sections) { in checkSegAndOffsets()
4414 for (const SectionInfo &SI : Sections) { in segmentName()
4423 const BindRebaseSegInfo::SectionInfo &BindRebaseSegInfo::findSection( in findSection()
4425 for (const SectionInfo &SI : Sections) { in findSection()
4447 const SectionInfo &SI = findSection(SegIndex, OffsetInSeg); in address()
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/Mach-O/
H A DObjectFileMachO.cpp1973 struct SectionInfo { struct in MachSymtabSectionInfo
1974 SectionInfo() : vm_range(), section_sp() {} in SectionInfo() function
1980 std::vector<SectionInfo> m_section_infos;
/openbsd/gnu/llvm/clang/lib/CodeGen/
H A DCodeGenModule.cpp4999 const ASTContext::SectionInfo &SI = Context.SectionInfos[SA->getName()]; in EmitGlobalVarDefinition()
/openbsd/gnu/llvm/clang/lib/AST/
H A DASTContext.cpp13420 const ASTContext::SectionInfo &Section) { in operator <<()