| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCSectionMachO.cpp | 110 MachO::SectionType SectionType = getType(); in PrintSwitchToSection() local 111 assert(SectionType <= MachO::LAST_KNOWN_SECTION_TYPE && in PrintSwitchToSection() 114 if (!SectionTypeDescriptors[SectionType].AssemblerName.empty()) { in PrintSwitchToSection() 116 OS << SectionTypeDescriptors[SectionType].AssemblerName; in PrintSwitchToSection() 193 StringRef SectionType = GetEmptyOrTrim(2); in ParseSectionSpecifier() local 212 if (SectionType.empty()) in ParseSectionSpecifier() 219 return SectionType == Descriptor.AssemblerName; in ParseSectionSpecifier()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | Section.h | 65 lldb::SectionSP FindSectionByType(lldb::SectionType sect_type, 104 lldb::SectionType sect_type, lldb::addr_t file_vm_addr, 115 lldb::SectionType sect_type, lldb::addr_t file_vm_addr, 174 lldb::SectionType GetType() const { return m_type; } in GetType() 242 lldb::SectionType m_type; // The type of this section
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFContext.cpp | 17 SectionType section_type) { in LoadSection() 31 DWARFContext::LoadOrGetSection(llvm::Optional<SectionType> main_section_type, in LoadOrGetSection() 32 llvm::Optional<SectionType> dwo_section_type, in LoadOrGetSection()
|
| H A D | DWARFContext.h | 49 LoadOrGetSection(llvm::Optional<lldb::SectionType> main_section_type, 50 llvm::Optional<lldb::SectionType> dwo_section_type,
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
| H A D | MachOReader.cpp | 30 template <typename SectionType> 31 static Section constructSectionCommon(const SectionType &Sec, uint32_t Index) { in constructSectionCommon() 59 template <typename SectionType, typename SegmentType> 64 for (auto Curr = reinterpret_cast<const SectionType *>(LoadCmd.Ptr + in extractSections() 66 End = reinterpret_cast<const SectionType *>(LoadCmd.Ptr + in extractSections() 69 SectionType Sec; in extractSections() 70 memcpy((void *)&Sec, Curr, sizeof(SectionType)); in extractSections()
|
| H A D | Object.h | 69 MachO::SectionType getType() const { in getType() 70 return static_cast<MachO::SectionType>(Flags & MachO::SECTION_TYPE); in getType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCSectionMachO.h | 50 MachO::SectionType getType() const { in getType() 51 return static_cast<MachO::SectionType>(TypeAndAttributes & in getType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/wasm/ |
| H A D | Writer.cpp | 27 OS << S.SectionType; in createSectionHeader() 28 bool HasName = S.SectionType == WASM_SEC_CUSTOM; in createSectionHeader()
|
| H A D | Object.h | 25 uint8_t SectionType; member
|
| H A D | WasmObjcopy.cpp | 132 Sec.SectionType = llvm::wasm::WASM_SEC_CUSTOM; in handleArgs()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/wasm/ |
| H A D | SymbolVendorWasm.cpp | 116 static const SectionType g_sections[] = { in CreateInstance() 127 for (SectionType section_type : g_sections) { in CreateInstance()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolVendor/ELF/ |
| H A D | SymbolVendorELF.cpp | 119 static const SectionType g_sections[] = { in CreateInstance() 132 for (SectionType section_type : g_sections) { in CreateInstance()
|
| /freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/MachO/ |
| H A D | MachONormalizedFile.h | 67 using llvm::MachO::SectionType; 119 SectionType type; 152 inline bool isZeroFillSection(SectionType T) { in isZeroFillSection()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Expression/ |
| H A D | IRExecutionUnit.h | 334 static lldb::SectionType 347 lldb::SectionType m_sect_type; 353 lldb::SectionType sect_type, size_t size, in AllocationRecord()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
| H A D | WasmYAML.h | 29 LLVM_YAML_STRONG_TYPEDEF(uint32_t, SectionType) 183 explicit Section(SectionType SecType) : Type(SecType) {} in Section() 186 SectionType Type; 473 template <> struct ScalarEnumerationTraits<WasmYAML::SectionType> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 474 static void enumeration(IO &IO, WasmYAML::SectionType &Type); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | WasmYAML.cpp | 165 WasmYAML::SectionType SectionType; in mapping() local 167 SectionType = Section->Type; in mapping() 169 IO.mapRequired("Type", SectionType); in mapping() 171 switch (SectionType) { in mapping() 277 void ScalarEnumerationTraits<WasmYAML::SectionType>::enumeration( in enumeration() 278 IO &IO, WasmYAML::SectionType &Type) { in enumeration()
|
| H A D | MachOEmitter.cpp | 101 template <typename SectionType> 102 SectionType constructSection(MachOYAML::Section Sec) { in constructSection() 103 SectionType TempSec; in constructSection()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBSection.cpp | 226 SectionType SBSection::GetSectionType() { in GetSectionType() 227 LLDB_RECORD_METHOD_NO_ARGS(lldb::SectionType, SBSection, GetSectionType); in GetSectionType() 319 LLDB_REGISTER_METHOD(lldb::SectionType, SBSection, GetSectionType, ()); in RegisterMethods()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | DarwinAsmParser.cpp | 555 MachO::SectionType SectionType = Current->getType(); in parseDirectiveIndirectSymbol() local 556 if (SectionType != MachO::S_NON_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol() 557 SectionType != MachO::S_LAZY_SYMBOL_POINTERS && in parseDirectiveIndirectSymbol() 558 SectionType != MachO::S_THREAD_LOCAL_VARIABLE_POINTERS && in parseDirectiveIndirectSymbol() 559 SectionType != MachO::S_SYMBOL_STUBS) in parseDirectiveIndirectSymbol()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBSection.h | 55 SectionType GetSectionType();
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ObjectFile/wasm/ |
| H A D | ObjectFileWasm.cpp | 256 static SectionType GetSectionTypeFromName(llvm::StringRef Name) { in GetSectionTypeFromName() 258 return llvm::StringSwitch<SectionType>(Name) in GetSectionTypeFromName() 304 SectionType section_type = eSectionTypeOther; in CreateSections()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/ |
| H A D | XCOFFDumper.cpp | 535 uint16_t SectionType = Sec.getSectionType(); in printSectionHeaders() local 536 switch (SectionType) { in printSectionHeaders() 552 W.printHex("Flags", "Reserved", SectionType); in printSectionHeaders() 554 W.printEnum("Type", SectionType, makeArrayRef(SectionTypeFlagsNames)); in printSectionHeaders()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Core/ |
| H A D | Section.cpp | 156 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section() 178 SectionType sect_type, addr_t file_addr, addr_t byte_size, in Section() 524 SectionSP SectionList::FindSectionByType(SectionType sect_type, in FindSectionByType()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/interface/ |
| H A D | SBSection.i | 91 SectionType
|
| /freebsd-13.1/sys/dev/acpica/ |
| H A D | acpi_apei.c | 331 if (memcmp(mem_uuid, ged->SectionType, ACPI_UUID_LENGTH) == 0) { in apei_ged_handler() 333 } else if (memcmp(pcie_uuid, ged->SectionType, ACPI_UUID_LENGTH) == 0) { in apei_ged_handler() 336 t = ged->SectionType; in apei_ged_handler()
|