================ @@ -95,6 +99,133 @@ static void initializeAlloca(CodeGenFunction &CGF, AllocaInst *AI, Value *Size, I->addAnnotationMetadata("auto-init"); } +static Value *handleHlslSplitdouble(const CallExpr *E, CodeGenFunction *CGF) { + Value *Op0 = CGF->EmitScalarExpr(E->getArg(0)); + const auto *OutArg1 = dyn_cast<HLSLOutArgExpr>(E->getArg(1)); + const auto *OutArg2 = dyn_cast<HLSLOutArgExpr>(E->getArg(2)); + + CallArgList Args; + LValue Op1TmpLValue = + CGF->EmitHLSLOutArgExpr(OutArg1, Args, OutArg1->getType()); + LValue Op2TmpLValue = + CGF->EmitHLSLOutArgExpr(OutArg2, Args, OutArg2->getType()); + + if (CGF->getTarget().getCXXABI().areArgsDestroyedLeftToRightInCallee()) + Args.reverseWritebacks(); + + auto EmitVectorCode = + [](Value *Op, CGBuilderTy *Builder, + FixedVectorType *DestTy) -> std::pair<Value *, Value *> { + Value *bitcast = Builder->CreateBitCast(Op, DestTy); + + SmallVector<int> LowbitsIndex; + SmallVector<int> HighbitsIndex; + + for (unsigned int Idx = 0; Idx < DestTy->getNumElements(); Idx += 2) { + LowbitsIndex.push_back(Idx); + HighbitsIndex.push_back(Idx + 1); + } + + Value *Arg0 = Builder->CreateShuffleVector(bitcast, LowbitsIndex); + Value *Arg1 = Builder->CreateShuffleVector(bitcast, HighbitsIndex); + + return std::make_pair(Arg0, Arg1); + }; ---------------- tex3d wrote:
Though you might want to skip this simplification if a generalized version of this is used to handle any size vectors with constraints being applied later for SPIR-V. https://github.com/llvm/llvm-project/pull/109331 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits