Tagged Questions

This tag is used for questions related to the ARM family of processor cores or systems using an ARM core.

learn more… | top users | synonyms

148
votes
6answers
38k views

Warning iPhone apps should include an armv6 architecture even with build config set

It's been awhile since I've had to adjust project build settings. After upgrading to a recent SDK I'm having trouble building my ad hoc distribution configuration. Build generates this warning and ...
32
votes
5answers
9k views

How to build for armv6 and armv7 architectures with iOS 5

In iOS5 Apple drops the armv6 architecture from the ARCHS_STANDARD_32_BIT. In order to keep the support for iPhone3G I still want to compile in armv6 even in iOS5. Does anyone found an issue for ...
31
votes
8answers
15k views

Resources for learning ARM assembly

I am looking for resources, either online tutorials or books, for learning ARM assembly. What would you recommend?
23
votes
15answers
1k views

What microprocessor for experimentation?

I harbor a secret fantasy (oops, not so secret anymore) to build a simple computer from scratch. I'm looking for an easy-to-use microprocessor to start with. I know about the usual suspects such as ...
17
votes
3answers
4k views

ARM vs Thumb performance on iPhone 3GS, non floating point code

I was wondering if anyone had any hard numbers on ARM vs Thumb code performance on iPhone 3GS. Specifically for non-floating point (VFP or NEON) code - I'm aware of the issues with floating point ...
16
votes
5answers
4k views

What Java embedded VM do you suggest for ARM development?

There are a lot of Java embedded VMs. What do you suggest for ARM development? http://www.cacaovm.org/ http://www.rtjcom.com/main.php?p=home http://www.k-embedded-java.com/ ...
15
votes
2answers
942 views

Common SIMD techniques

Where can I find information about common SIMD tricks? I have an instruction set and know, how to write non-tricky SIMD code, but I know, SIMD now is much more powerful. It can hold complex ...
15
votes
13answers
1k views

Which embedded (microcontroller) platform to move to

I have been programming with 8bit PICs for quite some time but now need to move to something more powerful. I would like a family of chips that: I can get a good (free) IDE for Solderable packages, ...
15
votes
19answers
3k views

Best platform for learning embedded programming?

I'm looking to learn about embedded programming (in C mainly, but I hope to brush up on my ASM as well) and I was wondering what the best platform would be. I have some experience in using Atmel AVR's ...
14
votes
7answers
488 views

C++ exception overhead

Why do embedded platform developers continuosly attempt to remove usage C++ exceptions from their SDKs? For example, Bada SDK suggests the following workaround for the exception usage, which looks ...
14
votes
2answers
1k views

How does the linux kernel manage less than 1GB physical memory?

I'm learning the linux kernel internals and while reading "Understanding Linux Kernel", quite a few memory related questions struck me. One of them is, how the Linux kernel handles the memory mapping ...
14
votes
3answers
1k views

What do I need for development for an ARM processor?

I'm familiar with X86[-64] architecture & assembly. I want to start develop for an ARM processor. But unlike desktop processors, I don't have an actual ARM processor. I think I need an ARM ...
14
votes
5answers
2k views

Suggested resources for newbie ARM programmer?

I'm starting develop an application in embedded arm board from http://www.embeddedarm.com. I'm a newbie in developing embedded applications. I would like resources like books, online guides that will ...
11
votes
5answers
2k views

Why ARM NEON not faster than plain C++?

Here is a C++ code: #define ARR_SIZE_TEST ( 8 * 1024 * 1024 ) void cpp_tst_add( unsigned* x, unsigned* y ) { for ( register int i = 0; i < ARR_SIZE_TEST; ++i ) { x[ i ] = x[ i ] + ...
11
votes
3answers
450 views

Is there an Android PCI card?

Does anyone know of a PCI card suitable for Android development? I find the emulator unusably slow (Linux 64-bit, quad-core, 8GB RAM), and a card I could hide in my desktop would be nice. I know ...
11
votes
4answers
1k views

Differences between ARM architectures from a C programmer's perspective?

I'm fairly new to programming for ARM. I've noticed there are several architectures like ARMv4, ARMv5, ARMv6, etc. What is the difference between these? Do they have different instruction sets or ...
11
votes
5answers
658 views

Assembly language : try to understand a small function

