mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-03-28 21:38:44 +00:00
Removed LowerRETURADDR, fixed small bug into LowerRET, LowerGlobalAddress
fixed to generate instructions (add, lui) glued! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41158 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
250a1714be
commit
7ff6fa2503
lib/Target/Mips
@ -142,7 +142,7 @@ SelectAddr(SDOperand Op, SDOperand Addr, SDOperand &Offset, SDOperand &Base)
|
||||
Addr.getOpcode() == ISD::TargetGlobalAddress))
|
||||
return false;
|
||||
|
||||
// Operand is an result from an ADD.
|
||||
// Operand is a result from an ADD.
|
||||
if (Addr.getOpcode() == ISD::ADD)
|
||||
{
|
||||
if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Addr.getOperand(1)))
|
||||
|
@ -42,6 +42,7 @@ getTargetNodeName(unsigned Opcode) const
|
||||
case MipsISD::Hi : return "MipsISD::Hi";
|
||||
case MipsISD::Lo : return "MipsISD::Lo";
|
||||
case MipsISD::Ret : return "MipsISD::Ret";
|
||||
case MipsISD::Add : return "MipsISD::Add";
|
||||
default : return NULL;
|
||||
}
|
||||
}
|
||||
@ -119,7 +120,6 @@ LowerOperation(SDOperand Op, SelectionDAG &DAG)
|
||||
case ISD::RET: return LowerRET(Op, DAG);
|
||||
case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
|
||||
case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
|
||||
case ISD::RETURNADDR: return LowerRETURNADDR(Op, DAG);
|
||||
}
|
||||
return SDOperand();
|
||||
}
|
||||
@ -140,17 +140,6 @@ AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
|
||||
return VReg;
|
||||
}
|
||||
|
||||
// Set up a frame object for the return address.
|
||||
//SDOperand MipsTargetLowering::getReturnAddressFrameIndex(SelectionDAG &DAG) {
|
||||
// if (ReturnAddrIndex == 0) {
|
||||
// MachineFunction &MF = DAG.getMachineFunction();
|
||||
// ReturnAddrIndex = MF.getFrameInfo()->CreateFixedObject(4, 0);
|
||||
// }
|
||||
//
|
||||
// return DAG.getFrameIndex(ReturnAddrIndex, getPointerTy());
|
||||
//}
|
||||
|
||||
|
||||
//===----------------------------------------------------------------------===//
|
||||
// Misc Lower Operation implementation
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -160,10 +149,15 @@ LowerGlobalAddress(SDOperand Op, SelectionDAG &DAG)
|
||||
GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
|
||||
|
||||
SDOperand GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
|
||||
SDOperand Hi = DAG.getNode(MipsISD::Hi, MVT::i32, GA);
|
||||
|
||||
const MVT::ValueType *VTs = DAG.getNodeValueTypes(MVT::i32, MVT::Flag);
|
||||
SDOperand Ops[] = { GA };
|
||||
|
||||
SDOperand Hi = DAG.getNode(MipsISD::Hi, VTs, 2, Ops, 1);
|
||||
SDOperand Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA);
|
||||
|
||||
return DAG.getNode(ISD::ADD, MVT::i32, Lo, Hi);
|
||||
SDOperand InFlag = Hi.getValue(1);
|
||||
return DAG.getNode(MipsISD::Add, MVT::i32, Lo, Hi, InFlag);
|
||||
}
|
||||
|
||||
SDOperand MipsTargetLowering::
|
||||
@ -370,8 +364,8 @@ LowerCallResult(SDOperand Chain, SDOperand InFlag, SDNode *TheCall,
|
||||
SmallVector<SDOperand, 8> ResultVals;
|
||||
|
||||
// Returns void
|
||||
if (!RVLocs.size())
|
||||
return Chain.Val;
|
||||
//if (!RVLocs.size())
|
||||
// return Chain.Val;
|
||||
|
||||
// Copy all of the result registers out of their specified physreg.
|
||||
for (unsigned i = 0; i != RVLocs.size(); ++i) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user