Lines Matching refs:LineTable
149 void MappingTraits<DWARFYAML::LineTable>::mapping( in mapping()
150 IO &IO, DWARFYAML::LineTable &LineTable) { in mapping() argument
151 IO.mapRequired("Length", LineTable.Length); in mapping()
152 IO.mapRequired("Version", LineTable.Version); in mapping()
153 IO.mapRequired("PrologueLength", LineTable.PrologueLength); in mapping()
154 IO.mapRequired("MinInstLength", LineTable.MinInstLength); in mapping()
155 if(LineTable.Version >= 4) in mapping()
156 IO.mapRequired("MaxOpsPerInst", LineTable.MaxOpsPerInst); in mapping()
157 IO.mapRequired("DefaultIsStmt", LineTable.DefaultIsStmt); in mapping()
158 IO.mapRequired("LineBase", LineTable.LineBase); in mapping()
159 IO.mapRequired("LineRange", LineTable.LineRange); in mapping()
160 IO.mapRequired("OpcodeBase", LineTable.OpcodeBase); in mapping()
161 IO.mapRequired("StandardOpcodeLengths", LineTable.StandardOpcodeLengths); in mapping()
162 IO.mapRequired("IncludeDirs", LineTable.IncludeDirs); in mapping()
163 IO.mapRequired("Files", LineTable.Files); in mapping()
164 IO.mapRequired("Opcodes", LineTable.Opcodes); in mapping()