Lines Matching full:xml
10 import xml.etree.ElementTree as ET
19 Iterate through the XML descriptions and validate.
26 # First check the XML descriptions we have sent. Most arches
27 # support XML but a few of the ancient ones don't in which case we
31 xml = gdb.execute("maint print xml-tdesc", False, True)
33 print("SKIP: target does not support XML")
39 tree = ET.fromstring(xml)
65 f"counted all {total_regs} registers in XML")
72 Helper to find a register from the map via its XML regnum
82 Cross-check the list of remote-registers with the XML info.
112 # check in the XML
116 report(False, f"{r_name} not in XML description")
122 report(False, f"{r_name} {r_regnum} == {x_regnum} (xml)")
127 "All XML Registers accounted for")
129 print(f"xml-tdesc has {total_regs} registers")