[PATCH] D104838: [RISCV][NFC] Combine the control flow for different RetOp of interrupt function
Jim Lin via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 23 22:11:49 PDT 2021
Jim created this revision.
Herald added subscribers: vkmr, frasercrmck, evandro, luismarques, apazos, sameer.abuasal, s.egerton, benna, psnobl, jocewei, PkmX, the_o, brucehoult, MartinMosbeck, rogfer01, edward-jones, zzheng, jrtc27, shiva0217, kito-cheng, niosHD, sabuasal, simoncook, johnrusso, rbar, asb, hiraditya.
Jim requested review of this revision.
Herald added subscribers: llvm-commits, MaskRay.
Herald added a project: LLVM.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D104838
Files:
llvm/lib/Target/RISCV/RISCVISelLowering.cpp
Index: llvm/lib/Target/RISCV/RISCVISelLowering.cpp
===================================================================
--- llvm/lib/Target/RISCV/RISCVISelLowering.cpp
+++ llvm/lib/Target/RISCV/RISCVISelLowering.cpp
@@ -7938,6 +7938,7 @@
RetOps.push_back(Glue);
}
+ unsigned RetOpc = RISCVISD::RET_FLAG;
// Interrupt service routines use different return instructions.
const Function &Func = DAG.getMachineFunction().getFunction();
if (Func.hasFnAttribute("interrupt")) {
@@ -7949,18 +7950,15 @@
StringRef Kind =
MF.getFunction().getFnAttribute("interrupt").getValueAsString();
- unsigned RetOpc;
if (Kind == "user")
RetOpc = RISCVISD::URET_FLAG;
else if (Kind == "supervisor")
RetOpc = RISCVISD::SRET_FLAG;
else
RetOpc = RISCVISD::MRET_FLAG;
-
- return DAG.getNode(RetOpc, DL, MVT::Other, RetOps);
}
- return DAG.getNode(RISCVISD::RET_FLAG, DL, MVT::Other, RetOps);
+ return DAG.getNode(RetOpc, DL, MVT::Other, RetOps);
}
void RISCVTargetLowering::validateCCReservedRegs(
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104838.354153.patch
Type: text/x-patch
Size: 1059 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20210624/1aa2986b/attachment.bin>
More information about the llvm-commits
mailing list