Searched refs:SegmentInfo (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/ |
H A D | WasmYAML.h | 146 struct SegmentInfo { struct 258 std::vector<SegmentInfo> SegmentInfos; 441 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::WasmYAML::SegmentInfo) in LLVM_YAML_IS_SEQUENCE_VECTOR() 532 template <> struct MappingTraits<WasmYAML::SegmentInfo> { in LLVM_YAML_IS_SEQUENCE_VECTOR() 533 static void mapping(IO &IO, WasmYAML::SegmentInfo &SegmentInfo); in LLVM_YAML_IS_SEQUENCE_VECTOR()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | MemProfReader.cpp | 345 OS << " NumSegments: " << SegmentInfo.size() << "\n"; in printYAML() 351 for (const auto &Entry : SegmentInfo) { in printYAML() 458 for (const auto &Entry : SegmentInfo) { in setupForSymbolization() 703 if (!SegmentInfo.empty() && SegmentInfo != Entries) { in readRawProfile() 711 SegmentInfo.assign(Entries.begin(), Entries.end()); in readRawProfile()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | WasmYAML.cpp | 356 void MappingTraits<WasmYAML::SegmentInfo>::mapping( in mapping() 357 IO &IO, WasmYAML::SegmentInfo &SegmentInfo) { in mapping() argument 358 IO.mapRequired("Index", SegmentInfo.Index); in mapping() 359 IO.mapRequired("Name", SegmentInfo.Name); in mapping() 360 IO.mapRequired("Alignment", SegmentInfo.Alignment); in mapping() 361 IO.mapRequired("Flags", SegmentInfo.Flags); in mapping()
|
H A D | WasmEmitter.cpp | 234 for (const WasmYAML::SegmentInfo &SegmentInfo : Section.SegmentInfos) { in writeSectionContent() local 235 writeStringRef(SegmentInfo.Name, SubSection.getStream()); in writeSectionContent() 236 encodeULEB128(SegmentInfo.Alignment, SubSection.getStream()); in writeSectionContent() 237 encodeULEB128(SegmentInfo.Flags, SubSection.getStream()); in writeSectionContent()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | MemProfReader.h | 173 : SegmentInfo(Seg.begin(), Seg.end()), CallstackProfileData(Prof), 225 llvm::SmallVector<SegmentEntry, 2> SegmentInfo; variable
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.h | 310 struct SegmentInfo { struct 333 /// Returns the SegmentInfo for the given group. argument 334 SegmentInfo getSegInfo(orc::AllocGroup AG);
|
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | SyntheticSections.h | 816 struct SegmentInfo { struct 817 SegmentInfo(const OutputSegment *oseg) : oseg(oseg) {} in SegmentInfo() function 826 llvm::SmallVector<SegmentInfo, 4> fixupSegments; argument
|
H A D | SyntheticSections.cpp | 2348 size_t ChainedFixupsSection::SegmentInfo::getSize() const { in getSize() 2354 size_t ChainedFixupsSection::SegmentInfo::writeTo(uint8_t *buf) const { in writeTo() 2425 for (const SegmentInfo &seg : fixupSegments) { in writeTo() 2508 for (const SegmentInfo &seg : fixupSegments) in finalizeContents()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.cpp | 220 SimpleSegmentAlloc::SegmentInfo
|