Tagged Questions
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 ...
6
votes
4answers
403 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 ...
6
votes
1answer
375 views
Why does arm-gcc decrement/increment the stack pointer even when the stack is never accessed?
When compiling this program with arm-elf-gcc-4.5 -O3 -march=armv7-a -mthumb -mfpu=neon -mfloat-abi=softfp:
#include <arm_neon.h>
extern float32x4_t cross(const float32x4_t& v1, const ...
5
votes
2answers
180 views
Problems with Qualcomm Scorpion dual-core ARM NEON code?
I am developing a native library for Android where I use ARM assembly optimizations and multithreading in order to get maximum performance on the dual-core ARM chipset MSM8660. While doing some ...
5
votes
1answer
372 views
Mixing NEON assembly with non-vector functions
I think I found the answer to my question. There is an "fmacs" instruction for VFP which may do the trick which does scalar computation on NEON/VFP registers.
I'm very new to NEON or ARM ...
5
votes
3answers
502 views
ARM GCC bug? Uses chains of vldr instead of one vldmia…
Consider the following NEON-optimized function:
void mat44_multiply_neon(float32x4x4_t& result, const float32x4x4_t& a, const float32x4x4_t& b) {
// Make sure "a" is mapped to ...
4
votes
2answers
208 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
472 views
ARM NEON: What's the difference between vld4_f32 and vld4q_f32?
I'm not in a position to make out the difference between vld4_f32 and vld4q_f32 in ARM NEON instructions.
The confusion started when I raised my coding levels and started looking at the assembly ...
3
votes
2answers
102 views
ARM NEON: Which pairs of instructions have to wait for write back?
In the ARM NEON documentation, it says:
[...] some pairs of instructions might have to wait until the value is written back to the register file.
I haven't come across a list that defines the ...
3
votes
3answers
282 views
Sum all elements in a quadword vector in ARM assembly with NEON
Im rather new to assembly and although the arm information center is often helpful sometimes the instructions can be a little confusing to a newbie. Basically what I need to do is sum 4 float values ...
3
votes
4answers
456 views
NEON ASM code running much slower than C code?
I'm trying to implement Gauss-Newton optimization for a specific problem on iPhone ARM using NEON. The first function below is my original C function. The second is the NEON asm code I wrote. I ran ...
3
votes
3answers
548 views
128bit hash comparison with SSE
In my current project, I have to compare 128bit values (actually md5 hashes) and I thought it would be possible to accelerate the comparison by using SSE instructions. My problem is that I can't ...
2
votes
1answer
269 views
Higher level math functions in ARM assembly with NEON
Hi im kind of new to assembly and im starting to get familiar with ARM assembly combined with the NEON coprocessor in some of the new ARM chips. One of the things I am not sure how to do is high level ...
2
votes
5answers
2k views
1
vote
3answers
138 views
“Immediate out of range errors” when assigning 0.0 to a NEON register
If I understand it correctly, because ARM instructions are 32 bits long they can only hold so many bits of immediate value. What I'm trying to do is vmov.f32 s0, #0.0, and I get "immediate out of ...
1
vote
3answers
198 views
ARM NEON assembler error instruction cannot be conditionally
According to the arm info center vadd can be executed condtitionally however when i try
vaddeq.f32 d0,d0,d1
Xcode returns
65:instruction cannot be conditional -- vaddeq.f32 d0,d0,d1
one thing ...
1
vote
1answer
263 views
NEON: How to convert an 128 bit ARGB to 32 bit ARGB with saturation?
I have an ARGB pixel stored in an 128 bit NEON register as 32bit per channel. I need to store this into memory as an 8bit channel ARGB (narrowing and saturating).
I got my result after a vmla.32 q1, ...
0
votes
0answers
35 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
94 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
3answers
129 views
Rgb to grayscale conversion with arm neon
I´m trying to convert from rgb to grayscale efficiently, so I got a function from here where it explains how to convert from rgba to grayscale. Now I´m trying to do the same but with just rgb. I ...
0
votes
3answers
540 views
NEON Assembly manual / tutorial with GNU assembler
Are there any resources that would cover syntax of using NEON Assembly with GNU assembler? I've read that syntax differs from the one using RVCT assembler, but that's the only thing I can find ...