[llvm] [DirectX] replace byte splitting via vector bitcast with scalar (PR #140167)
Justin Bogner via llvm-commits
llvm-commits at lists.llvm.org
Wed Jun 4 13:58:03 PDT 2025
================
@@ -419,40 +421,103 @@ static void updateFnegToFsub(Instruction &I,
ToRemove.push_back(&I);
}
+static void
+legalizeGetHighLowi64Bytes(Instruction &I,
+ SmallVectorImpl<Instruction *> &ToRemove,
+ DenseMap<Value *, Value *> &ReplacedValues) {
+ if (auto *BitCast = dyn_cast<BitCastInst>(&I)) {
+ if (BitCast->getDestTy() ==
+ FixedVectorType::get(Type::getInt32Ty(I.getContext()), 2) &&
+ BitCast->getSrcTy()->isIntegerTy(64)) {
+ ToRemove.push_back(BitCast);
+ ReplacedValues[BitCast] = BitCast->getOperand(0);
+ return;
+ }
+ }
+
+ if (auto *Extract = dyn_cast<ExtractElementInst>(&I)) {
+ if (!dyn_cast<BitCastInst>(Extract->getVectorOperand()))
+ return;
+ auto *VecTy = dyn_cast<FixedVectorType>(Extract->getVectorOperandType());
+ if (VecTy && VecTy->getElementType()->isIntegerTy(32) &&
+ VecTy->getNumElements() == 2) {
+ if (auto *Index = dyn_cast<ConstantInt>(Extract->getIndexOperand())) {
+ unsigned Idx = Index->getZExtValue();
+ IRBuilder<> Builder(&I);
+
+ auto *Replacement = ReplacedValues[Extract->getVectorOperand()];
+ assert(Replacement && "The BitCast replacement should have been set "
+ "before working on ExtractElementInst.");
+ if (Idx == 0) {
+ Value *LowBytes = Builder.CreateTrunc(
+ Replacement, Type::getInt32Ty(I.getContext()));
+ ReplacedValues[Extract] = LowBytes;
+ } else {
+ assert(Idx == 1);
+ Value *LogicalShiftRight = Builder.CreateLShr(
+ Replacement,
+ ConstantInt::get(
+ Replacement->getType(),
+ APInt(Replacement->getType()->getIntegerBitWidth(), 32)));
+ Value *HighBytes = Builder.CreateTrunc(
+ LogicalShiftRight, Type::getInt32Ty(I.getContext()));
+ ReplacedValues[Extract] = HighBytes;
+ }
+ ToRemove.push_back(Extract);
+ Extract->replaceAllUsesWith(ReplacedValues[Extract]);
+ }
+ }
+ }
+}
+
namespace {
class DXILLegalizationPipeline {
public:
DXILLegalizationPipeline() { initializeLegalizationPipeline(); }
bool runLegalizationPipeline(Function &F) {
- SmallVector<Instruction *> ToRemove;
- DenseMap<Value *, Value *> ReplacedValues;
- for (auto &I : instructions(F)) {
- for (auto &LegalizationFn : LegalizationPipeline)
- LegalizationFn(I, ToRemove, ReplacedValues);
- }
+ bool MadeChange = false;
+ for (int Stage = 0; Stage < NumStages; ++Stage) {
+ SmallVector<Instruction *> ToRemove;
+ DenseMap<Value *, Value *> ReplacedValues;
----------------
bogner wrote:
Better to hoist the vector and the map outside of the loop and `reset` them here.
https://github.com/llvm/llvm-project/pull/140167
More information about the llvm-commits
mailing list