Hi Does iphone processor ARMV6 supports MMX instructions?

link|improve this question

0% accept rate
feedback

5 Answers

The short answer is no - MMX is an intel technology. The longer answer is that ARM Supports the Neon SIMD instruction set. It is a similar architecture to the MMX instruction (i.e. it computes vecors) but it is obvioulsy not the same. ARM ship libraries to help you generate SIMD code (Using OpenMAX and GCC compiler intrinsics).

The iPhone includes a ARMv6KZ which does not support NEON later models include a Samsung S5PC100 which is based on the ARM Cortex-A8 core and does support Neon. Similarly, the Apple A4 powering the iPad is a Cortex-A8 based SoC.

link|improve this answer
And of course, time marches on, and now the iPhone 3Gs and the non-8GB iPod Touch third generation have Neon (and likely the iPad does, too). – Pierre Lebeaupin Apr 1 '10 at 15:43
thanks. Updated main comment to reflect this. – Roger Nolan Apr 6 '10 at 12:10
the link is broken. – artyom.stv Feb 8 at 6:54
feedback

MMX is a SIMD instruction set for x86. The iPhone uses an ARM processor so you can't use MMX.

link|improve this answer
1  
Intel's ARM processors support MMX. More precisely: they support a technology named MMX: Intel added SIMD instructions to their ARM processors and called them "MMX" even though they have nothing to do with x86 MMX and are in no way compatible. (Just like they implemented SMT in the Pentium4 and CMT in the Itanium and called them both HyperThreading, even though SMT and CMT are two entirely different things.) – Jörg W Mittag Apr 26 '09 at 21:43
3  
Intel don't make ARM processors. They made StrongARM processors. – Roger Nolan May 2 '09 at 5:58
feedback

As others have posted here, MMX is the Intel SIMD technology for the x86 architecture. So no, the iPhone does not support MMX itself.

The iPhone features an ARM Coretex A8 CPU, specifically the Samsung SoC S5PC100 that provides a SIMD extension known as NEON (the ARM equivalent to MMX).

While this isn't explicitly documented by Apple yet, the toolchain seems to support it. There are instrinsics for NEON in gcc, so you should be able to write SIMD code using NEON.

Note that this feature is specific to the 3GS, so is not backward compatible. You would need to ensure your app was flagged to indicate it required the 3GS (I don't think you can access the status registers for runtime detection).

link|improve this answer
feedback

Possibly helpful link: ARM Processor Instruction Set Architecture.

Looks like ARMV6 has a SIMD unit of some kind...

link|improve this answer
feedback

ARMs are a bit configurable, so, it's possible that the ARM in the iPhone doesn't have this. Somebody who's actually signed up for the program might be able to answer, if the NDA allows.

If you have something that MUST work, you could, I guess, build bochs. My guess is that you want to use mmx instructions for speed, and, obviously, this won't help a whole lot. If you have some algorithm that could run slowly, but, you can't reverse engineer it to run without mmx instructions bochs might solve the problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.