2005-10-16 13:39:50 +08:00
|
|
|
//===- PPCInstrInfo.cpp - PowerPC32 Instruction Information -----*- C++ -*-===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-08-17 12:55:41 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-08-17 12:55:41 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file contains the PowerPC implementation of the TargetInstrInfo class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-15 07:59:06 +08:00
|
|
|
#include "PPCInstrInfo.h"
|
2005-10-15 07:37:35 +08:00
|
|
|
#include "PPCGenInstrInfo.inc"
|
2006-06-17 08:01:04 +08:00
|
|
|
#include "PPCTargetMachine.h"
|
2004-08-17 12:55:41 +08:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
|
|
|
#include <iostream>
|
|
|
|
using namespace llvm;
|
|
|
|
|
2006-06-17 08:01:04 +08:00
|
|
|
PPCInstrInfo::PPCInstrInfo(PPCTargetMachine &tm)
|
2006-07-11 08:48:23 +08:00
|
|
|
: TargetInstrInfo(PPCInsts, sizeof(PPCInsts)/sizeof(PPCInsts[0])), TM(tm),
|
2006-11-14 07:36:35 +08:00
|
|
|
RI(*TM.getSubtargetImpl(), *this) {}
|
2006-06-17 08:01:04 +08:00
|
|
|
|
|
|
|
/// getPointerRegClass - Return the register class to use to hold pointers.
|
|
|
|
/// This is used for addressing modes.
|
|
|
|
const TargetRegisterClass *PPCInstrInfo::getPointerRegClass() const {
|
|
|
|
if (TM.getSubtargetImpl()->isPPC64())
|
|
|
|
return &PPC::G8RCRegClass;
|
|
|
|
else
|
|
|
|
return &PPC::GPRCRegClass;
|
|
|
|
}
|
|
|
|
|
2004-08-17 12:55:41 +08:00
|
|
|
|
2005-10-16 13:39:50 +08:00
|
|
|
bool PPCInstrInfo::isMoveInstr(const MachineInstr& MI,
|
|
|
|
unsigned& sourceReg,
|
|
|
|
unsigned& destReg) const {
|
2004-08-17 12:55:41 +08:00
|
|
|
MachineOpCode oc = MI.getOpcode();
|
2006-06-21 07:18:58 +08:00
|
|
|
if (oc == PPC::OR || oc == PPC::OR8 || oc == PPC::VOR ||
|
2005-10-19 09:50:36 +08:00
|
|
|
oc == PPC::OR4To8 || oc == PPC::OR8To4) { // or r1, r2, r2
|
2004-08-17 12:55:41 +08:00
|
|
|
assert(MI.getNumOperands() == 3 &&
|
|
|
|
MI.getOperand(0).isRegister() &&
|
|
|
|
MI.getOperand(1).isRegister() &&
|
|
|
|
MI.getOperand(2).isRegister() &&
|
|
|
|
"invalid PPC OR instruction!");
|
|
|
|
if (MI.getOperand(1).getReg() == MI.getOperand(2).getReg()) {
|
|
|
|
sourceReg = MI.getOperand(1).getReg();
|
|
|
|
destReg = MI.getOperand(0).getReg();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (oc == PPC::ADDI) { // addi r1, r2, 0
|
|
|
|
assert(MI.getNumOperands() == 3 &&
|
|
|
|
MI.getOperand(0).isRegister() &&
|
|
|
|
MI.getOperand(2).isImmediate() &&
|
|
|
|
"invalid PPC ADDI instruction!");
|
|
|
|
if (MI.getOperand(1).isRegister() && MI.getOperand(2).getImmedValue()==0) {
|
|
|
|
sourceReg = MI.getOperand(1).getReg();
|
|
|
|
destReg = MI.getOperand(0).getReg();
|
|
|
|
return true;
|
|
|
|
}
|
2004-10-08 06:26:12 +08:00
|
|
|
} else if (oc == PPC::ORI) { // ori r1, r2, 0
|
|
|
|
assert(MI.getNumOperands() == 3 &&
|
|
|
|
MI.getOperand(0).isRegister() &&
|
|
|
|
MI.getOperand(1).isRegister() &&
|
|
|
|
MI.getOperand(2).isImmediate() &&
|
|
|
|
"invalid PPC ORI instruction!");
|
|
|
|
if (MI.getOperand(2).getImmedValue()==0) {
|
|
|
|
sourceReg = MI.getOperand(1).getReg();
|
|
|
|
destReg = MI.getOperand(0).getReg();
|
|
|
|
return true;
|
|
|
|
}
|
2005-10-07 13:00:52 +08:00
|
|
|
} else if (oc == PPC::FMRS || oc == PPC::FMRD ||
|
|
|
|
oc == PPC::FMRSD) { // fmr r1, r2
|
2004-08-17 12:55:41 +08:00
|
|
|
assert(MI.getNumOperands() == 2 &&
|
|
|
|
MI.getOperand(0).isRegister() &&
|
|
|
|
MI.getOperand(1).isRegister() &&
|
|
|
|
"invalid PPC FMR instruction");
|
|
|
|
sourceReg = MI.getOperand(1).getReg();
|
|
|
|
destReg = MI.getOperand(0).getReg();
|
|
|
|
return true;
|
2005-04-12 15:04:16 +08:00
|
|
|
} else if (oc == PPC::MCRF) { // mcrf cr1, cr2
|
|
|
|
assert(MI.getNumOperands() == 2 &&
|
|
|
|
MI.getOperand(0).isRegister() &&
|
|
|
|
MI.getOperand(1).isRegister() &&
|
|
|
|
"invalid PPC MCRF instruction");
|
|
|
|
sourceReg = MI.getOperand(1).getReg();
|
|
|
|
destReg = MI.getOperand(0).getReg();
|
|
|
|
return true;
|
2004-08-17 12:55:41 +08:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2005-09-10 02:17:41 +08:00
|
|
|
|
2006-02-03 04:12:32 +08:00
|
|
|
unsigned PPCInstrInfo::isLoadFromStackSlot(MachineInstr *MI,
|
2006-03-17 06:24:02 +08:00
|
|
|
int &FrameIndex) const {
|
2006-02-03 04:12:32 +08:00
|
|
|
switch (MI->getOpcode()) {
|
|
|
|
default: break;
|
|
|
|
case PPC::LD:
|
|
|
|
case PPC::LWZ:
|
|
|
|
case PPC::LFS:
|
|
|
|
case PPC::LFD:
|
|
|
|
if (MI->getOperand(1).isImmediate() && !MI->getOperand(1).getImmedValue() &&
|
|
|
|
MI->getOperand(2).isFrameIndex()) {
|
|
|
|
FrameIndex = MI->getOperand(2).getFrameIndex();
|
|
|
|
return MI->getOperand(0).getReg();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
2006-02-03 04:16:12 +08:00
|
|
|
}
|
2006-02-03 04:12:32 +08:00
|
|
|
|
2006-02-03 04:16:12 +08:00
|
|
|
unsigned PPCInstrInfo::isStoreToStackSlot(MachineInstr *MI,
|
|
|
|
int &FrameIndex) const {
|
|
|
|
switch (MI->getOpcode()) {
|
|
|
|
default: break;
|
2006-02-03 05:07:50 +08:00
|
|
|
case PPC::STD:
|
2006-02-03 04:16:12 +08:00
|
|
|
case PPC::STW:
|
|
|
|
case PPC::STFS:
|
|
|
|
case PPC::STFD:
|
|
|
|
if (MI->getOperand(1).isImmediate() && !MI->getOperand(1).getImmedValue() &&
|
|
|
|
MI->getOperand(2).isFrameIndex()) {
|
|
|
|
FrameIndex = MI->getOperand(2).getFrameIndex();
|
|
|
|
return MI->getOperand(0).getReg();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2006-02-03 04:12:32 +08:00
|
|
|
|
2005-09-10 02:17:41 +08:00
|
|
|
// commuteInstruction - We can commute rlwimi instructions, but only if the
|
|
|
|
// rotate amt is zero. We also have to munge the immediates a bit.
|
2005-10-16 13:39:50 +08:00
|
|
|
MachineInstr *PPCInstrInfo::commuteInstruction(MachineInstr *MI) const {
|
2005-09-10 02:17:41 +08:00
|
|
|
// Normal instructions can be commuted the obvious way.
|
|
|
|
if (MI->getOpcode() != PPC::RLWIMI)
|
|
|
|
return TargetInstrInfo::commuteInstruction(MI);
|
|
|
|
|
|
|
|
// Cannot commute if it has a non-zero rotate count.
|
|
|
|
if (MI->getOperand(3).getImmedValue() != 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
// If we have a zero rotate count, we have:
|
|
|
|
// M = mask(MB,ME)
|
|
|
|
// Op0 = (Op1 & ~M) | (Op2 & M)
|
|
|
|
// Change this to:
|
|
|
|
// M = mask((ME+1)&31, (MB-1)&31)
|
|
|
|
// Op0 = (Op2 & ~M) | (Op1 & M)
|
|
|
|
|
|
|
|
// Swap op1/op2
|
|
|
|
unsigned Reg1 = MI->getOperand(1).getReg();
|
|
|
|
unsigned Reg2 = MI->getOperand(2).getReg();
|
2006-05-05 01:52:23 +08:00
|
|
|
MI->getOperand(2).setReg(Reg1);
|
|
|
|
MI->getOperand(1).setReg(Reg2);
|
2005-09-10 02:17:41 +08:00
|
|
|
|
|
|
|
// Swap the mask around.
|
|
|
|
unsigned MB = MI->getOperand(4).getImmedValue();
|
|
|
|
unsigned ME = MI->getOperand(5).getImmedValue();
|
|
|
|
MI->getOperand(4).setImmedValue((ME+1) & 31);
|
|
|
|
MI->getOperand(5).setImmedValue((MB-1) & 31);
|
|
|
|
return MI;
|
|
|
|
}
|
2006-03-06 07:49:55 +08:00
|
|
|
|
|
|
|
void PPCInstrInfo::insertNoop(MachineBasicBlock &MBB,
|
|
|
|
MachineBasicBlock::iterator MI) const {
|
|
|
|
BuildMI(MBB, MI, PPC::NOP, 0);
|
|
|
|
}
|
2006-10-14 05:21:17 +08:00
|
|
|
|
|
|
|
|
|
|
|
// Branch analysis.
|
|
|
|
bool PPCInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB,
|
|
|
|
MachineBasicBlock *&FBB,
|
|
|
|
std::vector<MachineOperand> &Cond) const {
|
|
|
|
// If the block has no terminators, it just falls into the block after it.
|
|
|
|
MachineBasicBlock::iterator I = MBB.end();
|
|
|
|
if (I == MBB.begin() || !isTerminatorInstr((--I)->getOpcode()))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// Get the last instruction in the block.
|
|
|
|
MachineInstr *LastInst = I;
|
|
|
|
|
|
|
|
// If there is only one terminator instruction, process it.
|
|
|
|
if (I == MBB.begin() || !isTerminatorInstr((--I)->getOpcode())) {
|
|
|
|
if (LastInst->getOpcode() == PPC::B) {
|
|
|
|
TBB = LastInst->getOperand(0).getMachineBasicBlock();
|
|
|
|
return false;
|
|
|
|
} else if (LastInst->getOpcode() == PPC::COND_BRANCH) {
|
|
|
|
// Block ends with fall-through condbranch.
|
|
|
|
TBB = LastInst->getOperand(2).getMachineBasicBlock();
|
|
|
|
Cond.push_back(LastInst->getOperand(0));
|
|
|
|
Cond.push_back(LastInst->getOperand(1));
|
2006-10-21 14:03:11 +08:00
|
|
|
return false;
|
2006-10-14 05:21:17 +08:00
|
|
|
}
|
|
|
|
// Otherwise, don't know what this is.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the instruction before it if it's a terminator.
|
|
|
|
MachineInstr *SecondLastInst = I;
|
|
|
|
|
|
|
|
// If there are three terminators, we don't know what sort of block this is.
|
|
|
|
if (SecondLastInst && I != MBB.begin() &&
|
|
|
|
isTerminatorInstr((--I)->getOpcode()))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// If the block ends with PPC::B and PPC:COND_BRANCH, handle it.
|
|
|
|
if (SecondLastInst->getOpcode() == PPC::COND_BRANCH &&
|
|
|
|
LastInst->getOpcode() == PPC::B) {
|
|
|
|
TBB = SecondLastInst->getOperand(2).getMachineBasicBlock();
|
|
|
|
Cond.push_back(SecondLastInst->getOperand(0));
|
|
|
|
Cond.push_back(SecondLastInst->getOperand(1));
|
|
|
|
FBB = LastInst->getOperand(0).getMachineBasicBlock();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Otherwise, can't handle this.
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCInstrInfo::RemoveBranch(MachineBasicBlock &MBB) const {
|
|
|
|
MachineBasicBlock::iterator I = MBB.end();
|
|
|
|
if (I == MBB.begin()) return;
|
|
|
|
--I;
|
|
|
|
if (I->getOpcode() != PPC::B && I->getOpcode() != PPC::COND_BRANCH)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Remove the branch.
|
|
|
|
I->eraseFromParent();
|
|
|
|
|
|
|
|
I = MBB.end();
|
|
|
|
|
|
|
|
if (I == MBB.begin()) return;
|
|
|
|
--I;
|
|
|
|
if (I->getOpcode() != PPC::COND_BRANCH)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Remove the branch.
|
|
|
|
I->eraseFromParent();
|
|
|
|
}
|
|
|
|
|
|
|
|
void PPCInstrInfo::InsertBranch(MachineBasicBlock &MBB, MachineBasicBlock *TBB,
|
|
|
|
MachineBasicBlock *FBB,
|
|
|
|
const std::vector<MachineOperand> &Cond) const {
|
2006-10-18 02:06:55 +08:00
|
|
|
// Shouldn't be a fall through.
|
|
|
|
assert(TBB && "InsertBranch must not be told to insert a fallthrough");
|
2006-10-21 13:36:13 +08:00
|
|
|
assert((Cond.size() == 2 || Cond.size() == 0) &&
|
|
|
|
"PPC branch conditions have two components!");
|
2006-10-18 02:06:55 +08:00
|
|
|
|
2006-10-21 13:36:13 +08:00
|
|
|
// One-way branch.
|
2006-10-18 02:06:55 +08:00
|
|
|
if (FBB == 0) {
|
2006-10-21 13:36:13 +08:00
|
|
|
if (Cond.empty()) // Unconditional branch
|
|
|
|
BuildMI(&MBB, PPC::B, 1).addMBB(TBB);
|
|
|
|
else // Conditional branch
|
|
|
|
BuildMI(&MBB, PPC::COND_BRANCH, 3)
|
|
|
|
.addReg(Cond[0].getReg()).addImm(Cond[1].getImm()).addMBB(TBB);
|
2006-10-18 02:06:55 +08:00
|
|
|
return;
|
|
|
|
}
|
2006-10-14 05:21:17 +08:00
|
|
|
|
2006-10-21 13:42:09 +08:00
|
|
|
// Two-way Conditional Branch.
|
2006-10-14 05:21:17 +08:00
|
|
|
BuildMI(&MBB, PPC::COND_BRANCH, 3)
|
|
|
|
.addReg(Cond[0].getReg()).addImm(Cond[1].getImm()).addMBB(TBB);
|
2006-10-21 13:42:09 +08:00
|
|
|
BuildMI(&MBB, PPC::B, 1).addMBB(FBB);
|
2006-10-14 05:21:17 +08:00
|
|
|
}
|
|
|
|
|
2006-10-29 01:35:02 +08:00
|
|
|
bool PPCInstrInfo::BlockHasNoFallThrough(MachineBasicBlock &MBB) const {
|
|
|
|
if (MBB.empty()) return false;
|
|
|
|
|
|
|
|
switch (MBB.back().getOpcode()) {
|
|
|
|
case PPC::B: // Uncond branch.
|
|
|
|
case PPC::BCTR: // Indirect branch.
|
|
|
|
return true;
|
|
|
|
default: return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-10-14 05:21:17 +08:00
|
|
|
bool PPCInstrInfo::
|
|
|
|
ReverseBranchCondition(std::vector<MachineOperand> &Cond) const {
|
2006-10-21 14:03:11 +08:00
|
|
|
assert(Cond.size() == 2 && "Invalid PPC branch opcode!");
|
|
|
|
// Leave the CR# the same, but invert the condition.
|
|
|
|
Cond[1].setImm(invertPPCBranchOpcode(Cond[1].getImm()));
|
|
|
|
return false;
|
2006-10-14 05:21:17 +08:00
|
|
|
}
|