HomeSort by: relevance | last modified time | path
    Searched defs:SectionInfo (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 83 __itt_section_info SectionInfo;
84 memset(&SectionInfo, 0, sizeof(SectionInfo));
85 SectionInfo.start_addr = reinterpret_cast<void *>(SectionLoadAddr);
86 SectionInfo.file_offset = ElfSection.getOffset();
87 SectionInfo.flags = ElfSection.getFlags();
95 SectionInfo.size = ElfSection.getSize();
97 SectionInfo.size);
100 SectionInfo.type = itt_section_type_bss;
102 SectionInfo.type = itt_section_type_data
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 321 EHFrameRelatedSections &SectionInfo = UnregisteredEHFrameSections[i];
322 if (SectionInfo.EHFrameSID == RTDYLD_INVALID_SECTION_ID ||
323 SectionInfo.TextSID == RTDYLD_INVALID_SECTION_ID)
325 SectionEntry *Text = &Sections[SectionInfo.TextSID];
326 SectionEntry *EHFrame = &Sections[SectionInfo.EHFrameSID];
328 if (SectionInfo.ExceptTabSID != RTDYLD_INVALID_SECTION_ID)
329 ExceptTab = &Sections[SectionInfo.ExceptTabSID];
  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
MachO.h 145 struct SectionInfo {
154 const SectionInfo &findSection(int32_t SegIndex, uint64_t SegOffset);
156 SmallVector<SectionInfo, 32> Sections;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-rtdyld/
llvm-rtdyld.cpp 191 struct SectionInfo {
192 SectionInfo(StringRef Name, sys::MemoryBlock MB, unsigned SectionID)
199 SmallVector<SectionInfo, 16> FunctionMemory;
200 SmallVector<SectionInfo, 16> DataMemory;
270 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID));
272 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID));
309 FunctionMemory.push_back(SectionInfo(SectionName, MB, SectionID));
337 DataMemory.push_back(SectionInfo(SectionName, MB, SectionID));
643 typedef std::list<const TrivialMemoryManager::SectionInfo*> WorklistT;
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 3136 struct SectionInfo {
3141 SectionInfo() = default;
3142 SectionInfo(NamedDecl *Decl, SourceLocation PragmaSectionLocation,
3148 llvm::StringMap<SectionInfo> SectionInfos;
3169 const ASTContext::SectionInfo &Section);

Completed in 25 milliseconds