|
From: Julian S. <js...@ac...> - 2014-02-17 11:20:32
|
Anil, Support for aarch64 is under active development. V can run large amounts of integer and FP code -- basically anything that gcc-4.8.2 -O2 generates -- and SIMD support is in progress. I suspect you have run across an unsupported SIMD instruction in handwritten assembly code for memset: > ==1747== valgrind: Unrecognised instruction at address 0x4016284. > ==1747== at 0x4016284: memset (memset.S:175) Can you use objdump to find the instruction? Try running with the flags -v --sym-offsets=yes -- you can maybe deduce from that output in which shared object the instruction is (ld.so or glibc.so) and where it is relative to the start of the function. J |