[llvm] [Codegen][LegalizeIntegerTypes] Improve shift through stack (PR #96151)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Aug 16 09:31:42 PDT 2024
================
@@ -4666,15 +4681,16 @@ void DAGTypeLegalizer::ExpandIntRes_ShiftThroughStack(SDNode *N, SDValue &Lo,
AdjStackPtr = DAG.getMemBasePlusOffset(AdjStackPtr, ByteOffset, dl);
// And load it! While the load is not legal, legalizing it is obvious.
- SDValue Res = DAG.getLoad(
- VT, dl, Ch, AdjStackPtr,
- MachinePointerInfo::getUnknownStack(DAG.getMachineFunction()), Align(1));
- // We've performed the shift by a CHAR_BIT * [_ShAmt / CHAR_BIT_]
-
- // If we may still have a less-than-CHAR_BIT to shift by, do so now.
- if (!ShiftByByteMultiple) {
- SDValue ShAmtRem = DAG.getNode(ISD::AND, dl, ShAmtVT, ShAmt,
- DAG.getConstant(7, dl, ShAmtVT));
+ SDValue Res =
+ DAG.getLoad(VT, dl, Ch, AdjStackPtr,
+ MachinePointerInfo::getUnknownStack(DAG.getMachineFunction()),
+ commonAlignment(StackAlign, LoadVT.getStoreSize()));
----------------
topperc wrote:
Nevermind that's factored into the LoadVT.
https://github.com/llvm/llvm-project/pull/96151
More information about the llvm-commits
mailing list