Home | History | Annotate | Download | only in SystemZ

Lines Matching full:high

63 class GPR64<bits<16> num, string n, GPR32 low, GPR32 high>
64 : SystemZRegWithSubregs<n, [low, high]> {
70 class GPR128<bits<16> num, string n, GPR64 low, GPR64 high>
71 : SystemZRegWithSubregs<n, [low, high]> {
101 // Combine the low and high GR32s into a single class. This can only be
102 // used for virtual registers if the high-word facility is available.
177 class FPR64<bits<16> num, string n, FPR32 high>
178 : SystemZRegWithSubregs<n, [high]> {
184 class FPR128<bits<16> num, string n, FPR64 low, FPR64 high>
185 : SystemZRegWithSubregs<n, [low, high]> {
218 // A full 128-bit vector register, with an FPR64 as its high part.
219 class VR128<bits<16> num, string n, FPR64 high>
220 : SystemZRegWithSubregs<n, [high]> {