mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-21 00:32:23 +00:00
dd950096b9
- Fix bugs 3194, 3195: i128 load/stores produce correct code (although, we need to ensure that i128 is 16-byte aligned in real life), and 128 zero- extends are supported. - New td file: SPU128InstrInfo.td: this is where all new i128 support should be put in the future. - Continue to hammer on i64 operations and test cases; ensure that the only remaining problem will be i64 mul. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61784 91177308-0d34-0410-b5e6-96231b3b80d8
23 lines
884 B
TableGen
23 lines
884 B
TableGen
//===--- SPU128InstrInfo.td - Cell SPU 128-bit operations -*- tablegen -*--===//
|
|
//
|
|
// Cell SPU 128-bit operations
|
|
//
|
|
// Primary author: Scott Michel (scottm@aero.org)
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// zext 32->128: Zero extend 32-bit to 128-bit
|
|
def : Pat<(i128 (zext R32C:$rSrc)),
|
|
(ROTQMBYIr128_zext_r32 R32C:$rSrc, 12)>;
|
|
|
|
// zext 64->128: Zero extend 64-bit to 128-bit
|
|
def : Pat<(i128 (zext R64C:$rSrc)),
|
|
(ROTQMBYIr128_zext_r64 R64C:$rSrc, 8)>;
|
|
|
|
// zext 16->128: Zero extend 16-bit to 128-bit
|
|
def : Pat<(i128 (zext R16C:$rSrc)),
|
|
(ROTQMBYIr128_zext_r32 (ANDi16i32 R16C:$rSrc, (ILAr32 0xffff)), 12)>;
|
|
|
|
// zext 8->128: Zero extend 8-bit to 128-bit
|
|
def : Pat<(i128 (zext R8C:$rSrc)),
|
|
(ROTQMBYIr128_zext_r32 (ANDIi8i32 R8C:$rSrc, 0xf), 12)>;
|