Home
last modified time | relevance | path

Searched refs:Sect (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DMachODumper.cpp345 MachO::section Sect = Obj->getSection(Sec); in getSection() local
346 Section.Address = Sect.addr; in getSection()
347 Section.Size = Sect.size; in getSection()
348 Section.Offset = Sect.offset; in getSection()
349 Section.Alignment = Sect.align; in getSection()
350 Section.RelocationTableOffset = Sect.reloff; in getSection()
351 Section.NumRelocationTableEntries = Sect.nreloc; in getSection()
352 Section.Flags = Sect.flags; in getSection()
353 Section.Reserved1 = Sect.reserved1; in getSection()
354 Section.Reserved2 = Sect in getSection()
357 MachO::section_64 Sect = Obj->getSection64(Sec); getSection() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp314 SymbolCache::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, in findSymbolBySectOffset() argument
318 return findFunctionSymbolBySectOffset(Sect, Offset); in findSymbolBySectOffset()
320 return findPublicSymbolBySectOffset(Sect, Offset); in findSymbolBySectOffset()
323 if (!Session.moduleIndexForSectOffset(Sect, Offset, Modi)) in findSymbolBySectOffset()
330 if (auto Sym = findFunctionSymbolBySectOffset(Sect, Offset)) in findSymbolBySectOffset()
340 SymbolCache::findFunctionSymbolBySectOffset(uint32_t Sect, uint32_t Offset) { in findFunctionSymbolBySectOffset() argument
341 auto Iter = AddressToSymbolId.find({Sect, Offset}); in findFunctionSymbolBySectOffset()
349 if (!Session.moduleIndexForSectOffset(Sect, Offset, Modi)) in findFunctionSymbolBySectOffset()
365 if (Sect == PS.Segment && Offset >= PS.CodeOffset && in findFunctionSymbolBySectOffset()
385 SymbolCache::findPublicSymbolBySectOffset(uint32_t Sect, uint32_t Offset) { in findPublicSymbolBySectOffset() argument
[all …]
H A DNativeSession.cpp266 NativeSession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, in findSymbolBySectOffset() argument
271 return Cache.findSymbolBySectOffset(Sect, Offset, Type); in findSymbolBySectOffset()
412 bool NativeSession::moduleIndexForSectOffset(uint32_t Sect, uint32_t Offset, in moduleIndexForSectOffset() argument
415 auto Iter = AddrToModuleIndex.find(getVAFromSectOffset(Sect, Offset)); in moduleIndexForSectOffset()
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPort.h51 #define COMPILER_RT_SECTION(Sect) __declspec(allocate(Sect)) argument
53 #define COMPILER_RT_SECTION(Sect) __attribute__((section(Sect))) argument
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DObjectFileTransformer.cpp35 for (const object::SectionRef &Sect : Obj.sections()) { in getUUID() local
36 Expected<StringRef> SectNameOrErr = Sect.getName(); in getUUID()
45 Expected<StringRef> E = Sect.getContents(); in getUUID()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachOLinkGraphBuilder.h41 uint8_t Type, uint8_t Sect, uint16_t Desc, Linkage L, in NormalizedSymbol()
43 : Name(Name), Value(Value), Type(Type), Sect(Sect), Desc(Desc), L(L), in NormalizedSymbol()
57 uint8_t Sect = 0; member
H A DMachOLinkGraphBuilder.cpp244 uint8_t Sect; in createNormalizedSymbols()
253 Sect = NL64.n_sect; in createNormalizedSymbols()
261 Sect = NL32.n_sect; in createNormalizedSymbols()
291 if (Sect) in createNormalizedSymbols()
292 dbgs() << static_cast<unsigned>(Sect - 1); in createNormalizedSymbols()
299 if (Sect != 0) { in createNormalizedSymbols()
300 auto NSec = findSectionByIndex(Sect - 1); in createNormalizedSymbols()
321 &createNormalizedSymbol(*Name, Value, Type, Sect, Desc, in createNormalizedSymbols()
389 SecIndexToSymbols[NSym.Sect - 1].push_back(&NSym); in graphifyRegularSymbols()
607 setCanonicalSymbol(getSectionByIndex(NSym.Sect in createStandardGraphSymbol()
243 uint8_t Sect; createNormalizedSymbols() local
[all...]
H A DELFLinkGraphBuilder.h126 virtual bool excludeSection(const typename ELFT::Shdr &Sect) const { in excludeSection() argument
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DSectCreate.cpp24 auto &Sect = G->createSection(SectName, MP); in materialize() local
27 auto &B = G->createContentBlock(Sect, Content, ExecutorAddr(), Alignment, 0); in materialize()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DSymbolCache.h118 std::unique_ptr<PDBSymbol> findFunctionSymbolBySectOffset(uint32_t Sect,
120 std::unique_ptr<PDBSymbol> findPublicSymbolBySectOffset(uint32_t Sect,
177 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, PDB_SymType Type);
H A DNativeSession.h65 std::unique_ptr<PDBSymbol> findSymbolBySectOffset(uint32_t Sect,
118 bool moduleIndexForSectOffset(uint32_t Sect, uint32_t Offset,
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/
H A DDebugInfoLinker.cpp48 for (const object::SectionRef &Sect : ObjFile.sections()) { in ObjFileAddressMap() local
49 if (!Sect.isText()) in ObjFileAddressMap()
51 const uint64_t Size = Sect.getSize(); in ObjFileAddressMap()
54 const uint64_t StartAddr = Sect.getAddress(); in ObjFileAddressMap()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DMachOObjectFile.cpp184 MachO::section_64 Sect = O.getSection64(Sec); in getSectionFlags() local
185 return Sect.flags; in getSectionFlags()
187 MachO::section Sect = O.getSection(Sec); in getSectionFlags() local
188 return Sect.flags; in getSectionFlags()
1960 MachO::section_64 Sect = getSection64(Sec); in getSectionSize() local
1961 SectOffset = Sect.offset; in getSectionSize()
1962 SectSize = Sect.size; in getSectionSize()
1963 SectType = Sect.flags & MachO::SECTION_TYPE; in getSectionSize()
1965 MachO::section Sect = getSection(Sec); in getSectionSize() local
1966 SectOffset = Sect.offset; in getSectionSize()
[all …]
H A DObject.cpp221 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, in LLVMMoveToContainingSection() argument
230 *unwrap(Sect) = *SecOrErr; in LLVMMoveToContainingSection()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp221 for (auto &Sect : Obj->sections()) { in readMachOHeader() local
222 auto SectName = Sect.getName(); in readMachOHeader()
228 auto Content = Sect.getContents(); in readMachOHeader()
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp227 static Error emitPubSection(raw_ostream &OS, const DWARFYAML::PubSection &Sect, in emitPubSection() argument
229 writeInitialLength(Sect.Format, Sect.Length, OS, IsLittleEndian); in emitPubSection()
230 writeInteger((uint16_t)Sect.Version, OS, IsLittleEndian); in emitPubSection()
231 writeInteger((uint32_t)Sect.UnitOffset, OS, IsLittleEndian); in emitPubSection()
232 writeInteger((uint32_t)Sect.UnitSize, OS, IsLittleEndian); in emitPubSection()
233 for (const auto &Entry : Sect.Entries) { in emitPubSection()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DObject.h167 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
/freebsd/contrib/wpa/wpa_supplicant/
H A Dtodo.txt19 * OTP Extended Responses (Sect. 5.5)
22 RFC 3748 Sect. 4.2
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBSession.h50 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, PDB_SymType Type) = 0;
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp222 DIASession::findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, in findSymbolBySectOffset() argument
227 if (S_OK != Session->findSymbolByAddr(Sect, Offset, EnumVal, &Symbol)) in findSymbolBySectOffset()
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOBuilder.h323 RelocTarget addSymbol(StringRef Name, uint8_t Type, uint8_t Sect,
329 Sym.n_sect = Sect;
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc837 #define INSTR_PROF_SECT_START(Sect) \
838 INSTR_PROF_CONCAT(__start_,Sect)
839 #define INSTR_PROF_SECT_STOP(Sect) \
840 INSTR_PROF_CONCAT(__stop_,Sect)
/freebsd/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc837 #define INSTR_PROF_SECT_START(Sect) \
838 INSTR_PROF_CONCAT(__start_,Sect)
839 #define INSTR_PROF_SECT_STOP(Sect) \
840 INSTR_PROF_CONCAT(__stop_,Sect)
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCMachOStreamer.cpp88 void changeSection(MCSection *Sect, uint32_t Subsection = 0) override;
H A DXCOFFObjectWriter.cpp214 std::unique_ptr<XCOFFSection> Sect) in DwarfSectionEntry()
215 : SectionEntry(N, Flags | XCOFF::STYP_DWARF), DwarfSect(std::move(Sect)), in DwarfSectionEntry()

12