Home
last modified time | relevance | path

Searched refs:SegmentInfo (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h146 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 DMemProfReader.cpp345 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 DWasmYAML.cpp356 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 DWasmEmitter.cpp234 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 DMemProfReader.h173 : 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 DJITLinkMemoryManager.h310 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 DSyntheticSections.h816 struct SegmentInfo { struct
817 SegmentInfo(const OutputSegment *oseg) : oseg(oseg) {} in SegmentInfo() function
826 llvm::SmallVector<SegmentInfo, 4> fixupSegments; argument
H A DSyntheticSections.cpp2348 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 DJITLinkMemoryManager.cpp220 SimpleSegmentAlloc::SegmentInfo