mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Allow target to custom lower READCYCLECOUNTER (when it doesn't have to be expanded).
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32016 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
b27c480d84
commit
f0b3ba6752
@ -1847,11 +1847,19 @@ SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
|
||||
case ISD::READCYCLECOUNTER:
|
||||
Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
|
||||
Result = DAG.UpdateNodeOperands(Result, Tmp1);
|
||||
switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
|
||||
Node->getValueType(0))) {
|
||||
default: assert(0 && "This action is not supported yet!");
|
||||
case TargetLowering::Legal: break;
|
||||
case TargetLowering::Custom:
|
||||
Result = TLI.LowerOperation(Result, DAG);
|
||||
break;
|
||||
}
|
||||
|
||||
// Since rdcc produce two values, make sure to remember that we legalized
|
||||
// both of them.
|
||||
AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
|
||||
AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
|
||||
AddLegalizedOperand(SDOperand(Node, 0), LegalizeOp(Result.getValue(0)));
|
||||
AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Result.getValue(1)));
|
||||
return Result;
|
||||
|
||||
case ISD::SELECT:
|
||||
|
Loading…
Reference in New Issue
Block a user