Lines Matching defs:LineTable
262 void MappingTraits<DWARFYAML::LineTable>::mapping(
263 IO &IO, DWARFYAML::LineTable &LineTable) {
264 IO.mapOptional("Format", LineTable.Format, dwarf::DWARF32);
265 IO.mapOptional("Length", LineTable.Length);
266 IO.mapRequired("Version", LineTable.Version);
267 IO.mapOptional("PrologueLength", LineTable.PrologueLength);
268 IO.mapRequired("MinInstLength", LineTable.MinInstLength);
269 if(LineTable.Version >= 4)
270 IO.mapRequired("MaxOpsPerInst", LineTable.MaxOpsPerInst);
271 IO.mapRequired("DefaultIsStmt", LineTable.DefaultIsStmt);
272 IO.mapRequired("LineBase", LineTable.LineBase);
273 IO.mapRequired("LineRange", LineTable.LineRange);
274 IO.mapOptional("OpcodeBase", LineTable.OpcodeBase);
275 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths);
276 IO.mapOptional("IncludeDirs", LineTable.IncludeDirs);
277 IO.mapOptional("Files", LineTable.Files);
278 IO.mapOptional("Opcodes", LineTable.Opcodes);