Home
last modified time | relevance | path

Searched refs:sect (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/llvm/tools/llvm-c-test/
H A Dobject.c23 LLVMSectionIteratorRef sect; in llvm_object_list_sections() local
40 sect = LLVMObjectFileCopySectionIterator(O); in llvm_object_list_sections()
41 while (sect && !LLVMObjectFileIsSectionIteratorAtEnd(O, sect)) { in llvm_object_list_sections()
43 LLVMGetSectionAddress(sect), LLVMGetSectionSize(sect)); in llvm_object_list_sections()
45 LLVMMoveToNextSection(sect); in llvm_object_list_sections()
48 LLVMDisposeSectionIterator(sect); in llvm_object_list_sections()
60 LLVMSectionIteratorRef sect; in llvm_object_list_symbols() local
78 sect = LLVMObjectFileCopySectionIterator(O); in llvm_object_list_symbols()
80 while (sect && sym && !LLVMObjectFileIsSymbolIteratorAtEnd(O, sym)) { in llvm_object_list_symbols()
82 LLVMMoveToContainingSection(sect, sym); in llvm_object_list_symbols()
[all …]
/llvm-project-15.0.7/lldb/source/Symbol/
H A DUnwindTable.cpp58 SectionSP sect = sl->FindSectionByType(eSectionTypeEHFrame, true); in Initialize() local
59 if (sect.get()) { in Initialize()
61 *object_file, sect, DWARFCallFrameInfo::EH); in Initialize()
64 sect = sl->FindSectionByType(eSectionTypeDWARFDebugFrame, true); in Initialize()
65 if (sect) { in Initialize()
67 *object_file, sect, DWARFCallFrameInfo::DWARF); in Initialize()
70 sect = sl->FindSectionByType(eSectionTypeCompactUnwind, true); in Initialize()
71 if (sect) { in Initialize()
73 std::make_unique<CompactUnwindInfo>(*object_file, sect); in Initialize()
76 sect = sl->FindSectionByType(eSectionTypeARMexidx, true); in Initialize()
[all …]
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_i18n.cpp266 for (m = 0; m < table->sect[s].size; ++m) { in kmp_i18n_table_free()
268 KMP_INTERNAL_FREE((void *)table->sect[s].str[m]); in kmp_i18n_table_free()
269 table->sect[s].str[m] = NULL; in kmp_i18n_table_free()
271 table->sect[s].size = 0; in kmp_i18n_table_free()
273 KMP_INTERNAL_FREE((void *)table->sect[s].str); in kmp_i18n_table_free()
274 table->sect[s].str = NULL; in kmp_i18n_table_free()
277 KMP_INTERNAL_FREE((void *)table->sect); in kmp_i18n_table_free()
278 table->sect = NULL; in kmp_i18n_table_free()
557 if (table.sect[section].size == 0) { in __kmp_i18n_catgets()
561 table.sect[section].size = in __kmp_i18n_catgets()
[all …]
/llvm-project-15.0.7/lldb/tools/compact-unwind/
H A Dcompact-unwind-dumper.c184 struct section_64 sect; in scan_macho_load_commands() local
190 struct section sect; in scan_macho_load_commands() local
191 memset(&sect, 0, sizeof(struct section)); in scan_macho_load_commands()
199 struct section_64 sect; in scan_macho_load_commands() local
204 struct section sect; in scan_macho_load_commands() local
205 memset(&sect, 0, sizeof(struct section)); in scan_macho_load_commands()
212 struct section_64 sect; in scan_macho_load_commands() local
215 baton->text_section_vmaddr = sect.addr; in scan_macho_load_commands()
218 struct section sect; in scan_macho_load_commands() local
219 memset(&sect, 0, sizeof(struct section)); in scan_macho_load_commands()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/ObjectFile/PECOFF/
H A DObjectFilePECOFF.cpp700 SectionSP sect = addr.GetSection(); in ReadImageDataByRVA() local
701 if (!sect) in ReadImageDataByRVA()
703 rva = sect->GetFileOffset() + addr.GetOffset(); in ReadImageDataByRVA()
746 llvm::StringRef hdr_name(sect.name, llvm::array_lengthof(sect.name)); in GetSectionName()
802 symbol.sect = symtab_data.GetU16(&offset); in ParseSymtab()
807 if ((int16_t)symbol.sect >= 1) { in ParseSymtab()
913 if (sect.flags & llvm::COFF::IMAGE_SCN_CNT_CODE && in GetSectionType()
921 if (sect.size == 0 && sect.offset == 0) in GetSectionType()
929 if (sect.size == 0) in GetSectionType()
961 if (sect.flags & llvm::COFF::IMAGE_SCN_CNT_CODE) in GetSectionType()
[all …]
H A DObjectFilePECOFF.h250 uint16_t sect = 0; member
290 llvm::StringRef GetSectionName(const section_header_t &sect);
292 const section_header_t &sect);
/llvm-project-15.0.7/llvm/include/llvm/BinaryFormat/
H A DMachO.h1112 sys::swapByteOrder(sect.addr); in swapStruct()
1113 sys::swapByteOrder(sect.size); in swapStruct()
1114 sys::swapByteOrder(sect.offset); in swapStruct()
1115 sys::swapByteOrder(sect.align); in swapStruct()
1116 sys::swapByteOrder(sect.reloff); in swapStruct()
1117 sys::swapByteOrder(sect.nreloc); in swapStruct()
1118 sys::swapByteOrder(sect.flags); in swapStruct()
1124 sys::swapByteOrder(sect.addr); in swapStruct()
1125 sys::swapByteOrder(sect.size); in swapStruct()
1127 sys::swapByteOrder(sect.align); in swapStruct()
[all …]
/llvm-project-15.0.7/lldb/source/Core/
H A DSection.cpp488 size_t SectionList::FindSectionIndex(const Section *sect) { in FindSectionIndex() argument
493 if (sect_iter->get() == sect) { in FindSectionIndex()
612 Section *sect = sect_iter->get(); in FindSectionContainingFileAddress() local
613 if (sect->ContainsFileAddress(vm_addr)) { in FindSectionContainingFileAddress()
618 sect_sp = sect->GetChildren().FindSectionContainingFileAddress( in FindSectionContainingFileAddress()
621 if (sect_sp.get() == nullptr && !sect->IsFake()) in FindSectionContainingFileAddress()
/llvm-project-15.0.7/libcxx/docs/Status/
H A DCxx20.rst43 ….. [#note-P0600] P0600: The missing bits in P0600 are in |sect|\ [mem.res.class] and |sect|\ [mem.…
H A DCxx20Issues.csv55 "`3004 <https://wg21.link/LWG3004>`__","|sect|\ [string.capacity] and |sect|\ [vector.capacity] sho…
120 "`3130 <https://wg21.link/LWG3130>`__","|sect|\ [input.output] needs many ``addressof``\ ","San Die…
135 "`3087 <https://wg21.link/LWG3087>`__","One final ``&x``\ in |sect|\ [list.ops]","Kona","|Nothing …
177 "`3244 <https://wg21.link/LWG3244>`__","Constraints for ``Source``\ in |sect|\ [fs.path.req] insuf…
178 "`3241 <https://wg21.link/LWG3241>`__","``chrono-spec``\ grammar ambiguity in |sect|\ [time.format…
256 "`3332 <https://wg21.link/LWG3332>`__","Issue in |sect|\ [time.format]","Prague","","","|chrono| |f…
260 …"Formatting functions should throw on argument/format string mismatch in |sect|\ [format.functions…
271 "`3358 <https://wg21.link/LWG3358>`__","|sect|\ [span.cons] is mistaken that ``to_address``\ can t…
289 "`3383 <https://wg21.link/LWG3383>`__","|sect|\ [time.zone.leap.nonmembers] ``sys_seconds``\ shoul…
292 "`3387 <https://wg21.link/LWG3387>`__","|sect|\ [range.reverse.view] ``reverse_view<V>``\ unintent…
H A DCxx17Issues.csv120 "`2571 <https://wg21.link/LWG2571>`__","|sect|\ [map.modifiers]/2 imposes nonsensical requirement o…
128 "`2582 <https://wg21.link/LWG2582>`__","|sect|\ [res.on.functions]/2's prohibition against incomple…
273 "`2787 <https://wg21.link/LWG2787>`__","|sect|\ [file_status.cons] doesn't match class definition",…
278 "`2795 <https://wg21.link/LWG2795>`__","|sect|\ [global.functions] provides incorrect example of AD…
/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/Breakpad/
H A DSymbolFileBreakpad.cpp94 Section &sect = in LineIterator() local
96 assert(sect.GetName() == m_section_type); in LineIterator()
99 obj.ReadSectionData(&sect, data); in LineIterator()
118 Section &sect = *list.GetSectionAtIndex(m_next_section_idx++); in operator ++() local
119 if (sect.GetName() != m_section_type) in operator ++()
122 m_obj->ReadSectionData(&sect, data); in operator ++()
/llvm-project-15.0.7/libcxx/docs/Helpers/
H A DStyles.rst50 .. |sect| unicode:: U+00A7 substdef
/llvm-project-15.0.7/llvm/test/ExecutionEngine/JITLink/X86/
H A DCOFF_label.test22 - Name: '.sect'
/llvm-project-15.0.7/llvm/tools/llvm-objdump/
H A DMachODump.cpp1318 DumpCstringChar(sect[i]); in DumpCstringSection()
1319 if (i < sect_size && sect[i] == '\0') in DumpCstringSection()
1351 memcpy(&f, sect + i, sizeof(float)); in DumpLiteral4Section()
1355 memcpy(&l, sect + i, sizeof(uint32_t)); in DumpLiteral4Section()
1395 memcpy(&d, sect + i, sizeof(double)); in DumpLiteral8Section()
1399 memcpy(&l0, sect + i, sizeof(uint32_t)); in DumpLiteral8Section()
1789 outs() << sect; in DumpSectionContents()
6469 for (p = sect; p < sect + size; p += sizeof(struct objc_protocol_t)) { in DumpProtocolSection()
6471 left = size - (p - sect); in DumpProtocolSection()
6479 paddr = addr + (p - sect); in DumpProtocolSection()
[all …]
/llvm-project-15.0.7/clang/test/Rewriter/
H A Drewrite-block-pointer.mm32 apply(^(int sect) {
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DSection.h54 size_t FindSectionIndex(const Section *sect);
/llvm-project-15.0.7/lldb/examples/python/
H A Dsymbolication.py638 for sect in module.section_iter():
639 print_module_section(sect, depth)
/llvm-project-15.0.7/lld/MachO/
H A DSyntheticSections.cpp921 stab.sect = 1; in emitEndSourceStab()
927 stab.sect = target->cpuSubtype; in emitObjectFileStab()
1015 symStab.sect = defined->isec->parent->index; in emitStabs()
1136 nList->n_sect = entry.sect; in writeTo()
H A DSyntheticSections.h414 uint8_t sect = 0; member
/llvm-project-15.0.7/clang/include/clang/AST/
H A DCommentHTMLNamedCharacterReferences.td145 def : NCR<"sect", 0x000A7>;