summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-10-11 08:37:26 +0000
committerEric Christopher <echristo@apple.com>2010-10-11 08:37:26 +0000
commiteae1b38550f0ab3136b7fe90a63d705b706cad27 (patch)
treefc88e422a606dd5985d3d0282b008b06d04bbbf3 /llvm/lib
parente11017c19ea0cd19f7e4cc6d1475bdafa355e9ff (diff)
downloadbcm5719-llvm-eae1b38550f0ab3136b7fe90a63d705b706cad27.tar.gz
bcm5719-llvm-eae1b38550f0ab3136b7fe90a63d705b706cad27.zip
Add srem libcall support to ARM fast isel.
llvm-svn: 116196
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/ARM/ARMFastISel.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp
index 4e2bfca88f2..9dc2a153cec 100644
--- a/llvm/lib/Target/ARM/ARMFastISel.cpp
+++ b/llvm/lib/Target/ARM/ARMFastISel.cpp
@@ -127,6 +127,7 @@ class ARMFastISel : public FastISel {
virtual bool SelectSIToFP(const Instruction *I);
virtual bool SelectFPToSI(const Instruction *I);
virtual bool SelectSDiv(const Instruction *I);
+ virtual bool SelectSRem(const Instruction *I);
virtual bool SelectCall(const Instruction *I);
virtual bool SelectSelect(const Instruction *I);
@@ -1120,6 +1121,28 @@ bool ARMFastISel::SelectSDiv(const Instruction *I) {
return ARMEmitLibcall(I, LC);
}
+bool ARMFastISel::SelectSRem(const Instruction *I) {
+ EVT VT;
+ const Type *Ty = I->getType();
+ if (!isTypeLegal(Ty, VT))
+ return false;
+
+ RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
+ if (VT == MVT::i8)
+ LC = RTLIB::SREM_I8;
+ else if (VT == MVT::i16)
+ LC = RTLIB::SREM_I16;
+ else if (VT == MVT::i32)
+ LC = RTLIB::SREM_I32;
+ else if (VT == MVT::i64)
+ LC = RTLIB::SREM_I64;
+ else if (VT == MVT::i128)
+ LC = RTLIB::SREM_I128;
+ assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported SDIV!");
+
+ return ARMEmitLibcall(I, LC);
+}
+
bool ARMFastISel::SelectBinaryOp(const Instruction *I, unsigned ISDOpcode) {
EVT VT = TLI.getValueType(I->getType(), true);
@@ -1519,6 +1542,8 @@ bool ARMFastISel::TargetSelectInstruction(const Instruction *I) {
return SelectBinaryOp(I, ISD::FMUL);
case Instruction::SDiv:
return SelectSDiv(I);
+ case Instruction::SRem:
+ return SelectSRem(I);
case Instruction::Call:
return SelectCall(I);
case Instruction::Select:
OpenPOWER on IntegriCloud