diff options
author | Eric Christopher <echristo@apple.com> | 2012-05-07 06:25:15 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-05-07 06:25:15 +0000 |
commit | 9c492e6ebfb6e00b60229b663f7e172562259412 (patch) | |
tree | b768c77ab7f8af3b0a1f6951231b64cb336091a0 /llvm/lib/Target | |
parent | e3c494de8287948d6079a828baefc026aeb0a651 (diff) | |
download | bcm5719-llvm-9c492e6ebfb6e00b60229b663f7e172562259412.tar.gz bcm5719-llvm-9c492e6ebfb6e00b60229b663f7e172562259412.zip |
Add support for the 'l' constraint.
Patch by Jack Carter.
llvm-svn: 156294
Diffstat (limited to 'llvm/lib/Target')
-rw-r--r-- | llvm/lib/Target/Mips/MipsISelLowering.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/llvm/lib/Target/Mips/MipsISelLowering.cpp b/llvm/lib/Target/Mips/MipsISelLowering.cpp index 854cfabbd71..ca0472b757a 100644 --- a/llvm/lib/Target/Mips/MipsISelLowering.cpp +++ b/llvm/lib/Target/Mips/MipsISelLowering.cpp @@ -3001,6 +3001,7 @@ getConstraintType(const std::string &Constraint) const // backwards compatibility. // 'c' : A register suitable for use in an indirect // jump. This will always be $25 for -mabicalls. + // 'l' : The lo register. if (Constraint.size() == 1) { switch (Constraint[0]) { default : break; @@ -3008,6 +3009,7 @@ getConstraintType(const std::string &Constraint) const case 'y': case 'f': case 'c': + case 'l': return C_RegisterClass; } } @@ -3042,6 +3044,7 @@ MipsTargetLowering::getSingleConstraintMatchWeight( weight = CW_Register; break; case 'c': // $25 for indirect jumps + case 'l': // lo register if (type->isIntegerTy()) weight = CW_SpecificReg; break; @@ -3090,6 +3093,10 @@ getRegForInlineAsmConstraint(const std::string &Constraint, EVT VT) const 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); + case 'l': // register suitable for indirect jump + if (VT == MVT::i32) + return std::make_pair((unsigned)Mips::LO, &Mips::HILORegClass); + return std::make_pair((unsigned)Mips::LO64, &Mips::HILO64RegClass); } } return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT); |