Home
last modified time | relevance | path

Searched refs:ARange (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFYAML.cpp168 void MappingTraits<DWARFYAML::ARange>::mapping(IO &IO, in mapping()
169 DWARFYAML::ARange &ARange) { in mapping() argument
170 IO.mapOptional("Format", ARange.Format, dwarf::DWARF32); in mapping()
171 IO.mapOptional("Length", ARange.Length); in mapping()
172 IO.mapRequired("Version", ARange.Version); in mapping()
173 IO.mapRequired("CuOffset", ARange.CuOffset); in mapping()
174 IO.mapOptional("AddressSize", ARange.AddrSize); in mapping()
175 IO.mapOptional("SegmentSelectorSize", ARange.SegSize, 0); in mapping()
176 IO.mapOptional("Descriptors", ARange.Descriptors); in mapping()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenRegisters.h126 SubRegRange &ARange = A->Range.get(M); in addComposite() local
129 if (Range.Offset != (uint16_t)-1 && ARange.Offset != (uint16_t)-1 && in addComposite()
131 BRange.Offset = Range.Offset + ARange.Offset; in addComposite()
132 BRange.Size = ARange.Size; in addComposite()
138 SubRegRange &ARange = A->Range.get(DefaultMode); in addComposite() local
140 if (Range.Offset != (uint16_t)-1 && ARange.Offset != (uint16_t)-1 && in addComposite()
142 BRange.Offset = Range.Offset + ARange.Offset; in addComposite()
143 BRange.Size = ARange.Size; in addComposite()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h54 struct ARange { struct
239 std::optional<std::vector<ARange>> DebugAranges;
278 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::DWARFYAML::ARange) in LLVM_YAML_IS_SEQUENCE_VECTOR()
329 template <> struct MappingTraits<DWARFYAML::ARange> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
330 static void mapping(IO &IO, DWARFYAML::ARange &ARange); in LLVM_YAML_IS_SEQUENCE_VECTOR()