mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-01 17:32:36 +00:00
Revert 95130.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95160 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9d73d78f45
commit
022d9e1cef
@ -1168,7 +1168,7 @@ public:
|
|||||||
/// InVals array with legal-type return values from the call, and return
|
/// InVals array with legal-type return values from the call, and return
|
||||||
/// the resulting token chain value.
|
/// the resulting token chain value.
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -5735,7 +5735,7 @@ TargetLowering::LowerCallTo(SDValue Chain, const Type *RetTy,
|
|||||||
}
|
}
|
||||||
|
|
||||||
SmallVector<SDValue, 4> InVals;
|
SmallVector<SDValue, 4> InVals;
|
||||||
Chain = LowerCall(Chain, Callee, RetTy, CallConv, isVarArg, isTailCall,
|
Chain = LowerCall(Chain, Callee, CallConv, isVarArg, isTailCall,
|
||||||
Outs, Ins, dl, DAG, InVals);
|
Outs, Ins, dl, DAG, InVals);
|
||||||
|
|
||||||
// Verify that the target's LowerCall behaved as expected.
|
// Verify that the target's LowerCall behaved as expected.
|
||||||
|
@ -895,7 +895,7 @@ void ARMTargetLowering::PassF64ArgInRegs(DebugLoc dl, SelectionDAG &DAG,
|
|||||||
/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
|
/// ARMISD:CALL <- callseq_end chain. Also add input and output parameter
|
||||||
/// nodes.
|
/// nodes.
|
||||||
SDValue
|
SDValue
|
||||||
ARMTargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
ARMTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -317,7 +317,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -219,7 +219,7 @@ static SDValue LowerJumpTable(SDValue Op, SelectionDAG &DAG) {
|
|||||||
#include "AlphaGenCallingConv.inc"
|
#include "AlphaGenCallingConv.inc"
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
AlphaTargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
AlphaTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -120,7 +120,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -272,7 +272,6 @@ BlackfinTargetLowering::LowerReturn(SDValue Chain,
|
|||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
BlackfinTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
BlackfinTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
const Type *RetTy,
|
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -63,7 +63,7 @@ namespace llvm {
|
|||||||
DebugLoc dl, SelectionDAG &DAG,
|
DebugLoc dl, SelectionDAG &DAG,
|
||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -1138,7 +1138,7 @@ static SDNode *isLSAAddress(SDValue Op, SelectionDAG &DAG) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
SPUTargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
SPUTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -156,7 +156,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -271,7 +271,7 @@ MSP430TargetLowering::LowerFormalArguments(SDValue Chain,
|
|||||||
}
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
MSP430TargetLowering::LowerCall(SDValue Chain, SDValue Callee,const Type *RetTy,
|
MSP430TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -153,7 +153,7 @@ namespace llvm {
|
|||||||
DebugLoc dl, SelectionDAG &DAG,
|
DebugLoc dl, SelectionDAG &DAG,
|
||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -684,7 +684,7 @@ static bool CC_MipsO32(unsigned ValNo, EVT ValVT,
|
|||||||
/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
|
/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
|
||||||
/// TODO: isVarArg, isTailCall.
|
/// TODO: isVarArg, isTailCall.
|
||||||
SDValue
|
SDValue
|
||||||
MipsTargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
MipsTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -116,7 +116,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -1353,7 +1353,7 @@ GetDataAddress(DebugLoc dl, SDValue Callee, SDValue &Chain,
|
|||||||
}
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
PIC16TargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
PIC16TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -142,7 +142,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -2674,7 +2674,7 @@ PPCTargetLowering::FinishCall(CallingConv::ID CallConv, DebugLoc dl,
|
|||||||
}
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
PPCTargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
PPCTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -430,7 +430,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -250,7 +250,7 @@ SparcTargetLowering::LowerFormalArguments(SDValue Chain,
|
|||||||
}
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
SparcTargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
SparcTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -85,7 +85,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -249,7 +249,6 @@ SystemZTargetLowering::LowerFormalArguments(SDValue Chain,
|
|||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
SystemZTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
SystemZTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
const Type *RetTy,
|
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -124,7 +124,7 @@ namespace llvm {
|
|||||||
DebugLoc dl, SelectionDAG &DAG,
|
DebugLoc dl, SelectionDAG &DAG,
|
||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -1778,7 +1778,7 @@ EmitTailCallStoreRetAddr(SelectionDAG & DAG, MachineFunction &MF,
|
|||||||
}
|
}
|
||||||
|
|
||||||
SDValue
|
SDValue
|
||||||
X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
@ -1791,8 +1791,8 @@ X86TargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
|||||||
|
|
||||||
if (isTailCall)
|
if (isTailCall)
|
||||||
// Check if it's really possible to do a tail call.
|
// Check if it's really possible to do a tail call.
|
||||||
isTailCall = IsEligibleForTailCallOptimization(Callee, RetTy, CallConv,
|
isTailCall = IsEligibleForTailCallOptimization(Callee, CallConv, isVarArg,
|
||||||
isVarArg, Outs, Ins, DAG);
|
Outs, Ins, DAG);
|
||||||
|
|
||||||
assert(!(isVarArg && CallConv == CallingConv::Fast) &&
|
assert(!(isVarArg && CallConv == CallingConv::Fast) &&
|
||||||
"Var args not supported with calling convention fastcc");
|
"Var args not supported with calling convention fastcc");
|
||||||
@ -2247,7 +2247,6 @@ unsigned X86TargetLowering::GetAlignedArgumentStackSize(unsigned StackSize,
|
|||||||
/// optimization should implement this function.
|
/// optimization should implement this function.
|
||||||
bool
|
bool
|
||||||
X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
|
X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
|
||||||
const Type *RetTy,
|
|
||||||
CallingConv::ID CalleeCC,
|
CallingConv::ID CalleeCC,
|
||||||
bool isVarArg,
|
bool isVarArg,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
@ -2329,7 +2328,14 @@ X86TargetLowering::IsEligibleForTailCallOptimization(SDValue Callee,
|
|||||||
return true;
|
return true;
|
||||||
|
|
||||||
// If the return types match, then it's safe.
|
// If the return types match, then it's safe.
|
||||||
return CallerRetTy == RetTy;
|
// Don't tail call optimize recursive call.
|
||||||
|
GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee);
|
||||||
|
if (!G) return false; // FIXME: common external symbols?
|
||||||
|
if (const Function *CalleeF = dyn_cast<Function>(G->getGlobal())) {
|
||||||
|
const Type *CalleeRetTy = CalleeF->getReturnType();
|
||||||
|
return CallerRetTy == CalleeRetTy;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
FastISel *
|
FastISel *
|
||||||
|
@ -627,7 +627,7 @@ namespace llvm {
|
|||||||
/// IsEligibleForTailCallOptimization - Check whether the call is eligible
|
/// IsEligibleForTailCallOptimization - Check whether the call is eligible
|
||||||
/// for tail call optimization. Targets which want to do tail call
|
/// for tail call optimization. Targets which want to do tail call
|
||||||
/// optimization should implement this function.
|
/// optimization should implement this function.
|
||||||
bool IsEligibleForTailCallOptimization(SDValue Callee, const Type *RetTy,
|
bool IsEligibleForTailCallOptimization(SDValue Callee,
|
||||||
CallingConv::ID CalleeCC,
|
CallingConv::ID CalleeCC,
|
||||||
bool isVarArg,
|
bool isVarArg,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
@ -707,7 +707,7 @@ namespace llvm {
|
|||||||
DebugLoc dl, SelectionDAG &DAG,
|
DebugLoc dl, SelectionDAG &DAG,
|
||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
CallingConv::ID CallConv, bool isVarArg, bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
const SmallVectorImpl<ISD::InputArg> &Ins,
|
const SmallVectorImpl<ISD::InputArg> &Ins,
|
||||||
|
@ -609,7 +609,7 @@ SDValue XCoreTargetLowering::LowerFRAMEADDR(SDValue Op, SelectionDAG &DAG) {
|
|||||||
|
|
||||||
/// XCore call implementation
|
/// XCore call implementation
|
||||||
SDValue
|
SDValue
|
||||||
XCoreTargetLowering::LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
XCoreTargetLowering::LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
@ -147,7 +147,7 @@ namespace llvm {
|
|||||||
SmallVectorImpl<SDValue> &InVals);
|
SmallVectorImpl<SDValue> &InVals);
|
||||||
|
|
||||||
virtual SDValue
|
virtual SDValue
|
||||||
LowerCall(SDValue Chain, SDValue Callee, const Type *RetTy,
|
LowerCall(SDValue Chain, SDValue Callee,
|
||||||
CallingConv::ID CallConv, bool isVarArg,
|
CallingConv::ID CallConv, bool isVarArg,
|
||||||
bool &isTailCall,
|
bool &isTailCall,
|
||||||
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
const SmallVectorImpl<ISD::OutputArg> &Outs,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user