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