diff options
author | Hal Finkel <hfinkel@anl.gov> | 2016-09-04 06:07:19 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2016-09-04 06:07:19 +0000 |
commit | 73390c7acd40a5c7a1802c0f78b660f6a336b860 (patch) | |
tree | c27324154c5aec2faada72642698fafdbb952d3a /llvm/lib/Target/PowerPC/PPCFastISel.cpp | |
parent | fb6358d2b5b25601a3172011238e229995f1b1a4 (diff) | |
download | bcm5719-llvm-73390c7acd40a5c7a1802c0f78b660f6a336b860.tar.gz bcm5719-llvm-73390c7acd40a5c7a1802c0f78b660f6a336b860.zip |
[PowerPC] Zero-extend constants in FastISel
As it turns out, whether we zero-extend or sign-extend i8/i16 constants, which
are illegal types promoted to i32 on PowerPC, is a choice constrained by
assumptions within the infrastructure. Specifically, the logic in
FunctionLoweringInfo::ComputePHILiveOutRegInfo assumes that constant PHI
operands will be zero extended, and so, at least when materializing constants
that are PHI operands, we must do the same.
The rest of our fast-isel implementation does not appear to depend on the fact
that we were sign-extending i8/i16 constants, and all other targets also appear
to zero-extend small-bitwidth constants in fast-isel; we'll now do the same (we
had been doing this only for i1 constants, and sign-extending the others).
Fixes PR27721.
llvm-svn: 280614
Diffstat (limited to 'llvm/lib/Target/PowerPC/PPCFastISel.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCFastISel.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCFastISel.cpp b/llvm/lib/Target/PowerPC/PPCFastISel.cpp index efb1ebcdc55..b7f36035bb3 100644 --- a/llvm/lib/Target/PowerPC/PPCFastISel.cpp +++ b/llvm/lib/Target/PowerPC/PPCFastISel.cpp @@ -2157,7 +2157,12 @@ unsigned PPCFastISel::fastMaterializeConstant(const Constant *C) { else if (const GlobalValue *GV = dyn_cast<GlobalValue>(C)) return PPCMaterializeGV(GV, VT); else if (const ConstantInt *CI = dyn_cast<ConstantInt>(C)) - return PPCMaterializeInt(CI, VT, VT != MVT::i1); + // Note that the code in FunctionLoweringInfo::ComputePHILiveOutRegInfo + // assumes that constant PHI operands will be zero extended, and failure to + // match that assumption will cause problems if we sign extend here but + // some user of a PHI is in a block for which we fall back to full SDAG + // instruction selection. + return PPCMaterializeInt(CI, VT, false); return 0; } |