mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 04:02:41 +01:00
replace switch stmt with an assert, generate li 0 instead of lis 0 for 0,
to make the code follow people's expectations better. llvm-svn: 22861
This commit is contained in:
parent
ed406c683b
commit
79b0fc3b9a
@ -1732,26 +1732,23 @@ unsigned ISel::SelectExpr(SDOperand N, bool Recording) {
|
||||
return Result;
|
||||
}
|
||||
|
||||
case ISD::Constant:
|
||||
switch (N.getValueType()) {
|
||||
default: assert(0 && "Cannot use constants of this type!");
|
||||
case MVT::i32:
|
||||
{
|
||||
int v = (int)cast<ConstantSDNode>(N)->getSignExtended();
|
||||
unsigned Hi = Hi16(v);
|
||||
unsigned Lo = Lo16(v);
|
||||
if (Hi && Lo) {
|
||||
Tmp1 = MakeIntReg();
|
||||
BuildMI(BB, PPC::LIS, 1, Tmp1).addSImm(Hi);
|
||||
BuildMI(BB, PPC::ORI, 2, Result).addReg(Tmp1).addImm(Lo);
|
||||
} else if (Lo) {
|
||||
BuildMI(BB, PPC::LI, 1, Result).addSImm(Lo);
|
||||
} else {
|
||||
BuildMI(BB, PPC::LIS, 1, Result).addSImm(Hi);
|
||||
}
|
||||
}
|
||||
case ISD::Constant: {
|
||||
assert(N.getValueType() == MVT::i32 &&
|
||||
"Only i32 constants are legal on this target!");
|
||||
int v = (int)cast<ConstantSDNode>(N)->getValue();
|
||||
unsigned Hi = Hi16(v);
|
||||
unsigned Lo = Lo16(v);
|
||||
if (Hi && Lo) {
|
||||
Tmp1 = MakeIntReg();
|
||||
BuildMI(BB, PPC::LIS, 1, Tmp1).addSImm(Hi);
|
||||
BuildMI(BB, PPC::ORI, 2, Result).addReg(Tmp1).addImm(Lo);
|
||||
} else if (Hi) {
|
||||
BuildMI(BB, PPC::LIS, 1, Result).addSImm(Hi);
|
||||
} else {
|
||||
BuildMI(BB, PPC::LI, 1, Result).addSImm(Lo);
|
||||
}
|
||||
return Result;
|
||||
}
|
||||
|
||||
case ISD::ConstantFP: {
|
||||
ConstantFPSDNode *CN = cast<ConstantFPSDNode>(N);
|
||||
|
Loading…
Reference in New Issue
Block a user