diff options
author | Eric Christopher <echristo@apple.com> | 2012-05-07 06:25:10 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-05-07 06:25:10 +0000 |
commit | 1d5a392e2cff41488e47e038231fb114ea0eb941 (patch) | |
tree | c7a2d52e64e5fa38b05017c4ae59a9a27d148446 /lib/Target/Mips | |
parent | 54412a789a35386e11612739dd3b30ab382e5127 (diff) | |
download | external_llvm-1d5a392e2cff41488e47e038231fb114ea0eb941.zip external_llvm-1d5a392e2cff41488e47e038231fb114ea0eb941.tar.gz external_llvm-1d5a392e2cff41488e47e038231fb114ea0eb941.tar.bz2 |
Add support for the 'c' constraint.
Patch by Jack Carter.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@156293 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips')
-rw-r--r-- | lib/Target/Mips/MipsISelLowering.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/Target/Mips/MipsISelLowering.cpp b/lib/Target/Mips/MipsISelLowering.cpp index 910416f..854cfab 100644 --- a/lib/Target/Mips/MipsISelLowering.cpp +++ b/lib/Target/Mips/MipsISelLowering.cpp @@ -2999,13 +2999,15 @@ getConstraintType(const std::string &Constraint) const // unless generating MIPS16 code. // 'y' : Equivalent to r; retained for // backwards compatibility. - // 'f' : Floating Point registers. + // 'c' : A register suitable for use in an indirect + // jump. This will always be $25 for -mabicalls. if (Constraint.size() == 1) { switch (Constraint[0]) { default : break; case 'd': case 'y': case 'f': + case 'c': return C_RegisterClass; } } @@ -3039,6 +3041,10 @@ MipsTargetLowering::getSingleConstraintMatchWeight( if (type->isFloatTy()) weight = CW_Register; break; + case 'c': // $25 for indirect jumps + if (type->isIntegerTy()) + weight = CW_SpecificReg; + break; case 'I': // signed 16 bit immediate case 'J': // integer zero case 'K': // unsigned 16 bit immediate @@ -3078,6 +3084,12 @@ getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const return std::make_pair(0U, &Mips::FGR64RegClass); return std::make_pair(0U, &Mips::AFGR64RegClass); } + break; + case 'c': // register suitable for indirect jump + if (VT == MVT::i32) + return std::make_pair((unsigned)Mips::T9, &Mips::CPURegsRegClass); + assert(VT == MVT::i64 && "Unexpected type."); + return std::make_pair((unsigned)Mips::T9_64, &Mips::CPU64RegsRegClass); } } return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); |