Tagged Questions
4
votes
3answers
758 views
Align native code on fixed size memory boundaries with GCC/G++/AS?
I have a C function that contains all the code that will implement the bytecodes of a bytecode interpreter.
I'm wondering if there is a way to align segments of the compiled code in memory on fixed ...
2
votes
1answer
137 views
g++ 4.2 inline assembly of SSE instructions wraps up user assembly code with aligned XMM register copy
I have a function using inline assembly:
vec8w x86_sse_ldvwu(const vec8w* m) {
vec8w rd;
asm("movdqu %[m],%[rd]" : [rd] "=x" (rd) : [m] "xm" (*m));
return rd;
}
It gets ...