for my work, I need to reverse what this portion of code (ARM9) is doing. Im a java developper & I really don't understand this portion of code related to a single function. Of course I'm asking ...
11
votes
4answers
3k views

Does Android castrate the ARM's Jazelle technology?

The justification that I've seen for shall we say "Bastardizing" the Java bytecodes in Android was performance. (I suspect there is another reason.) However by changing the byte codes haven't they ...
10
votes
9answers
499 views

Can we optimize code to reduce power consumption?

Is there any techniques to optimize code in order to ensure lesser power consumption.Architecture is ARM.language is C
10
votes
4answers
2k views

Learning ARM assembly

During this year there will be coming couple sub-600€ multi-touch portable computers that contain Tegra2. They bring me to a good excuse to learning ARM assembly language. But I have no clue where to ...
10
votes
3answers
2k views

What knowledge/expertize is required to port android to custom arm device?

I am working on a system on which currently linux kernel and microwindows windowing system is running. Code of current linux system drivers is available to me. I want to port android on it, just as a ...
10
votes
2answers
7k views

ARM to C calling convention, registers to save

It's been a while since I last coded arm assembler and I'm a little rusty on the details. If I call a C function from arm, I only have to worry about saving r0-r3 and lr, right? If the C function ...
9
votes
1answer
153 views

What exactly is a dual-issue processor?

I came across several references to the concept of a dual issue processor (I hope this even makes sense in a sentence). I can't find any explanation of what exactly dual issue is. Google gives me ...
9
votes
1answer
441 views

What toolchain do I need to cross-compile Clang for iOS

OK, so first of all I know that this can be compiled on iOS (armv7) because I read the documentation. However, I can't find the right toolchain. So, now, what toolchains I've already tried: ...
9
votes
1answer
350 views

How to measure ARM performance?

I'm working with optimizing a software and wants to measure the performance. So I am currently simulating an ARM platform with OVP (open virtual platform) and I get the statistics as simulation time ...
9
votes
1answer
486 views

Using Multiply Accumulate Instruction Inline Assembly in C++

I am implementing a FIR filter on an ARM9 processor and am trying to use the SMLAL instruction. Initially I had the following filter implemented and it worked perfectly, except this method uses too ...
9
votes
5answers
526 views

ARM assembly puzzle

First of all, I'm not sure if solution even exists. I spent more than a couple of hours trying to come up with one, so beware. The problem: r1 contains an arbitrary integer, flags are not set ...
9
votes
2answers
6k views

Differences Between ARM Assembly and x86 Assembly

I'm now going to learn ARM Assembly, to develop for my Windows Mobile 5 iPAQ, but I have some questions: What Are The Main Differences Between ARM Assembly and x86 Assembly? Is Any Differences In ...
9
votes
5answers
4k views

Fast 4x4 Matrix Multiplication in C

I am trying to find an optimized C or Assembler implementation of a function that multiplies two 4x4 matrices with each other. The platform is an ARM6 or ARM7 based iPhone or iPod. Currently, I am ...
9
votes
2answers
674 views

Weird python behaviour on machine with ARM CPU

What could possibly cause this weird python behaviour? Python 2.6.2 (r262:71600, May 31 2009, 03:55:41) [GCC 3.3.4] on linux2 Type "help", "copyright", "credits" or "license" for more information. ...
8
votes
1answer
84 views

Stepping over library calls with gdb/gdbserver

I have a general gdb/gdbserver question. I'm trying to debug an arm linux embedded application using gdb on the host and gdbserver on the remote target. I can step through lines of code at the ...
8
votes
1answer
672 views

An objcopy equivalent for Mac / iPhone?

I would like to rename symbols inside object files (.o) with something that would be the Mac equivalent of binutils' objcopy --redefine-syms tool. I found no arm-apple-darwin10-objcopy. I tried the ...
8
votes
3answers
1k views

Using Google's Go Language to Write a Library for an iPhone App

I'm considering using Go as a low-level, performant language alternative to C/Objective-C to implement a library for an iPhone App. Could either of the Go compilers generate a library that could be ...
8
votes
11answers
10k views

Best toolchain/IDE for ARM Cortex-M3 mcu?

