Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ] + ...
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 ...
5
votes
2answers
216 views

Integer division on ARM

Kind of a silly question, but how does one do integer division (signed or unsigned, either way) on ARM? I'm working on Cortex-A8 and Cortex-A9 in particular. I know that some architectures don't come ...
5
votes
2answers
193 views

Cannot write to ARM register R4: feature or bug?

I've recently encountered a strange behaviour of ARM Cortex-A8 when programming it in Assembly. Whenever I MOV anything into R4, my program crashes (stack dump below) 10-14 09:48:43.117: ...
4
votes
2answers
243 views

ARM Cortex A8 Benchmarks: can someone help me make sense of these numbers?

I'm working on writing several real-time DSP algorithms on Android, so I decided to program the ARM directly in Assembly to optimize everything as much as possible and make the math maximally ...
4
votes
2answers
438 views

ARM Cortex-A8: How many bytes are fetched in one memory read?

I'm trying to improve my image processing project running on an ARM cortex-a8 processor. I was accessing 8-bit Grayscale Image data from memory. In my function, right now I'm accessing individual ...
3
votes
3answers
148 views

Calling C functions from ARM Assembly

I'm writing code targeting ARM Cortex-A on Android devices (using GNU assembler and compiler), and I'm trying to interface between Assembly and C. In particular, I'm interested in calling functions ...
3
votes
2answers
107 views

Low level cycle counter in iOS devices

Now that it's clear that the Cortex-A8 performance counters aren't available on the iPhone/iPad (they need to be explicitly enabled for usermode, which Apple hasn't done), is there some other way of ...
3
votes
2answers
302 views

cortex a9 boot and memory

i am a newbie starting out in microcontoller programming. the chip of interest here is cortex a9. at reset or power up there has to be code at 0x0000000 from my readings. my questions though they may ...
3
votes
3answers
578 views

ARM Thumb mode: Code Size not decreasing

Guys, I have a project which I have compiled for the ARM Cortex-A8 processor. I'm making use of GCC to do this. Currently the size of my executable is 220.1 KB. Now I modify my makefile and I add the ...
3
votes
1answer
368 views

How to use NEON comparison (greater than or equal to) instruction?

How to use the NEON comparison instructions in general? Here is a case, I want to use, Greater-than-or-equal-to instruction? Currently I have a, int x; ... ... ... if(x >= 0) { .... } In ...
2
votes
1answer
90 views

How to get call graph profiling working with gcc compiled code and ARM Cortex A8 target?

I am biting my teeth out on this one... I need to do profiling on an ARM board and need to view call graphs. I tried with OProfile, Kernel perf and Google performance tools. All work fine but do not ...
2
votes
3answers
909 views

Neon Optimization using intrinsics

Learning about ARM NEON intrinsics, I was timing a function that I wrote to double the elements in an array.The version that used the intrinsics takes more time than a plain C version of the function. ...
2
votes
1answer
196 views

no effect of PLD in cortex A9

I am using the following program to check the effect of PLD on performance. However, I couldn't find the difference in performance with and without PLD the C code I've written. Is there anything I am ...
2
votes
1answer
256 views

ARM lockdown register write operation crashes the device

I'm doing some experiments with a ARM Cortex A-8 device running Linux kernel. I can access and read the value of the L2 cache lockdown register without any problems: asm volatile ("mrc p15, 1, %0, ...
2
votes
1answer
1k views

ARM Cortex-A8: How to make use of both NEON and vfpv3

I'm using Cortex-A8 processor and I'm not understanding how to use the -mfpu flag. On the Cortex-A8 there are both vfpv3 and neon co-processors. Previously I was not knowing how to use neon so I was ...
2
votes
2answers
198 views

Clarify: Processor operates at 800 Mhz and 200Mhz DDR RAM

I have an evaluation kit which has an implementation of ARM Cortex-A8 core. The processsor data sheet states that it has a ARM Cortex A8™ core, which operates at speeds as high as 800MHz and Up to ...
2
votes
1answer
393 views

ARM Cortex-A8: How to measure cache utilization?

I have a Freescale's i.MX515EVK, an ARM Cortex-A8/Ubuntu platform with me, unfortunately the Linux kernel on the board is not supporting some of the well known profilers such as Oprofiler or Zoom ...
2
votes
1answer
455 views

Inline Assembly: Passing pointers to a function and using it in that function in assembly

I'm using ARM/Cortex-A8 processor platform. I have a simple function where I have to pass two pointers to a function. These pointers are later used in that function which has only my inline assembly ...
2
votes
3answers
3k views

How to measure program execution time in ARM Cortex-A8 processor?

I'm using an ARM Cortex-A8 based processor called as i.MX515. There is linux Ubuntu 9.10 distribution. I'm running a very big application written in C and I'm making use of gettimeofday(); functions ...
1
vote
1answer
544 views

Android JNI makefiles: where to set CFLAGS?

I'm stuck figuring out how exactly to tell Android to use VFP on Cortex-A8 for floating-point operations in my native C code. I know the compiler flags I need to set. The question is where do I do it? ...
1
vote
2answers
403 views

usage of PLD in arm cortex a9

I am trying to use PLD instruction. The problem I am facing is as follows: int32_t addr[10]; asm ("PLD [addr,#5]"); I am getting following error: Error: ARM register expected -- `pld [addr,#5]'
1
vote
4answers
993 views

Load 8bit uint8_t as uint32_t?

my image processing project works with grayscale images. I have ARM Cortex-A8 processor platform. I want to make use of the NEON. I have a grayscale image( consider the example below) and in my ...
1
vote
1answer
206 views

How to measure power consumed by my algorithm?

I have an image processing algorithm running on an ARM-Cortex-A8/Ubuntu 9.01 platform and I have to measure the power consumed by my algorithm, does anyone know how to do this? Any tools available for ...
0
votes
0answers
61 views

Strange compilation of inline assembly in LLVM GCC 4.2

I'm trying to optimize the following C macro: rotate(v0, v1) a0 = v0, b0 = v1, v0 = a0*c - b0*s, v1 = a0*s + b0*c where all variables are doubles for the Cortex-A8 processor. The inline assembly ...
0
votes
1answer
53 views

Enable NEON on Cortex A8 with fpu set to either SoftVFP or none

I am trying to build an executable for Cortex A8 using RVDS 4.0. My code uses NEON but I want to set fpu option to either none or SoftVFP. The ARM website mentions that NEON is disabled when fpu is ...
0
votes
1answer
116 views

Some doubts in optimizing the neon code

I wrote some neon code in assembly and was aiming for maximum optimization. Though the numbers seem satisfactory, I was interested in understanding the possibilities of optimizing it further. Then I ...
0
votes
1answer
26 views

Making the VROM load an image and jump to an address on Nexus One?

I want to try experimenting with running low level code my Nexus One phone, but I can't find a suitable manual describing how. As far as I know, the VROM does some initial bootstrapping before ...