ARM NEON内在函数。 vmulq_lane_f32有什么作用?

时间:2014-03-27 18:56:02

标签: floating-point arm neon intrinsics

谷歌搜索我能找到的最好的是

float32x4_t vmulq_lane_f32 (float32x4_t, float32x2_t, const int)
Form of expected instruction(s): vmul.f32 q0, q0, d0[0]

调查霓虹灯程序员'指南表明它是标量乘法的向量。但是还有其他API用于此目的。

float32x4_t vmulq_n_f32 (float32x4_t, float32_t)
Form of expected instruction(s): vmul.f32 q0, q0, d0[0]

所以我还不知道第一个API的目的是什么,它的概念是什么。 编辑:上述信息来源:http://gcc.gnu.org/onlinedocs/gcc/ARM-NEON-Intrinsics.html

1 个答案:

答案 0 :(得分:0)

float32x4_t vmulq_lane_f32 (float32x4_t, float32x2_t, const int)
Form of expected instruction(s): vmul.f32 q0, q0, d0[0]

应该写成

float32x4_t dst = vmulq_lane_f32 (float32x4_t q, float32x2_t d, const int c)
Form of expected instruction(s): vmul.f32 dst, q, d[c]

其中c可以是0-1。

在第二个例子中

float32x4_t vmulq_n_f32 (float32x4_t, float32_t)
Form of expected instruction(s): vmul.f32 q0, q0, d0[0]

float32_t是非向量类型,意味着编译器将生成必要的代码以将该参数加载到向量寄存器中然后使用它,因此您可以免费获得它。

使用vmulq_lane_f32,您明确告知要使用哪个寄存器,并且必须确保它包含您之前想要的内容。

$ cat vmulq.c 
#include "arm_neon.h"

register float32x4_t a asm("q4");
register float32x2_t b asm("d10");
register float32x4_t c asm("q6");
register float32x4_t d asm("q7");

void foo() {
    c = vmulq_lane_f32(a, b, 1);
    d = vmulq_lane_f32(a, b, 0);
}

void bar() {
    a = vmulq_n_f32(a, 5);
}

$objdump -d vmulq.o

vmulq.o:     file format elf32-littlearm


Disassembly of section .text:

00000000 <foo>:
   0:   f3a8c96a    vmul.f32    q6, q4, d10[1]
   4:   f3a8e94a    vmul.f32    q7, q4, d10[0]
   8:   e12fff1e    bx  lr

0000000c <bar>:
   c:   ed9f7b01    vldr    d7, [pc, #4]    ; 18 <bar+0xc>
  10:   f3a88947    vmul.f32    q4, q4, d7[0]
  14:   e12fff1e    bx  lr
  18:   40a00000    .word   0x40a00000
  1c:   00000000    .word   0x00000000