[Lldb-commits] [lldb] [lldb] Add some vector operations to the IRInterpreter (PR #155000)
Daniel Sanders via lldb-commits
lldb-commits at lists.llvm.org
Fri Sep 5 10:35:25 PDT 2025
================
@@ -644,7 +723,25 @@ bool IRInterpreter::CanInterpret(llvm::Module &module, llvm::Function &function,
switch (operand_type->getTypeID()) {
default:
break;
- case Type::FixedVectorTyID:
+ case Type::FixedVectorTyID: {
----------------
dsandersllvm wrote:
I didn't check bitcast because it didn't come up in the expressions I was adding. I'll check it has appropriate guards. That should be the only one that's a bit weird (it's only an issue for big-endian ARM and MIPS). For the other instructions I was mostly leaning on the test suite showing issues if I broke something. I can have a look through them
https://github.com/llvm/llvm-project/pull/155000
More information about the lldb-commits
mailing list