9
votes
3answers
2k views
How do I do inline assembly on the IPhone?
How is it done? What steps do I need to take and what pitfalls and gotchas are there to consider?
9
votes
4answers
1k views
Is there a way to insert assembly code into C?
I remember back in the day with the old borland DOS compiler you could do something like this:
asm {
mov ax,ex
etc etc...
}
Is there a semi-platform independent way to do this …
6
votes
7answers
496 views
What’s an example of a simple C function which is faster implemented in inline assembly?
I'm having a hard time beating my compiler using inline assembly.
What's a good, non-contrived examples of a function which the compiler has a hard time making really, really fast …
6
votes
2answers
998 views
How to use address constants in GCC x86 inline assembly
The GCC toolchain uses AT&T assembler syntax by default, but support for Intel syntax is available via the .intel_syntax directive.
Additionally, both AT&T and Intel synta …
3
votes
1answer
150 views
Translate inline assembly to support x64
I have a small inline assembly code written in my C code.
The asm goes through an array and if needed, move values from a different array to a register.
In the end, an interrupt is …
3
votes
2answers
389 views
Syscall from inline asm in x86_64 Linux?
Hi,
Why does this print garbage instead of exiting my program gracefully? I use system calls this way on BSD, and I wonder what would I need to make it work in Linux.
int
main(in …
3
votes
3answers
298 views
GCC’s extended version of asm
I never thought I'd be posting an assembly question. :-)
In GCC, there is an extended version of the asm function. This function can take four parameters: assembly-code, output-l …
2
votes
1answer
49 views
What is causing this segmentation fault while using SSE instructions?
This problem is driving me a bit crazy. The code seems to be segmentation faulting for no good reason:
#define MULT_FLOAT4(X, Y) ({ \
asm volatile ( \
"movups (%0), %% …
2
votes
3answers
95 views
Inline Assembler: What scratch registers can be used?
When inserting inline assembler into a function in a C-like language, what is the convention about what registers you're allowed to use for scratch? Is it the compiler's responsib …
2
votes
2answers
185 views
Switching callstack for C++ functions
Hi,
Here's my previous question about switching C callstacks. However, C++ uses a different calling convention (thiscall) and may require some different asm code. Can someone expl …
2
votes
2answers
246 views
Explanation of Asm code
Hi,
The following GCC inline asm is taken from LuaJit's coco library. Can someone provide a line by line explanation of what it does?
static inline void coco_switch(coco_ctx from …
2
votes
1answer
124 views
Inline assembly error, thwarting gcc compilation attempts.
Greetings, SO.
I have some code which I've made attempts at compiling using gcc, but my attempts have been thwarted. Could anyone more versed assist me with the subject, perhaps …
1
vote
1answer
42 views
How to write inline assembly in gnu pascal?
Since there is not offical reference,I got only one tutorial
gpcasm.zip .But when I try to follow the tut and try the inline assembly example on my debian.The gpc was not happy w …
1
vote
7answers
237 views
GCC: Inline assembly - good for?
So I just found out GCC could do inline assembly and I was wondering two things:
What's the benefit of being able to inline assembly?
Is it possible to use GCC as an assembly com …
1
vote
2answers
121 views
Includes in inline assembly
We are working on a toy operating system as a assignment for a class.
I'm having some trouble with writing of the kernel panic function.
It should save all registers, call some pr …
