mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-14 07:31:47 +00:00
* add the shladd instruction
* fold left shifts of 1, 2, 3 or 4 bits into adds This doesn't save much now, but should get a serious workout once multiplies by constants get converted to shift/add/sub sequences. Hold on! :) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21282 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4f7cba5af8
commit
ed09502a0b
@ -873,6 +873,26 @@ assert(0 && "hmm, ISD::SIGN_EXTEND: shouldn't ever be reached. bad luck!\n");
|
||||
BuildMI(BB, IA64::FMA, 3, Result).addReg(Tmp1).addReg(Tmp2).addReg(Tmp3);
|
||||
return Result; // early exit
|
||||
}
|
||||
|
||||
if(DestType != MVT::f64 && N.getOperand(0).getOpcode() == ISD::SHL &&
|
||||
N.getOperand(0).Val->hasOneUse()) { // if we might be able to fold
|
||||
// this add into a shladd, try:
|
||||
ConstantSDNode *CSD = NULL;
|
||||
if((CSD = dyn_cast<ConstantSDNode>(N.getOperand(0).getOperand(1))) &&
|
||||
(CSD->getValue() >= 1) && (CSD->getValue() <= 4) ) { // we can:
|
||||
|
||||
// ++FusedSHLADD; // Statistic
|
||||
Tmp1 = SelectExpr(N.getOperand(0).getOperand(0));
|
||||
int shl_amt = CSD->getValue();
|
||||
Tmp3 = SelectExpr(N.getOperand(1));
|
||||
|
||||
BuildMI(BB, IA64::SHLADD, 3, Result)
|
||||
.addReg(Tmp1).addImm(shl_amt).addReg(Tmp3);
|
||||
return Result; // early exit
|
||||
}
|
||||
}
|
||||
|
||||
//else, fallthrough:
|
||||
Tmp1 = SelectExpr(N.getOperand(0));
|
||||
if(DestType != MVT::f64) { // integer addition:
|
||||
switch (ponderIntegerAdditionWith(N.getOperand(1), Tmp3)) {
|
||||
|
@ -111,6 +111,9 @@ def SHRS : AForm<0x03, 0x0b, (ops GR:$dst, GR:$src1, GR:$src2),
|
||||
def SHRSI : AForm<0x03, 0x0b, (ops GR:$dst, GR:$src1, u6imm:$imm),
|
||||
"shr $dst = $src1, $imm;;">;
|
||||
|
||||
def SHLADD : AForm<0x03, 0x0b, (ops GR:$dst, GR:$src1, u6imm:$imm, GR:$src2),
|
||||
"shladd $dst = $src1, $imm, $src2;;">;
|
||||
|
||||
def EXTRU : AForm<0x03, 0x0b, (ops GR:$dst, GR:$src1, u6imm:$imm1, u6imm:$imm2),
|
||||
"extr.u $dst = $src1, $imm1, $imm2;;">;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user