/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | MachODumper.cpp | 345 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 D | SymbolCache.cpp | 314 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 D | NativeSession.cpp | 266 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 D | InstrProfilingPort.h | 51 #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 D | ObjectFileTransformer.cpp | 35 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 D | MachOLinkGraphBuilder.h | 41 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 D | MachOLinkGraphBuilder.cpp | 244 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 D | ELFLinkGraphBuilder.h | 126 virtual bool excludeSection(const typename ELFT::Shdr &Sect) const { in excludeSection() argument
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | SectCreate.cpp | 24 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 D | SymbolCache.h | 118 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 D | NativeSession.h | 65 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 D | DebugInfoLinker.cpp | 48 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 D | MachOObjectFile.cpp | 184 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 D | Object.cpp | 221 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect, in LLVMMoveToContainingSection() argument 230 *unwrap(Sect) = *SecOrErr; in LLVMMoveToContainingSection()
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/ |
H A D | DylibReader.cpp | 221 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 D | DWARFEmitter.cpp | 227 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 D | Object.h | 167 void LLVMMoveToContainingSection(LLVMSectionIteratorRef Sect,
|
/freebsd/contrib/wpa/wpa_supplicant/ |
H A D | todo.txt | 19 * OTP Extended Responses (Sect. 5.5) 22 RFC 3748 Sect. 4.2
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/ |
H A D | IPDBSession.h | 50 findSymbolBySectOffset(uint32_t Sect, uint32_t Offset, PDB_SymType Type) = 0;
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/ |
H A D | DIASession.cpp | 222 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 D | MachOBuilder.h | 323 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 D | InstrProfData.inc | 837 #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 D | InstrProfData.inc | 837 #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 D | MCMachOStreamer.cpp | 88 void changeSection(MCSection *Sect, uint32_t Subsection = 0) override;
|
H A D | XCOFFObjectWriter.cpp | 214 std::unique_ptr<XCOFFSection> Sect) in DwarfSectionEntry() 215 : SectionEntry(N, Flags | XCOFF::STYP_DWARF), DwarfSect(std::move(Sect)), in DwarfSectionEntry()
|