[PATCH] D131546: [LoongArch] Remove null LowerOperation
Lu Weining via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Aug 10 03:06:06 PDT 2022
SixWeining updated this revision to Diff 451404.
SixWeining added a comment.
Return `SDValue()` by default.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D131546/new/
https://reviews.llvm.org/D131546
Files:
llvm/lib/Target/LoongArch/LoongArchISelLowering.cpp
Index: llvm/lib/Target/LoongArch/LoongArchISelLowering.cpp
===================================================================
--- llvm/lib/Target/LoongArch/LoongArchISelLowering.cpp
+++ llvm/lib/Target/LoongArch/LoongArchISelLowering.cpp
@@ -125,8 +125,6 @@
SDValue LoongArchTargetLowering::LowerOperation(SDValue Op,
SelectionDAG &DAG) const {
switch (Op.getOpcode()) {
- default:
- report_fatal_error("unimplemented operand");
case ISD::GlobalAddress:
return lowerGlobalAddress(Op, DAG);
case ISD::SHL_PARTS:
@@ -135,28 +133,18 @@
return lowerShiftRightParts(Op, DAG, true);
case ISD::SRL_PARTS:
return lowerShiftRightParts(Op, DAG, false);
- case ISD::SHL:
- case ISD::SRA:
- case ISD::SRL:
- // This can be called for an i32 shift amount that needs to be promoted.
- assert(Op.getOperand(1).getValueType() == MVT::i32 && Subtarget.is64Bit() &&
- "Unexpected custom legalisation");
- return SDValue();
- case ISD::BSWAP:
- return SDValue();
case ISD::ConstantPool:
return lowerConstantPool(Op, DAG);
case ISD::FP_TO_SINT:
return lowerFP_TO_SINT(Op, DAG);
case ISD::BITCAST:
return lowerBITCAST(Op, DAG);
- case ISD::FP_TO_UINT:
- return SDValue();
case ISD::UINT_TO_FP:
return lowerUINT_TO_FP(Op, DAG);
case ISD::VASTART:
return lowerVASTART(Op, DAG);
}
+ return SDValue();
}
SDValue LoongArchTargetLowering::lowerVASTART(SDValue Op,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D131546.451404.patch
Type: text/x-patch
Size: 1497 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220810/30deb7d3/attachment.bin>
More information about the llvm-commits
mailing list