Lines Matching refs:LineTable
235 void MappingTraits<DWARFYAML::LineTable>::mapping( in mapping()
236 IO &IO, DWARFYAML::LineTable &LineTable) { in mapping() argument
237 IO.mapOptional("Format", LineTable.Format, dwarf::DWARF32); in mapping()
238 IO.mapOptional("Length", LineTable.Length); in mapping()
239 IO.mapRequired("Version", LineTable.Version); in mapping()
240 IO.mapOptional("PrologueLength", LineTable.PrologueLength); in mapping()
241 IO.mapRequired("MinInstLength", LineTable.MinInstLength); in mapping()
242 if(LineTable.Version >= 4) in mapping()
243 IO.mapRequired("MaxOpsPerInst", LineTable.MaxOpsPerInst); in mapping()
244 IO.mapRequired("DefaultIsStmt", LineTable.DefaultIsStmt); in mapping()
245 IO.mapRequired("LineBase", LineTable.LineBase); in mapping()
246 IO.mapRequired("LineRange", LineTable.LineRange); in mapping()
247 IO.mapOptional("OpcodeBase", LineTable.OpcodeBase); in mapping()
248 IO.mapOptional("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
249 IO.mapOptional("IncludeDirs", LineTable.IncludeDirs); in mapping()
250 IO.mapOptional("Files", LineTable.Files); in mapping()
251 IO.mapOptional("Opcodes", LineTable.Opcodes); in mapping()