[clang] [llvm] [LLVM][IR] Add native vector support to ConstantInt & ConstantFP. (PR #74502)
Paul Walker via llvm-commits
llvm-commits at lists.llvm.org
Wed Dec 6 08:26:16 PST 2023
================
@@ -98,6 +99,13 @@ class ConstantInt final : public ConstantData {
/// value. Otherwise return a ConstantInt for the given value.
static Constant *get(Type *Ty, uint64_t V, bool IsSigned = false);
+ /// WARNING: Incomplete support, do not use. These methods exist for early
+ /// prototyping, for most use cases ConstantInt::get() should be used.
+ /// Return a ConstantInt with a splat of the given value.
+ static ConstantInt *getSplat(LLVMContext &Context, ElementCount EC,
+ const APInt &V);
+ static ConstantInt *getSplat(const VectorType *Ty, const APInt &V);
----------------
paulwalker-arm wrote:
I've moved the textual IR side of things to https://github.com/llvm/llvm-project/pull/74620 following the suggestion to have `splat(x)` be synonymous with `ConstantInt/FP::get()`.
https://github.com/llvm/llvm-project/pull/74502
More information about the llvm-commits
mailing list