ARM 的 umlal 指令的 Neon 等价物是什么?

What is the Neon equivalent of ARM's umlal instruction?

我尝试优化一段代码,但找不到与 umlal 等效的 SIMD/Vector:

umlal  r1, r2, r3, r4 

这样的指令退出了?

谢谢!

VMLAL.U32 可能就是您要找的。

请注意,如果您可以通过 "C" 原型查看数据类型和内容,有时查看内在函数列表会更容易一些。一些 ARM NEON 参考文献似乎无法找到变体。

http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0491c/BABDEAGJ.html

https://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/ARM-NEON-Intrinsics.html

(刚看到bitbank的评论)