Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / ASM
Article

Using Assembly routines in Visual C++

Rate me:
Please Sign up or sign in to vote.
3.04/5 (29 votes)
19 Jul 2005CPOL2 min read 101.2K   970   37   16
An article on mixed-language programming.

Introduction

Mixed-language programming allows you to combine the unique strengths of Visual C++ with your assembly-language routines. There are some cases where you want to achieve things using inline assembly, such as improving speed, reducing memory needs and getting more efficiency. However, inline assembler is not as powerful as MASM, it does not support macros or directives. This article explains how to write assembly routines that can be called from Visual C++ modules. But before proceeding, there are two terms you have to be familiar with:

Naming Convention

It specifies how the compiler alters the symbol name as it places the name in a .OBJ file. For example, a C function “void func(void)” is put as “_func@0” in the .OBJ file, whereas in C++, it is decorated to “?func@@YAXXZ” in the .OBJ file.

Calling Convention

It determines how a language implements a call to a procedure and how the procedure returns to the caller. In the C Calling Convention (__cdecl), arguments are pushed onto the stack from right to left, the called procedure returns without removing the arguments from the stack. It is the caller’s responsibility to clean the stack after the call.

In Standard Calling Convention (__stdcall), arguments are pushed onto the stack from right to left, the called procedure cleans the stack if it does not accept a variable number of arguments. In Fast Calling Convention (__fastcall), the first two parameters are loaded into ecx, edx registers, respectively. The other parameters are pushed onto the stack from right to left. The same function is responsible for cleaning the stack.

Here is a summary table for some calling and naming conventions with an example:

Language, Calling ConventionName in .OBJ filevoid func (void)
C, cdecl_name_func
C, __stdcall_name@nn_func@0
C, __fastcall@name@nn@func@0
C++, cdecl?name@@decoration?func@@YAXXZ
C++, __stdcall?name@@decoration?func@@YGXXZ
C++, __fastcall?name@@decoration?func@@YIXXZ

How to use MASM routines in Visual C++ modules:

The following assembly function (Addup) accepts three DWORD (32-bit) values as parameters, and then returns the sum of them. Whenever you write a routine make sure you don't choose it as entry point (i.e. END Addup).

ASM
;============================================
; Addup.asm file
;============================================
.486
.model flat, stdcall
option casemap :none

.code

;--------------------------------------------
Addup PROC, Arg1:DWORD, Arg2:DWORD, Arg3:DWORD

mov eax, Arg1
add eax, Arg2
add eax, Arg3

ret

Addup ENDP
;----------------------------------------------
END
;----------------------------------------------

; To compile this file use:
; ml.exe Addup.asm /c /coff
  1. Now copy the resultant .obj file (Addup.obj) into your VC++ application’s project folder.
  2. Add to the C++ source file (.cpp) that will use this routine, the following prototype:
    extern "C" int __stdcall Addup (int, int, int);

    Or you can put this prototype into a new header file and then add it to your project. The extern “C” indicates C naming convention since you are in a C++ environment. MASM uses C naming convention when you specify STDCALL. Finally, the __stdcall indicates that the routine uses standard calling convention.

  3. Now add the .OBJ file name (Addup.obj) into your linker commands window. Or you can add the file manually to your project. Otherwise, you will get an “unresolved external” error.
  4. Now you should compile the project fine without any errors.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer
Chile Chile
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralQuestion about LEA and MOV Pin
scorp00720-Apr-08 18:00
scorp00720-Apr-08 18:00 
GeneralRe: Question about LEA and MOV Pin
Nadeem Afana20-Apr-08 19:37
Nadeem Afana20-Apr-08 19:37 
GeneralRe: Question about LEA and MOV Pin
scorp00720-Apr-08 19:46
scorp00720-Apr-08 19:46 
Generalfastcall question. Pin
scorp0071-Nov-07 14:06
scorp0071-Nov-07 14:06 
GeneralRe: fastcall question. Pin
Nadeem Afana1-Nov-07 16:52
Nadeem Afana1-Nov-07 16:52 
Actually, the fastcall covention has not been standardized and it has been implemented differently depending on the compiler.

For Microsoft Visual C++ (though not sure if for all versions is the same)
The first two DWORD or smaller arguments are passed in ECX and EDX registers; all other arguments are passed from right to left.

In this case, there is only one argument a, but its size is greater than one DWORD; it has 4 DWORD values. So it is pushed on the stack from right to left (c to a). It behaves like an STDCALL!
GeneralRe: fastcall question. Pin
scorp0071-Nov-07 20:32
scorp0071-Nov-07 20:32 
GeneralRe: fastcall question. Pin
Nadeem Afana2-Nov-07 4:26
Nadeem Afana2-Nov-07 4:26 
GeneralReturn values Pin
scorp0071-Nov-07 14:02
scorp0071-Nov-07 14:02 
GeneralRe: Return values Pin
Nadeem Afana1-Nov-07 14:12
Nadeem Afana1-Nov-07 14:12 
GeneralRe: Return values Pin
scorp0071-Nov-07 14:34
scorp0071-Nov-07 14:34 
GeneralRe: Return values Pin
Nadeem Afana1-Nov-07 17:02
Nadeem Afana1-Nov-07 17:02 
GeneralRe: Return values Pin
scorp0071-Nov-07 20:34
scorp0071-Nov-07 20:34 
GeneralRe: Return values Pin
Nadeem Afana2-Nov-07 4:27
Nadeem Afana2-Nov-07 4:27 
GeneralRe: Return values Pin
scorp0072-Nov-07 13:48
scorp0072-Nov-07 13:48 
QuestionUsing Inline assembly in Visual studio 2005 Pin
@run 10-Sep-07 20:23
@run 10-Sep-07 20:23 
AnswerRe: Using Inline assembly in Visual studio 2005 Pin
Nadeem Afana11-Sep-07 17:25
Nadeem Afana11-Sep-07 17:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.