-
Notifications
You must be signed in to change notification settings - Fork 14.3k
[RISCV][VLOPT] Simplify code by removing extra temporary variables. NFC #122333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Just do the conditional operator in the return statement.
@llvm/pr-subscribers-backend-risc-v Author: Craig Topper (topperc) ChangesJust do the conditional operator in the return statement. Full diff: https://github.com/llvm/llvm-project/pull/122333.diff 1 Files Affected:
diff --git a/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp b/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
index 9a0938bc38dd45..5025fd27a939c9 100644
--- a/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
+++ b/llvm/lib/Target/RISCV/RISCVVLOptimizer.cpp
@@ -546,10 +546,8 @@ getOperandLog2EEW(const MachineOperand &MO, const MachineRegisterInfo *MRI) {
case RISCV::VFWCVT_RTZ_X_F_V:
case RISCV::VFWCVT_F_XU_V:
case RISCV::VFWCVT_F_X_V:
- case RISCV::VFWCVT_F_F_V: {
- unsigned Log2EEW = IsMODef ? MILog2SEW + 1 : MILog2SEW;
- return Log2EEW;
- }
+ case RISCV::VFWCVT_F_F_V:
+ return IsMODef ? MILog2SEW + 1 : MILog2SEW;
// Def and Op1 uses EEW=2*SEW. Op2 uses EEW=SEW.
case RISCV::VWADDU_WV:
@@ -567,8 +565,7 @@ getOperandLog2EEW(const MachineOperand &MO, const MachineRegisterInfo *MRI) {
case RISCV::VFWSUB_WV: {
bool IsOp1 = HasPassthru ? MO.getOperandNo() == 2 : MO.getOperandNo() == 1;
bool TwoTimes = IsMODef || IsOp1;
- unsigned Log2EEW = TwoTimes ? MILog2SEW + 1 : MILog2SEW;
- return Log2EEW;
+ return TwoTimes ? MILog2SEW + 1 : MILog2SEW;
}
// Vector Integer Extension
@@ -609,8 +606,7 @@ getOperandLog2EEW(const MachineOperand &MO, const MachineRegisterInfo *MRI) {
case RISCV::VFNCVT_ROD_F_F_W: {
bool IsOp1 = HasPassthru ? MO.getOperandNo() == 2 : MO.getOperandNo() == 1;
bool TwoTimes = IsOp1;
- unsigned Log2EEW = TwoTimes ? MILog2SEW + 1 : MILog2SEW;
- return Log2EEW;
+ return TwoTimes ? MILog2SEW + 1 : MILog2SEW;
}
// Vector Mask Instructions
@@ -724,8 +720,7 @@ getOperandLog2EEW(const MachineOperand &MO, const MachineRegisterInfo *MRI) {
case RISCV::VFWREDOSUM_VS:
case RISCV::VFWREDUSUM_VS: {
bool TwoTimes = IsMODef || MO.getOperandNo() == 3;
- unsigned Log2EEW = TwoTimes ? MILog2SEW + 1 : MILog2SEW;
- return Log2EEW;
+ return TwoTimes ? MILog2SEW + 1 : MILog2SEW;
}
default:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/16/builds/11740 Here is the relevant piece of the build log for the reference
|
…FC (llvm#122333) Just do the conditional operator in the return statement.
Just do the conditional operator in the return statement.