blob: 46f8a72fe03894302f8fc4ba87c3f35fa80a9f97 [file] [log] [blame]
Misha Brukmanf2ccb772004-08-17 04:55:41 +00001//===- PPC32InstrInfo.cpp - PowerPC32 Instruction Information ---*- C++ -*-===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Misha Brukmanf2ccb772004-08-17 04:55:41 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Misha Brukmanf2ccb772004-08-17 04:55:41 +00008//===----------------------------------------------------------------------===//
9//
10// This file contains the PowerPC implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PPC32InstrInfo.h"
Chris Lattner4c7b43b2005-10-14 23:37:35 +000015#include "PPCGenInstrInfo.inc"
Chris Lattner26689592005-10-14 23:51:18 +000016#include "PPC.h"
Misha Brukmanf2ccb772004-08-17 04:55:41 +000017#include "llvm/CodeGen/MachineInstrBuilder.h"
18#include <iostream>
19using namespace llvm;
20
21PPC32InstrInfo::PPC32InstrInfo()
Chris Lattner4c7b43b2005-10-14 23:37:35 +000022 : TargetInstrInfo(PPCInsts, sizeof(PPCInsts)/sizeof(PPCInsts[0])) {}
Misha Brukmanf2ccb772004-08-17 04:55:41 +000023
24bool PPC32InstrInfo::isMoveInstr(const MachineInstr& MI,
25 unsigned& sourceReg,
26 unsigned& destReg) const {
27 MachineOpCode oc = MI.getOpcode();
28 if (oc == PPC::OR) { // or r1, r2, r2
29 assert(MI.getNumOperands() == 3 &&
30 MI.getOperand(0).isRegister() &&
31 MI.getOperand(1).isRegister() &&
32 MI.getOperand(2).isRegister() &&
33 "invalid PPC OR instruction!");
34 if (MI.getOperand(1).getReg() == MI.getOperand(2).getReg()) {
35 sourceReg = MI.getOperand(1).getReg();
36 destReg = MI.getOperand(0).getReg();
37 return true;
38 }
39 } else if (oc == PPC::ADDI) { // addi r1, r2, 0
40 assert(MI.getNumOperands() == 3 &&
41 MI.getOperand(0).isRegister() &&
42 MI.getOperand(2).isImmediate() &&
43 "invalid PPC ADDI instruction!");
44 if (MI.getOperand(1).isRegister() && MI.getOperand(2).getImmedValue()==0) {
45 sourceReg = MI.getOperand(1).getReg();
46 destReg = MI.getOperand(0).getReg();
47 return true;
48 }
Nate Begemancb90de32004-10-07 22:26:12 +000049 } else if (oc == PPC::ORI) { // ori r1, r2, 0
50 assert(MI.getNumOperands() == 3 &&
51 MI.getOperand(0).isRegister() &&
52 MI.getOperand(1).isRegister() &&
53 MI.getOperand(2).isImmediate() &&
54 "invalid PPC ORI instruction!");
55 if (MI.getOperand(2).getImmedValue()==0) {
56 sourceReg = MI.getOperand(1).getReg();
57 destReg = MI.getOperand(0).getReg();
58 return true;
59 }
Chris Lattnereb5d47d2005-10-07 05:00:52 +000060 } else if (oc == PPC::FMRS || oc == PPC::FMRD ||
61 oc == PPC::FMRSD) { // fmr r1, r2
Misha Brukmanf2ccb772004-08-17 04:55:41 +000062 assert(MI.getNumOperands() == 2 &&
63 MI.getOperand(0).isRegister() &&
64 MI.getOperand(1).isRegister() &&
65 "invalid PPC FMR instruction");
66 sourceReg = MI.getOperand(1).getReg();
67 destReg = MI.getOperand(0).getReg();
68 return true;
Nate Begeman7af02482005-04-12 07:04:16 +000069 } else if (oc == PPC::MCRF) { // mcrf cr1, cr2
70 assert(MI.getNumOperands() == 2 &&
71 MI.getOperand(0).isRegister() &&
72 MI.getOperand(1).isRegister() &&
73 "invalid PPC MCRF instruction");
74 sourceReg = MI.getOperand(1).getReg();
75 destReg = MI.getOperand(0).getReg();
76 return true;
Misha Brukmanf2ccb772004-08-17 04:55:41 +000077 }
78 return false;
79}
Chris Lattner043870d2005-09-09 18:17:41 +000080
81// commuteInstruction - We can commute rlwimi instructions, but only if the
82// rotate amt is zero. We also have to munge the immediates a bit.
83MachineInstr *PPC32InstrInfo::commuteInstruction(MachineInstr *MI) const {
84 // Normal instructions can be commuted the obvious way.
85 if (MI->getOpcode() != PPC::RLWIMI)
86 return TargetInstrInfo::commuteInstruction(MI);
87
88 // Cannot commute if it has a non-zero rotate count.
89 if (MI->getOperand(3).getImmedValue() != 0)
90 return 0;
91
92 // If we have a zero rotate count, we have:
93 // M = mask(MB,ME)
94 // Op0 = (Op1 & ~M) | (Op2 & M)
95 // Change this to:
96 // M = mask((ME+1)&31, (MB-1)&31)
97 // Op0 = (Op2 & ~M) | (Op1 & M)
98
99 // Swap op1/op2
100 unsigned Reg1 = MI->getOperand(1).getReg();
101 unsigned Reg2 = MI->getOperand(2).getReg();
102 MI->SetMachineOperandReg(2, Reg1);
103 MI->SetMachineOperandReg(1, Reg2);
104
105 // Swap the mask around.
106 unsigned MB = MI->getOperand(4).getImmedValue();
107 unsigned ME = MI->getOperand(5).getImmedValue();
108 MI->getOperand(4).setImmedValue((ME+1) & 31);
109 MI->getOperand(5).setImmedValue((MB-1) & 31);
110 return MI;
111}