Home | History | Annotate | Download | only in config

Lines Matching defs:regnum

642    %r<REGNUM> which has the value <REGNUM>.
645 but use %sr<REGNUM> and %cr<REGNUM> as their predefined names.
648 %fr<REGNUM>. Floating point registers have additional predefined
650 again have the value <REGNUM>.
8671 unsigned int regnum = -1;
8687 regnum = strtoul (p, &q, 10);
8688 if (p == q || *q || regnum >= 32)
8694 regnum = strtoul (p, &q, 10);
8696 if (p == q || *q || regnum <= 4 || regnum >= 32)
8698 regnum += 32 - 4;
8702 || regnum <= 4 || regnum >= 32)
8704 regnum = (regnum - 4) * 2 + 32;
8706 regnum++;
8709 return regnum;