Searched refs:Sect (Results 1 - 16 of 16) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPort.h43 #define COMPILER_RT_SECTION(Sect) __declspec(allocate(Sect))
45 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect)))
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFEmitter.h35 void EmitPubSection(raw_ostream &OS, const PubSection &Sect,
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp335 MachO::section Sect = Obj->getSection(Sec); local
336 Section.Address = Sect.addr;
337 Section.Size = Sect.size;
338 Section.Offset = Sect.offset;
339 Section.Alignment = Sect.align;
340 Section.RelocationTableOffset = Sect.reloff;
341 Section.NumRelocationTableEntries = Sect.nreloc;
342 Section.Flags = Sect.flags;
343 Section.Reserved1 = Sect.reserved1;
344 Section.Reserved2 = Sect
347 MachO::section_64 Sect = Obj->getSection64(Sec); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h39 uint8_t Sect, uint16_t Desc, Linkage L, Scope S)
40 : Name(Name), Value(Value), Type(Type), Sect(Sect), Desc(Desc), L(L),
54 uint8_t Sect = 0; member in struct:llvm::jitlink::MachOLinkGraphBuilder::NormalizedSymbol
38 NormalizedSymbol(Optional<StringRef> Name, uint64_t Value, uint8_t Type, uint8_t Sect, uint16_t Desc, Linkage L, Scope S) argument
H A DMachOLinkGraphBuilder.cpp212 uint8_t Sect; local
221 Sect = NL64.n_sect;
229 Sect = NL32.n_sect;
255 if (Sect)
256 dbgs() << static_cast<unsigned>(Sect - 1);
264 if (Sect != 0) {
265 if (auto NSecOrErr = findSectionByIndex(Sect - 1))
276 &createNormalizedSymbol(*Name, Value, Type, Sect, Desc,
338 SecIndexToSymbols[NSym.Sect - 1].push_back(&NSym);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp118 const DWARFYAML::PubSection &Sect,
120 writeInitialLength(Sect.Length, OS, IsLittleEndian);
121 writeInteger((uint16_t)Sect.Version, OS, IsLittleEndian);
122 writeInteger((uint32_t)Sect.UnitOffset, OS, IsLittleEndian);
123 writeInteger((uint32_t)Sect.UnitSize, OS, IsLittleEndian);
124 for (auto Entry : Sect.Entries) {
126 if (Sect.IsGNUStyle)
117 EmitPubSection(raw_ostream &OS, const DWARFYAML::PubSection &Sect, bool IsLittleEndian) argument
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBSession.h50 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DObject.h165 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSession.h54 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset,
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Object/
H A DObject.cpp218 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, argument
228 *unwrap(Sect) = *SecOrErr;
H A DMachOObjectFile.cpp179 MachO::section_64 Sect = O.getSection64(Sec); local
180 return Sect.flags;
182 MachO::section Sect = O.getSection(Sec); local
183 return Sect.flags;
1932 MachO::section_64 Sect = getSection64(Sec); local
1933 SectOffset = Sect.offset;
1934 SectSize = Sect.size;
1935 SectType = Sect.flags & MachO::SECTION_TYPE;
1937 MachO::section Sect = getSection(Sec); local
1938 SectOffset = Sect
1963 MachO::section_64 Sect = getSection64(Sec); local
1967 MachO::section Sect = getSection(Sec); local
1978 MachO::section_64 Sect = getSection64(Sec); local
1981 MachO::section Sect = getSection(Sec); local
2068 MachO::section_64 Sect = getSection64(Sec); local
2071 MachO::section Sect = getSection(Sec); local
4413 MachO::section_64 Sect = getSection64(Sec); local
4416 MachO::section Sect = getSection(Sec); local
[all...]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp222 DIASession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, argument
227 if (S_OK != Session->findSymbolByAddr(Sect, Offset, EnumVal, &Symbol))
/freebsd-12-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp117 NativeSession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCMachOStreamer.cpp84 void ChangeSection(MCSection *Sect, const MCExpr *Subsect) override;
/freebsd-12-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1752 void AddSection(SectionAddressInfo Info, SectionSP Sect) { argument
1758 std::move(Sect));
/freebsd-12-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp1522 auto Sect = find_if(LiteralSections, [&](const SectionRef &R) { local
1525 if (Sect == LiteralSections.end()) {
1530 uint64_t SectAddress = Sect->getAddress();
1531 uint64_t SectSize = Sect->getSize();
1534 Expected<StringRef> SectNameOrErr = Sect->getName();
1540 DataRefImpl Ref = Sect->getRawDataRefImpl();
1553 StringRef BytesStr = unwrapOrError(Sect->getContents(), O->getFileName());

Completed in 215 milliseconds