Home | History | Annotate | Download | only in Mips

Lines Matching defs:FP

54   unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
146 // Insert instruction "move $fp, $sp" at this location.
147 BuildMI(MBB, MBBI, dl, TII.get(ADDu), FP).addReg(SP).addReg(ZERO);
149 // emit ".cfi_def_cfa_register $fp"
153 DstML = MachineLocation(FP);
170 unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
182 // Insert instruction "move $sp, $fp" at this location.
183 BuildMI(MBB, I, dl, TII.get(ADDu), SP).addReg(FP).addReg(ZERO);
277 unsigned FP = STI.isABI_N64() ? Mips::FP_64 : Mips::FP;
279 // Mark $fp as used if function has dedicated frame pointer.
281 MRI.setPhysRegUsed(FP);