This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Optimized ARM version of memcmp

Hi, 

I came across optimized ARM version of memcpy while going through disassembly and I was wondering if there is one for memcmp, didn't find one in disassembly. Please let me know if there is one. I am using Cortex-R7. 

Thanks. 

Parents
  • Hello, as far as a I know there is only a single standard implementation of memcmp (per core) in the standard library.

    If you link with microlib (--library_type=microlib) there is a smaller (but likely slower) implementation.

Reply
  • Hello, as far as a I know there is only a single standard implementation of memcmp (per core) in the standard library.

    If you link with microlib (--library_type=microlib) there is a smaller (but likely slower) implementation.

Children