/llvm-project/bolt/unittests/Core/ |
H A D | BinaryContext.cpp | 165 SegmentInfo{0, 0x10e8c2b4, 0, 0x10e8c2b4, 0x1000, true}; in TEST_P() 167 SegmentInfo{0x10e8d2b4, 0x3952faec, 0x10e8c2b4, 0x3952faec, 0x1000, true}; in TEST_P() 169 SegmentInfo{0x4a3bddc0, 0x148e828, 0x4a3bbdc0, 0x148e828, 0x1000, true}; in TEST_P() 171 SegmentInfo{0x4b84d5e8, 0x294f830, 0x4b84a5e8, 0x3d3820, 0x1000, true}; in TEST_P() 186 BC->SegmentMapInfo[0] = SegmentInfo{0, 0x2177c, 0, 0x2177c, 0x10000, true}; in TEST_P() 188 SegmentInfo{0x31860, 0x370, 0x21860, 0x370, 0x10000, true}; in TEST_P() 190 SegmentInfo{0x41c20, 0x1f8, 0x21c20, 0x1f8, 0x10000, true}; in TEST_P() 192 SegmentInfo{0x54e18, 0x51, 0x24e18, 0x51, 0x10000, true}; in TEST_P() 208 BC->SegmentMapInfo[0] = SegmentInfo{0, 0x1d1c, 0, 0x1d1c, 0x10000, false}; 210 SegmentInfo{ [all...] |
/llvm-project/llvm/tools/obj2yaml/ |
H A D | wasm2yaml.cpp | 104 WasmYAML::SegmentInfo SegmentInfo; in dumpCustomSection() local 105 SegmentInfo.Name = Segment.Data.Name; in dumpCustomSection() 106 SegmentInfo.Index = SegmentIndex; in dumpCustomSection() 107 SegmentInfo.Alignment = Segment.Data.Alignment; in dumpCustomSection() 108 SegmentInfo.Flags = Segment.Data.LinkingFlags; in dumpCustomSection() 109 LinkingSec->SegmentInfos.push_back(SegmentInfo); in dumpCustomSection()
|
/llvm-project/llvm/test/ObjectYAML/wasm/ |
H A D | linking_section.yaml | 40 SegmentInfo: 59 # CHECK-NEXT: SegmentInfo:
|
/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()
|
/llvm-project/llvm/lib/ObjectYAML/ |
H A D | WasmYAML.cpp | 77 IO.mapOptional("SegmentInfo", Section.SegmentInfos); in sectionMapping() 355 void MappingTraits<WasmYAML::SegmentInfo>::mapping( 356 IO &IO, WasmYAML::SegmentInfo &SegmentInfo) { in mapping() 357 IO.mapRequired("Index", SegmentInfo.Index); in mapping() argument 358 IO.mapRequired("Name", SegmentInfo.Name); in mapping() 359 IO.mapRequired("Alignment", SegmentInfo.Alignment); in mapping() 360 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()
|
/llvm-project/llvm/lib/ProfileData/ |
H A D | MemProfReader.cpp | 320 OS << " NumSegments: " << SegmentInfo.size() << "\n"; in hasFormat() 326 for (const auto &Entry : SegmentInfo) { in hasFormat() 433 for (const auto &Entry : SegmentInfo) { in initialize() 666 if (!SegmentInfo.empty() && SegmentInfo != Entries) { in peekBuildIds() 674 SegmentInfo.assign(Entries.begin(), Entries.end());
|
/llvm-project/llvm/test/MC/WebAssembly/ |
H A D | array-fill.ll | 21 ; CHECK-NEXT: SegmentInfo:
|
H A D | explicit-sections.ll | 60 ; CHECK-NEXT: SegmentInfo:
|
H A D | no-dead-strip.ll | 58 ; CHECK-NEXT: SegmentInfo:
|
H A D | bss.ll | 64 ; CHECK-NEXT: SegmentInfo:
|
H A D | tls64.s | 68 # CHECK-OBJ-NEXT: SegmentInfo:
|
H A D | unnamed-data.ll | 73 ; CHECK-NEXT: SegmentInfo:
|
H A D | tls.s | 85 # CHECK-OBJ-NEXT: SegmentInfo:
|
H A D | data-section.s | 92 # BIN-NEXT: SegmentInfo:
|
H A D | comdat.ll | 106 ; CHECK-NEXT: SegmentInfo:
|
/llvm-project/llvm/include/llvm/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.h | 313 struct SegmentInfo { 339 /// Returns the SegmentInfo for the given group. in finalize() 340 SegmentInfo getSegInfo(orc::AllocGroup AG); 310 struct SegmentInfo { global() struct 333 WorkingMemSegmentInfo global() argument
|
/llvm-project/llvm/test/tools/llvm-nm/wasm/ |
H A D | exports.yaml | 59 SegmentInfo:
|
H A D | weak-symbols.yaml | 74 SegmentInfo:
|
/llvm-project/lld/test/wasm/ |
H A D | shared-memory-no-atomics.yaml | 44 SegmentInfo:
|
H A D | relocatable-comdat.s | 40 # CHECK: SegmentInfo:
|
H A D | tls-implicit.yaml | 66 SegmentInfo:
|
H A D | shared-memory.yaml | 52 SegmentInfo:
|
H A D | custom-section-name.ll | 45 ; RELOC-LABEL: SegmentInfo:
|
/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | MemProfReader.h | 145 : SegmentInfo(Seg.begin(), Seg.end()), CallstackProfileData(Prof), 197 llvm::SmallVector<SegmentEntry, 2> SegmentInfo; 225 llvm::SmallVector<SegmentEntry, 2> SegmentInfo; global() variable
|