mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
Instead of li/xoris use li/oris. Note that this doesn't work if bit 15 is
set, so disable the pattern in that case. llvm-svn: 28884
This commit is contained in:
parent
eede1e2c00
commit
690b03fb44
@ -227,12 +227,12 @@ def sext_0x0000_0000_FFFF_FFFF_i16 : PatLeaf<(imm), [{
|
||||
def : Pat<(i64 sext_0x0000_0000_FFFF_FFFF_i16:$imm),
|
||||
(ORI8 (LIS8 (HI16 imm:$imm)), (LO16 imm:$imm))>;
|
||||
|
||||
// zext(0x0000_0000_FFFF_FFFF, i16) -> xoris (li lo16(imm)), imm>>16
|
||||
def zext_0x0000_0000_FFFF_FFFF_i16 : PatLeaf<(imm), [{
|
||||
return (N->getValue() & 0xFFFFFFFF00000000ULL) == 0;
|
||||
// zext(0x0000_0000_FFFF_7FFF, i16) -> oris (li lo16(imm)), imm>>16
|
||||
def zext_0x0000_0000_FFFF_7FFF_i16 : PatLeaf<(imm), [{
|
||||
return (N->getValue() & 0xFFFFFFFF00008000ULL) == 0;
|
||||
}]>;
|
||||
def : Pat<(i64 zext_0x0000_0000_FFFF_FFFF_i16:$imm),
|
||||
(XORIS8 (LI8 (LO16 imm:$imm)), (HI16 imm:$imm))>;
|
||||
def : Pat<(i64 zext_0x0000_0000_FFFF_7FFF_i16:$imm),
|
||||
(ORIS8 (LI8 (LO16 imm:$imm)), (HI16 imm:$imm))>;
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user