mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-26 13:10:34 +00:00
Avoid emitting redundant materializations of integer constants
for things like null pointers, which at this level aren't different from regular integer constants. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57265 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
145b828014
commit
1e9e8c3bd5
@ -81,7 +81,9 @@ unsigned FastISel::getRegForValue(Value *V) {
|
||||
} else if (isa<AllocaInst>(V)) {
|
||||
Reg = TargetMaterializeAlloca(cast<AllocaInst>(V));
|
||||
} else if (isa<ConstantPointerNull>(V)) {
|
||||
Reg = FastEmit_i(VT, VT, ISD::Constant, 0);
|
||||
// Translate this as an integer zero so that it can be
|
||||
// local-CSE'd with actual integer zeros.
|
||||
Reg = getRegForValue(Constant::getNullValue(TD.getIntPtrType()));
|
||||
} else if (ConstantFP *CF = dyn_cast<ConstantFP>(V)) {
|
||||
Reg = FastEmit_f(VT, VT, ISD::ConstantFP, CF);
|
||||
|
||||
@ -95,8 +97,7 @@ unsigned FastISel::getRegForValue(Value *V) {
|
||||
APFloat::rmTowardZero) != APFloat::opOK) {
|
||||
APInt IntVal(IntBitWidth, 2, x);
|
||||
|
||||
unsigned IntegerReg = FastEmit_i(IntVT.getSimpleVT(), IntVT.getSimpleVT(),
|
||||
ISD::Constant, IntVal.getZExtValue());
|
||||
unsigned IntegerReg = getRegForValue(ConstantInt::get(IntVal));
|
||||
if (IntegerReg != 0)
|
||||
Reg = FastEmit_r(IntVT.getSimpleVT(), VT, ISD::SINT_TO_FP, IntegerReg);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user