[llvm] r287099 - [mips] Fix unsigned/signed type error
Simon Dardis via llvm-commits
llvm-commits at lists.llvm.org
Wed Nov 16 03:29:07 PST 2016
Author: sdardis
Date: Wed Nov 16 05:29:07 2016
New Revision: 287099
URL: http://llvm.org/viewvc/llvm-project?rev=287099&view=rev
Log:
[mips] Fix unsigned/signed type error
MipsFastISel uses a a class to represent addresses with a signed member
to represent the offset. MipsFastISel::emitStore, emitLoad and computeAddress
all treated the offset as being positive. In cases where the offset was
actually negative and a frame pointer was used, this would cause the constant
synthesis routine to crash as it would generate an unexpected instruction
sequence when frame indexes are replaced.
Reviewers: vkalintiris
Differential Revision: https://reviews.llvm.org/D26192
Added:
llvm/trunk/test/CodeGen/Mips/Fast-ISel/stackloadstore.ll
Modified:
llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
Modified: llvm/trunk/lib/Target/Mips/MipsFastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/Mips/MipsFastISel.cpp?rev=287099&r1=287098&r2=287099&view=diff
==============================================================================
--- llvm/trunk/lib/Target/Mips/MipsFastISel.cpp (original)
+++ llvm/trunk/lib/Target/Mips/MipsFastISel.cpp Wed Nov 16 05:29:07 2016
@@ -438,7 +438,7 @@ bool MipsFastISel::computeAddress(const
}
case Instruction::GetElementPtr: {
Address SavedAddr = Addr;
- uint64_t TmpOffset = Addr.getOffset();
+ int64_t TmpOffset = Addr.getOffset();
// Iterate through the GEP folding the constants into offsets where
// we can.
gep_type_iterator GTI = gep_type_begin(U);
@@ -756,7 +756,7 @@ bool MipsFastISel::emitLoad(MVT VT, unsi
if (Addr.isFIBase()) {
unsigned FI = Addr.getFI();
unsigned Align = 4;
- unsigned Offset = Addr.getOffset();
+ int64_t Offset = Addr.getOffset();
MachineFrameInfo &MFI = MF->getFrameInfo();
MachineMemOperand *MMO = MF->getMachineMemOperand(
MachinePointerInfo::getFixedStack(*MF, FI), MachineMemOperand::MOLoad,
@@ -807,7 +807,7 @@ bool MipsFastISel::emitStore(MVT VT, uns
if (Addr.isFIBase()) {
unsigned FI = Addr.getFI();
unsigned Align = 4;
- unsigned Offset = Addr.getOffset();
+ int64_t Offset = Addr.getOffset();
MachineFrameInfo &MFI = MF->getFrameInfo();
MachineMemOperand *MMO = MF->getMachineMemOperand(
MachinePointerInfo::getFixedStack(*MF, FI), MachineMemOperand::MOStore,
Added: llvm/trunk/test/CodeGen/Mips/Fast-ISel/stackloadstore.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/Mips/Fast-ISel/stackloadstore.ll?rev=287099&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/Mips/Fast-ISel/stackloadstore.ll (added)
+++ llvm/trunk/test/CodeGen/Mips/Fast-ISel/stackloadstore.ll Wed Nov 16 05:29:07 2016
@@ -0,0 +1,18 @@
+; RUN: llc < %s -march=mipsel -mcpu=mips32 -fast-isel -disable-fp-elim -relocation-model=pic < %s
+
+; Test that negative array access don't crash constant synthesis when fast isel
+; generates negative offsets.
+
+define i16 @test() {
+ %a = alloca [4 x i16], align 4
+ %arrayidx = getelementptr inbounds [4 x i16], [4 x i16]* %a, i32 0, i32 -2
+ %b = load i16, i16* %arrayidx, align 2
+ ret i16 %b
+}
+
+define void @test2() {
+ %a = alloca [4 x i16], align 4
+ %arrayidx = getelementptr inbounds [4 x i16], [4 x i16]* %a, i32 0, i32 -2
+ store i16 2, i16* %arrayidx, align 2
+ ret void
+}
More information about the llvm-commits
mailing list