Home
last modified time | relevance | path

Searched refs:SegSize (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAddr.cpp80 SegSize = Data.getU8(OffsetPtr); in extractV5()
89 if (SegSize != 0) in extractV5()
93 Offset, SegSize); in extractV5()
117 SegSize = 0; in extractPreStandard()
146 << format(", seg_size = 0x%2.2" PRIx8, SegSize) << "\n"; in dump()
H A DDWARFListTable.cpp49 HeaderData.SegSize = Data.getU8(OffsetPtr); in extract()
62 if (HeaderData.SegSize != 0) in extract()
66 SectionName.data(), HeaderOffset, HeaderData.SegSize); in extract()
89 HeaderData.Version, HeaderData.AddrSize, HeaderData.SegSize, in dump()
H A DDWARFDebugArangeSet.cpp75 HeaderData.SegSize = data.getU8(offset_ptr, &Err); in extract()
95 if (HeaderData.SegSize != 0) in extract()
172 << format("seg_size = 0x%2.2x\n", HeaderData.SegSize); in dump()
/llvm-project-15.0.7/llvm/unittests/DebugInfo/DWARF/
H A DDwarfGenerator.h182 uint8_t SegSize = 0)
183 : Version(Version), Format(Format), AddrSize(AddrSize), SegSize(SegSize) { in Version()
235 uint8_t SegSize; variable
H A DDwarfGenerator.cpp297 Asm.emitInt8(SegSize); in writeDefaultPrologue()
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAddr.h40 uint8_t SegSize; variable
88 uint8_t getSegmentSelectorSize() const { return SegSize; } in getSegmentSelectorSize()
H A DDWARFDebugArangeSet.h41 uint8_t SegSize; member
H A DDWARFListTable.h68 uint8_t SegSize; member
/llvm-project-15.0.7/llvm/test/tools/yaml2obj/ELF/DWARF/
H A Ddebug-aranges.yaml27 ## | | | | +- SegSize (1-byte) 0x00
42 ## | | | | +- SegSize (1-byte) 0x00
102 ## | | | | +- SegSize (1-byte) 0x00
117 ## | | | | +- SegSize (1-byte) 0x00
157 ## | | +- SegSize (1-byte) 0x00
168 ## | | | | +- SegSize (1-byte) 0x00
212 ## | | +- SegSize (1-byte) 0x00
223 ## | | | | +- SegSize (1-byte) 0x00
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp91 uint64_t SegSize = alignTo(Seg.ContentSize + Seg.ZeroFillSize, PageSize); in getContiguousPageBasedLayoutSizes() local
93 SegsSizes.StandardSegs += SegSize; in getContiguousPageBasedLayoutSizes()
95 SegsSizes.FinalizeSegs += SegSize; in getContiguousPageBasedLayoutSizes()
284 uint64_t SegSize = in applyProtections() local
286 sys::MemoryBlock MB(Seg.WorkingMem, SegSize); in applyProtections()
/llvm-project-15.0.7/llvm/tools/obj2yaml/
H A Ddwarf2yaml.cpp120 Range.SegSize = Set.getHeader().SegSize; in dumpDebugARanges()
/llvm-project-15.0.7/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp148 IO.mapOptional("SegmentSelectorSize", ARange.SegSize, 0); in mapping()
H A DDWARFEmitter.cpp171 writeInteger((uint8_t)Range.SegSize, OS, DI.IsLittleEndian); in emitDebugAranges()
/llvm-project-15.0.7/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h59 yaml::Hex8 SegSize; member
/llvm-project-15.0.7/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp5219 uint64_t SegSize; in narrowScalarExtract() local
5222 SegSize = std::min(NarrowSize, OpStart + OpSize - SrcStart); in narrowScalarExtract()
5225 SegSize = std::min(SrcStart + NarrowSize - OpStart, OpSize); in narrowScalarExtract()
5229 if (ExtractOffset != 0 || SegSize != NarrowSize) { in narrowScalarExtract()
5231 SegReg = MRI.createGenericVirtualRegister(LLT::scalar(SegSize)); in narrowScalarExtract()
5296 uint64_t SegSize; in narrowScalarInsert() local
5300 SegSize = std::min(NarrowSize, OpStart + OpSize - DstStart); in narrowScalarInsert()
5304 SegSize = in narrowScalarInsert()
5309 if (ExtractOffset != 0 || SegSize != OpSize) { in narrowScalarInsert()
5311 SegReg = MRI.createGenericVirtualRegister(LLT::scalar(SegSize)); in narrowScalarInsert()
/llvm-project-15.0.7/llvm/tools/llvm-jitlink/
H A Dllvm-jitlink.cpp517 uint64_t SegSize = in allocate() local
519 sys::MemoryBlock MB(Seg.WorkingMem, SegSize); in allocate()