Lines Matching defs:LineTable
278 void MappingTraits<DWARFYAML::LineTable>::mapping(
279 IO &IO, DWARFYAML::LineTable &LineTable) {
280 IO.mapOptional("Format", LineTable.Format, dwarf::DWARF32);
281 IO.mapOptional("Length", LineTable.Length);
282 IO.mapRequired("Version", LineTable.Version);
283 IO.mapOptional("PrologueLength", LineTable.PrologueLength);
284 IO.mapRequired("MinInstLength", LineTable.MinInstLength);
285 if(LineTable.Version >= 4)
286 IO.mapRequired("MaxOpsPerInst", LineTable.MaxOpsPerInst);
287 IO.mapRequired("DefaultIsStmt", LineTable.DefaultIsStmt);
288 IO.mapRequired("LineBase", LineTable.LineBase);
289 IO.mapRequired("LineRange", LineTable.LineRange);
290 IO.mapOptional("OpcodeBase", LineTable.OpcodeBase);
291 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths);
292 IO.mapOptional("IncludeDirs", LineTable.IncludeDirs);
293 IO.mapOptional("Files", LineTable.Files);
294 IO.mapOptional("Opcodes", LineTable.Opcodes);