diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2011-11-07 18:59:49 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2011-11-07 18:59:49 +0000 |
commit | 770f0646dbce9c429beee5f8703d272b4d9450ec (patch) | |
tree | 7669d7c941ddc003b5b5379928af9e3b93cf11fc /llvm/lib | |
parent | d5c1329078793f0e33759845c9327897540dfae6 (diff) | |
download | bcm5719-llvm-770f0646dbce9c429beee5f8703d272b4d9450ec.tar.gz bcm5719-llvm-770f0646dbce9c429beee5f8703d272b4d9450ec.zip |
Make the type of shift amount i32 in order to reduce the number of shift
instruction definitions.
llvm-svn: 143989
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Mips/Mips64InstrInfo.td | 6 | ||||
-rw-r--r-- | llvm/lib/Target/Mips/MipsISelLowering.h | 2 | ||||
-rw-r--r-- | llvm/lib/Target/Mips/MipsInstrInfo.td | 4 |
3 files changed, 7 insertions, 5 deletions
diff --git a/llvm/lib/Target/Mips/Mips64InstrInfo.td b/llvm/lib/Target/Mips/Mips64InstrInfo.td index 3708c4a3627..83bd7b88c59 100644 --- a/llvm/lib/Target/Mips/Mips64InstrInfo.td +++ b/llvm/lib/Target/Mips/Mips64InstrInfo.td @@ -32,7 +32,7 @@ def Subtract32 : SDNodeXForm<imm, [{ def immZExt5_64 : ImmLeaf<i64, [{return Imm == (Imm & 0x1f);}]>; // imm32_63 predicate - True if imm is in range [32, 63]. -def imm32_63 : ImmLeaf<i64, +def imm32_63 : ImmLeaf<i32, [{return (int32_t)Imm >= 32 && (int32_t)Imm < 64;}], Subtract32>; @@ -43,12 +43,12 @@ def imm32_63 : ImmLeaf<i64, // 64-bit shift instructions. class shift_rotate_imm64<bits<6> func, bits<5> isRotate, string instr_asm, SDNode OpNode>: - shift_rotate_imm<func, isRotate, instr_asm, OpNode, immZExt5_64, shamt_64, + shift_rotate_imm<func, isRotate, instr_asm, OpNode, immZExt5, shamt, CPU64Regs>; class shift_rotate_imm64_32<bits<6> func, bits<5> isRotate, string instr_asm, SDNode OpNode>: - shift_rotate_imm<func, isRotate, instr_asm, OpNode, imm32_63, shamt_64, + shift_rotate_imm<func, isRotate, instr_asm, OpNode, imm32_63, shamt, CPU64Regs>; // Mul, Div diff --git a/llvm/lib/Target/Mips/MipsISelLowering.h b/llvm/lib/Target/Mips/MipsISelLowering.h index 62e7f095826..f2b64e36f1c 100644 --- a/llvm/lib/Target/Mips/MipsISelLowering.h +++ b/llvm/lib/Target/Mips/MipsISelLowering.h @@ -98,6 +98,8 @@ namespace llvm { public: explicit MipsTargetLowering(MipsTargetMachine &TM); + virtual MVT getShiftAmountTy(EVT LHSTy) const { return MVT::i32; } + virtual bool allowsUnalignedMemoryAccesses (EVT VT) const; /// LowerOperation - Provide custom lowering hooks for some operations. diff --git a/llvm/lib/Target/Mips/MipsInstrInfo.td b/llvm/lib/Target/Mips/MipsInstrInfo.td index fd99b131262..64dbd264690 100644 --- a/llvm/lib/Target/Mips/MipsInstrInfo.td +++ b/llvm/lib/Target/Mips/MipsInstrInfo.td @@ -327,9 +327,9 @@ class shift_rotate_imm32<bits<6> func, bits<5> isRotate, string instr_asm, class shift_rotate_reg<bits<6> func, bits<5> isRotate, string instr_asm, SDNode OpNode, RegisterClass RC>: - FR<0x00, func, (outs RC:$rd), (ins RC:$rs, RC:$rt), + FR<0x00, func, (outs RC:$rd), (ins CPURegs:$rs, RC:$rt), !strconcat(instr_asm, "\t$rd, $rt, $rs"), - [(set RC:$rd, (OpNode RC:$rt, RC:$rs))], IIAlu> { + [(set RC:$rd, (OpNode RC:$rt, CPURegs:$rs))], IIAlu> { let shamt = isRotate; } |