ARM SIMD instruction -- movi

MOVI
      Move Immediate (vector). This instruction places an immediate constant into every vector element of the destination SIMD&FP register。


      立即移动(向量)。此指令将一个立即常数放入目标SIMD&FP寄存器的每个向量元素中。

  40294c:    1e602118     fcmpe    d8, #0.0
  402950:    54000b64     b.mi    402abc   // b.first   mi:负数, 小于0.0跳转
    
    ...

  402abc:    2f00e408     movi    d8, #0x0                // d8=0.0
  402ac0:    17ffffa5     b    402954

即:

if (d8 < 0.0)

        d8 = 0.0;

你可能感兴趣的:(Assembly,汇编)