xref: /openbmc/qemu/gdb-xml/loongarch-fpu.xml (revision d182c390)
1*d182c390SSong Gao<?xml version="1.0"?>
2*d182c390SSong Gao<!-- Copyright (C) 2021 Free Software Foundation, Inc.
3*d182c390SSong Gao
4*d182c390SSong Gao     Copying and distribution of this file, with or without modification,
5*d182c390SSong Gao     are permitted in any medium without royalty provided the copyright
6*d182c390SSong Gao     notice and this notice are preserved.  -->
7*d182c390SSong Gao
8*d182c390SSong Gao<!DOCTYPE feature SYSTEM "gdb-target.dtd">
9*d182c390SSong Gao<feature name="org.gnu.gdb.loongarch.fpu">
10*d182c390SSong Gao
11*d182c390SSong Gao  <union id="fputype">
12*d182c390SSong Gao    <field name="f" type="ieee_single"/>
13*d182c390SSong Gao    <field name="d" type="ieee_double"/>
14*d182c390SSong Gao  </union>
15*d182c390SSong Gao
16*d182c390SSong Gao  <reg name="f0" bitsize="64" type="fputype" group="float"/>
17*d182c390SSong Gao  <reg name="f1" bitsize="64" type="fputype" group="float"/>
18*d182c390SSong Gao  <reg name="f2" bitsize="64" type="fputype" group="float"/>
19*d182c390SSong Gao  <reg name="f3" bitsize="64" type="fputype" group="float"/>
20*d182c390SSong Gao  <reg name="f4" bitsize="64" type="fputype" group="float"/>
21*d182c390SSong Gao  <reg name="f5" bitsize="64" type="fputype" group="float"/>
22*d182c390SSong Gao  <reg name="f6" bitsize="64" type="fputype" group="float"/>
23*d182c390SSong Gao  <reg name="f7" bitsize="64" type="fputype" group="float"/>
24*d182c390SSong Gao  <reg name="f8" bitsize="64" type="fputype" group="float"/>
25*d182c390SSong Gao  <reg name="f9" bitsize="64" type="fputype" group="float"/>
26*d182c390SSong Gao  <reg name="f10" bitsize="64" type="fputype" group="float"/>
27*d182c390SSong Gao  <reg name="f11" bitsize="64" type="fputype" group="float"/>
28*d182c390SSong Gao  <reg name="f12" bitsize="64" type="fputype" group="float"/>
29*d182c390SSong Gao  <reg name="f13" bitsize="64" type="fputype" group="float"/>
30*d182c390SSong Gao  <reg name="f14" bitsize="64" type="fputype" group="float"/>
31*d182c390SSong Gao  <reg name="f15" bitsize="64" type="fputype" group="float"/>
32*d182c390SSong Gao  <reg name="f16" bitsize="64" type="fputype" group="float"/>
33*d182c390SSong Gao  <reg name="f17" bitsize="64" type="fputype" group="float"/>
34*d182c390SSong Gao  <reg name="f18" bitsize="64" type="fputype" group="float"/>
35*d182c390SSong Gao  <reg name="f19" bitsize="64" type="fputype" group="float"/>
36*d182c390SSong Gao  <reg name="f20" bitsize="64" type="fputype" group="float"/>
37*d182c390SSong Gao  <reg name="f21" bitsize="64" type="fputype" group="float"/>
38*d182c390SSong Gao  <reg name="f22" bitsize="64" type="fputype" group="float"/>
39*d182c390SSong Gao  <reg name="f23" bitsize="64" type="fputype" group="float"/>
40*d182c390SSong Gao  <reg name="f24" bitsize="64" type="fputype" group="float"/>
41*d182c390SSong Gao  <reg name="f25" bitsize="64" type="fputype" group="float"/>
42*d182c390SSong Gao  <reg name="f26" bitsize="64" type="fputype" group="float"/>
43*d182c390SSong Gao  <reg name="f27" bitsize="64" type="fputype" group="float"/>
44*d182c390SSong Gao  <reg name="f28" bitsize="64" type="fputype" group="float"/>
45*d182c390SSong Gao  <reg name="f29" bitsize="64" type="fputype" group="float"/>
46*d182c390SSong Gao  <reg name="f30" bitsize="64" type="fputype" group="float"/>
47*d182c390SSong Gao  <reg name="f31" bitsize="64" type="fputype" group="float"/>
48*d182c390SSong Gao  <reg name="fcc" bitsize="64" type="uint64" group="float"/>
49*d182c390SSong Gao  <reg name="fcsr" bitsize="32" type="uint32" group="float"/>
50*d182c390SSong Gao</feature>
51