mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
32-to-64-bit extended load.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144554 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4961709688
commit
788dc0f4e5
@ -219,11 +219,16 @@ def : Pat<(i64 immZExt16:$in),
|
||||
def : Pat<(i64 imm:$imm),
|
||||
(ORi64 (LUi64 (HI16 imm:$imm)), (LO16 imm:$imm))>;
|
||||
|
||||
// zextloadi32_u
|
||||
def : Pat<(zextloadi32_u addr:$a), (DSRL32 (DSLL32 (ULW64_P8 addr:$a), 0), 0)>,
|
||||
Requires<[IsN64]>;
|
||||
def : Pat<(zextloadi32_u addr:$a), (DSRL32 (DSLL32 (ULW64 addr:$a), 0), 0)>,
|
||||
Requires<[NotN64]>;
|
||||
// extended loads
|
||||
let Predicates = [NotN64] in {
|
||||
def : Pat<(extloadi32_a addr:$a), (DSRL32 (DSLL32 (LW64 addr:$a), 0), 0)>;
|
||||
def : Pat<(zextloadi32_u addr:$a), (DSRL32 (DSLL32 (ULW64 addr:$a), 0), 0)>;
|
||||
}
|
||||
let Predicates = [IsN64] in {
|
||||
def : Pat<(extloadi32_a addr:$a), (DSRL32 (DSLL32 (LW64_P8 addr:$a), 0), 0)>;
|
||||
def : Pat<(zextloadi32_u addr:$a),
|
||||
(DSRL32 (DSLL32 (ULW64_P8 addr:$a), 0), 0)>;
|
||||
}
|
||||
|
||||
// hi/lo relocs
|
||||
def : Pat<(i64 (MipsLo tglobaladdr:$in)), (DADDiu ZERO_64, tglobaladdr:$in)>;
|
||||
|
Loading…
Reference in New Issue
Block a user