There are quite a few IDE available for ARM, which one's good? What's your experience with anyone of them? Keil™ RealView® MDKARM IAR Systems Embedded Workbench® CodeSourcery G++ GNU Code Red ...
8
votes
4answers
2k views

iPhone detecting processor model / NEON support

I'm looking for a way to differentiate at runtime between devices equipped with the new ARM processor (such as iPhone 3GS and some iPods 3G) and devices equipped with the old ARM processors. I know I ...
7
votes
3answers
382 views

Is there a way to compile for ARM rather than Thumb in Xcode 4?

Apple is recommending to compiling for ARM rather than thumb if there are many floating point operations going on. My whole app is almost one big floating point operation. Here's what they say in ...
7
votes
2answers
459 views

Can the ARM version of Windows 8 only run Metro (WinRt) style apps?

See also: Is there any way to write a WinRt (Metro) app that will also work on Windows 7 and Vista? I am trying to understand how to target both Windows 8 on Arm and Windows 7, given that Windows 7 ...
7
votes
2answers
391 views

How do I make my .net, WPF, WinForms, etc applications work on an ARM powered Windows 8 System?

There are clearly lot of limitations to what will run on the new ARM based Windows 8 systems. However given the .net is meant to be CPU independent, I was hoping that most .net based desktop apps ...
7
votes
3answers
2k views

ARM Cortex-A8: Whats the difference between VFP and NEON

In ARM Cortex-A8 processor, I understand what NEON is, it is an SIMD co-processor. But is VFP(Vector Floating Point) unit, which is also a co-processor, works as a SIMD processor? If so which one is ...
7
votes
4answers
761 views

TCP/IP Protocol stack without an OS

I'm looking for a TCP/IP stack that can be used without an OS. Our customer has an "aversion" to interrupts and doesn't want a real OS on a embedded board we're building. It's desirable to move as ...
7
votes
2answers
696 views

The prefetch instruction

It appears the general logic for prefetch usage is that prefetch can be added, provided the code is busy in processing until the prefetch instruction completes its operation. But, it seems that if too ...
7
votes
2answers
2k views

Fast sine/cosine for ARMv7+NEON: looking for testers…

Could somebody with access to an iPhone 3GS or a Pandora please test the following assembly routine I just wrote? It is supposed to compute sines and cosines really really fast on the NEON vector ...
7
votes
8answers
3k views

How to start off with ARM processors?

Is it advisable to directly start off with the datasheet and user manual of an ARM processor for a newbie or first get an idea about the ARM world and then go ahead?
7
votes
2answers
950 views

I2C write acknowledge polling in Linux Kernel

The lackluster response here made me wonder this. I've been saddled with a device (Analog Devices 525x) that (from the data sheet, pg 16): disables the I2C interface during the internal ...
7
votes
7answers
2k views

What is the best Evaluation Kit for Learning Embedded C/C++ Development?

I am trying to improve my embedded C/C++ development on ARM architecture. I have recently moved from 68K development to ARM and wanted to use some of my spare time to dig into the platform and learn ...
7
votes
3answers
5k views

cross compiling c++ to iphone arm

I've scanned over the (outdated) article that is the first hit on google about ARM cross-compiling. I've also seen the article about compiling OpenCV to the iPhone and the general cross compiling ...
7
votes
7answers
5k views

Linux cross-compilation for ARM architecture

I am interested in cross-compile a Linux kernel for an ARM target on a x86 host. There are some good practices you recommend? Which is the best cross-compile suite in your opinion? Have you setted ...
6
votes
3answers
69 views

Do different ARM manufacturers provide different instruction sets?

I first came across the ARM instruction set in the 80's, and have not used it since. Out of curiosity I was looking at the the tablets and other ARM devices and note that the CPU's are produced by ...
6
votes
1answer
121 views

Are ARM instructuons SWI and SVC exactly same thing?

ARM assembly has SWI and SVC instructions for entering into 'supervisor mode'. What confuses me is, why there are two of them? Here it is said that SVC was formerly SWI. Does it mean that basically ...
6
votes
4answers
393 views

Optimizing RGBA8888 to RGB565 conversion with NEON

I'm trying to optimize an image format conversion on iOS using the NEON vector instruction set. I assumed this would map well to that because it processes a bunch of similar data. My attempts haven't ...

1 2 3 4 5 20