mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-07-30 02:25:19 +00:00
Make FastEmit_ri_ try a bit harder to succeed for supported operations; FastEmit_i can fail for non-Thumb2 ARM. Makes ARMSimplifyAddress work correctly, and reduces the number of fast-isel bailouts on non-Thumb ARM.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130560 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -1032,8 +1032,13 @@ unsigned FastISel::FastEmit_ri_(MVT VT, unsigned Opcode,
|
||||
if (ResultReg != 0)
|
||||
return ResultReg;
|
||||
unsigned MaterialReg = FastEmit_i(ImmType, ImmType, ISD::Constant, Imm);
|
||||
if (MaterialReg == 0)
|
||||
return 0;
|
||||
if (MaterialReg == 0) {
|
||||
// This is a bit ugly/slow, but failing here means falling out of
|
||||
// fast-isel, which would be very slow.
|
||||
const IntegerType *ITy = IntegerType::get(FuncInfo.Fn->getContext(),
|
||||
VT.getSizeInBits());
|
||||
MaterialReg = getRegForValue(ConstantInt::get(ITy, Imm));
|
||||
}
|
||||
return FastEmit_rr(VT, VT, Opcode,
|
||||
Op0, Op0IsKill,
|
||||
MaterialReg, /*Kill=*/true);
|
||||
|
Reference in New Issue
Block a user