• summary of NEON-intrinsics for ARMv8?
    Hello, is there a summery of NEON-instrinsics vor ARMv8 (specialy for AARCH64?) like this one ARM Information Center ? I only found a this pdf: http://infocenter.arm.com/help/topic/com.arm.doc.ihi0073a...
  • Is NEON Floating Point (VFP) Only?
    Referring to the diagram below, it appears that NEON only applies to floating point processing. Is this correct? Does it mean that NEON only applies to using the VFP? Does it mean that NEON does not apply...
  • gcc with neon
    Hi I add a piece of code in multimedia. It makes data in array reverse. It works, but when I add -O2 or -O3 the result is error and vmov with -O2 ,-O3 create illegal instruction. I don't understand.....
  • Cortex series scheme NEON has rename SIMD register?
    Note: This was originally posted on 18th April 2013 at http://forums.arm.com NEON contains 16 SIMD user visible registers q0~q15, while does it have more architecturally visible register? Just like general...
  • Using NEON instructions to speed up cascaded biquads - how it works?
    I am trying to understand how the cascaded biquad filtering is optimized for Arm processors in CMSIS using Neon extensions. The code is ifdefed under `#if defined(ARM_MATH_NEON)` here: https://github...