Tagged Questions
The inline-assembly tag has no wiki summary.
18
votes
6answers
1k views
C/C++ function definitions without assembly
I always thought that functions like printf() are in the last step defined using inline assembly. That deep into stdio.h is burried some asm code that actually tells CPU what to do. Something like in ...
17
votes
3answers
9k 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?
14
votes
4answers
4k 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 now? I have a need ...
13
votes
3answers
444 views
Inline assembly that clobbers the red zone
I'm writing a cryptography program, and the core (a wide multiply routine) is written in x86-64 assembly, both for speed and because it extensively uses instructions like adc that are not easily ...
9
votes
3answers
357 views
Correct way to wrap CMPXCHG8B in GCC inline assembly, 32 bits
I'm trying to write GCC inline asm for CMPXCHG8B for ia32. No, I cannot use __sync_bool_compare_and_swap. It has to work with and without -fPIC.
So far the best I've (EDIT: does not work after all, ...
9
votes
2answers
2k views
Syscall from inline asm in x86_64 Linux?
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(int argc, char **argv)
{
...
8
votes
1answer
160 views
Asking for help to fix inline assembly issue in D program
Hello I'm trying to use ASM in a little D program :
asm
{
mov AX,12h ;
int 10h ;
}
I've got this message : "end of instruction" from the two lines in the asm statement
I cannot fix ...
8
votes
2answers
2k views
Labels in GCC inline assembly
In my ongoing experimentation with GCC inline assembly, I've run into a new problem regarding labels and inlined code.
Consider the following simple jump:
__asm__
(
"jmp out;"
"out:;"
:
...
8
votes
6answers
2k views
Reading a register value into a C variable
I remember seeing a way to use extended gcc inline assembly to read a register value and store it into a C variable. I cannot though for the life of me remember how to form the asm statement. Any help ...
7
votes
3answers
637 views
How do I pass arguments to C++ functions when I call them from inline assembly
So, I would like to be able to call functions from a c++ dll.
For certain reasons, I would like to call them from an __asm block in my C++ code.
My question is this: I know that before I call the ...
7
votes
3answers
2k views
How do you populate an x86 XMM register with 4 identical floats from another XMM register entry?
I'm trying to implement some inline assembler (in C/C++ code) to take advantage of SSE. I'd like to copy and duplicate values (from an XMM register, or from memory) to another XMM register. For ...
7
votes
7answers
1k 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 and simple? But ...
6
votes
2answers
94 views
How to use a global variable in gcc inline assembly
I am trying to use inline assembly like this, for a global variable, but the compiler gives an error by saying undefined reference to saved_sp.
__asm__ __volatile__ (
"movq saved_sp, ...
6
votes
2answers
137 views
Adding two numbers (x86 assembler newbie)
I am trying to familiarise myself with x86 assembly using GCC's inline assembler. I have a strong background in ARM/RISC assembler, but both the x86 instruction set and the GCC syntax are completely ...
6
votes
3answers
86 views
Accessing a register without using inline assembly with gcc
I want to read the stack pointer register value without writing inline assembly.The reason I want to do this is because I want to assign the stack pointer register value to an element of an array and ...
6
votes
1answer
345 views
Inline assembly in Haskell
Can I somehow use inline assembly in Haskell (similar to what GCC does for C)?
I want to compare my Haskell code to the reference implementation (ASM) and this seems the most straightforward way. I ...
6
votes
3answers
178 views
GCC inline assembly error: Cannot take the address of 'this', which is an rvalue expression
I'm still fighting with GCC - compiling the following inline assembly code (with -fasm-blocks, which enables Intel style assembly syntax) nets me a strange error Cannot take the address of 'this', ...
6
votes
1answer
866 views
Defining Bytes in GCC Inline Assembly in Dev-C++(.ascii in AT&T syntax on Windows)
The code below is just showing a Message Box on the screen.
The addresses are hardcoded to facilitate:
int main ()
{
asm("xorl %eax, %eax \n"
"xorl %ebx, %ebx \n"
...
6
votes
1answer
545 views
What is the difference between '__asm' and '__asm__'?
I am learning inline assembly in C. As far as I can tell, the only difference between __asm { ... }; and __asm__("..."); is that the first uses mov eax, var and the second uses movl %0, %%eax with ...
6
votes
4answers
558 views
Inline assembler call for subroutine
I have question about inline assembler. It's possible to call another assembler subroutine from inline assembler within the same function? For example:
void FindValidPID(unsigned int &Pid)
{
...
6
votes
2answers
2k views
a Simple “Hello World” Inline Assembly language Program in C/C++
i use devcpp and borland c compiler....
asm {
mov ax,4 // (I/O Func.)
mov bx,1 // (Output func)
mov cx,&name // (address of the string)
mov dx,6 // (lenght ...
6
votes
7answers
560 views
What is the difference between these two forms of inline assembler in C?
Background: I've been tasked with writing a data collection program for a Unitech HT630, which runs a proprietary DOS operating system that can run executables compiled for 16-bit MS DOS, albeit with ...
6
votes
2answers
3k 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 syntax are available in a ...
5
votes
2answers
130 views
Converting help: __asm__ __volatile__
I would like to port C's outb function to D.
static __inline void outb (unsigned char value, unsigned short int port)
{
__asm__ __volatile__ ("outb %b0,%w1"
:
...
5
votes
6answers
2k views
x86 Assembly: INC and DEC instruction and overflow flag
In x86 assembly, the overflow flag is set when an add or sub operation on a signed integer overflows, and the carry flag is set when an operation on an unsigned integer overflows.
However, when it ...
5
votes
4answers
379 views
Creating a Hello World library function in assembly and calling it from C#
Let's say we use NASM as they do in this answer: how to write hellow world in assembly under windows.
I got a couple of thoughts and questions regarding assembly combined with c# or any other .net ...
5
votes
3answers
321 views
How to determine values saved on the stack?
I'm doing some experimenting and would like to be able to see what is saved on the stack during a system call (the saved state of the user land process). According to ...
5
votes
1answer
1k 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 called.
The code is ...
4
votes
2answers
120 views
Accessing class members from inline assembly in Visual C++
Here is my code:
void Graph::PutPixel(DWORD x, DWORD y, DWORD c)
{
__asm
{
Mov Eax, y
Mov Ebx, _width
Mul Ebx
Add Eax, x
Shl Eax, 2 // Multiply by ...
4
votes
1answer
74 views
Need information about using Inline Assembly for WinCE, ARM9
I am not very good in inline assembly, but planning to use it for optimization purpose in an Embedded project. As I don't know much of the information about it, I am in need of some help.
I am having ...
4
votes
4answers
270 views
Why won't simple inline assembly function work correctly in GCC?
I have a simple inline assembly function, which works fine in MSVC, but for some reason refuses to work under Apple GCC 4.2.1 (i386 arch, forced 32-bit mode). Fortunately, much more complex assembly ...
4
votes
5answers
216 views
Delphi read overflow flag
If I do this
var
a,b,c:cardinal;
begin
a:=$80000000;
b:=$80000000;
c:=a+b;
end;
c will equal 0, since the addition overflowed. What's the best way to catch this overflowed boolean? ...
4
votes
1answer
144 views
Leading zeros calculation with intrinsic function
I'm trying to optimize some code working in an embedded system (FLAC decoding, Windows CE, ARM 926 MCU).
The default implementation uses a macro and a lookup table:
/* counts the # of zero MSBs in a ...
4
votes
1answer
590 views
GCC inline assembly: constraints
I'm having difficulty understanding the role constraints play in GCC inline assembly (x86). I've read the manual, which explains exactly what each constraint does. The problem is that even though I ...
4
votes
2answers
581 views
GCC Inline Assembly Multiplication
I'm trying to learn GCC inline assembly on Linux (x86), and my first experiment was to try and implement integer overflow detection for multiplication. It seems easy enough, but it is having side ...
4
votes
5answers
350 views
Win32 Low Level Assembly
do you know where I can find Windows Low Level Assembly examples programs?
I have some exemples using macros (NASM, MASM) but I want pure assembly, in order I can build a shellcode later.
Thanks a ...
4
votes
3answers
448 views
MessageBoxA in Windows AT&T Assembly
I'm trying to call MessageBoxA() directly in assembly, using gcc inline. However I need to do this in 2 ways: first is using dynamic addressing, with LoadLibrary() and GetProcAddress() - I found a ...
4
votes
2answers
247 views
Call a function twice with Assembly and C++
I have a code that changes the function that would be called, to my new function, but I don't want to call only my new function, I also want to call the old one.
This is an example, so you can ...
4
votes
2answers
354 views
Calling assembly in GCC?
#include <stdlib.h>
static inline uint
xchg(volatile unsigned int *addr, unsigned int newval)
{
uint result;
asm volatile("lock; xchgl %0, %1" : "+m" (*addr), "=a" (result) : "1" (newval) ...
4
votes
3answers
409 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 responsibility to save the ...
3
votes
1answer
82 views
C++ ASM Inline how to use boolean?
Say I got something like this..
bool isPatched;
I have a few other GUI's where I set isPatched= true; and isPatched= false;, isPatched = !isPatched;
void __declspec( naked ) test(void) { //
...
3
votes
1answer
107 views
Optimizing used registers when using inline ARM assembly in GCC
I want to write some inline ARM assembly in my C code. For this code, I need to use a register or two more than just the ones declared as inputs and outputs to the function. I know how to use the ...
3
votes
3answers
169 views
How do I specify immediate floating point numbers with inline assembly?
When I try to compile this code:
#include <stdio.h>
main(int argc, char *argv[]) {
double y = 0;
__asm__ ("fldl $150;"
"fsqrt;"
"fstl %0;" : : "g" (y) );
...
3
votes
1answer
230 views
volatile vs. compiler barrier with gcc inline assembly
In our product we have an inlined mutex implementation, using a variety of platform and compiler specific methods for the hardware specific parts. One of our "rules" for some over-optimized code that ...
3
votes
1answer
167 views
Pointer to inline __asm block in c++
So I've been screwing around with the __asm block in VS2010 and I haven't been able to find a better way to get the pointer to the start of the assembly block.
The only way I know how to do this, is ...
3
votes
2answers
475 views
GCC Intel Syntax Inline Assembly
Why doesn't this code set temp to 1? How do I actually do that?
int temp;
__asm__(
".intel_syntax;"
"mov %0, eax;"
"mov eax, %1;"
".att_syntax;"
: : "r"(1), "r"(temp) : "eax");
...
3
votes
2answers
254 views
C++ inline assembly: how to deal with references?
How to deal with references in function from inline assembler? I'm trying this
void foo(int& x)
{
__asm mov x, 10
}
int main()
{
int x = 0;
foo(x);
std::cout << x << ...
3
votes
2answers
249 views
the stack and vtable [re]location
NOTE: To understand my question, you might need to know about my project and the problem. If not, skip right to the "QUESTION" section at the bottom.
PROJECT
I'm working on a writing a C++ class ...
3
votes
1answer
209 views
How to use __func__ with inline assembly
I'm trying to add meta-data to an ELF executable by storing strings in a special section (__dlog). The current approach uses (abuses?) inline assembly to store the strings and nearly works as desired.
...
3
votes
1answer
402 views
Implementation of AES in assembly [closed]
Hello Everyone
I am trying to build a code to do demonstrate doing AES encryption in assembly. the latest Intel manual has
AESENC xmm1,xmm2/m128 —Perform One Round of an AES Encryption Flow round ...