5,557,686 members and growing! (14,746 online)
Email Password   helpLost your password?
Languages » C / C++ Language » General     Intermediate License: The Code Project Open License (CPOL)

Using Assembly routines in Visual C++

By Nadeem Afana

An article on mixed-language programming.
ASM, VC7.1, C++, WindowsVS.NET2003, Visual Studio, Dev

Posted: 18 Jul 2005
Updated: 19 Jul 2005
Views: 22,434
Bookmarked: 15 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
26 votes for this Article.
Popularity: 4.31 Rating: 3.05 out of 5
7 votes, 26.9%
1
3 votes, 11.5%
2
0 votes, 0.0%
3
10 votes, 38.5%
4
6 votes, 23.1%
5

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 Convention Name in .OBJ file void 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).

;============================================

; 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)

About the Author

Nadeem Afana


Nadeem is studying computer engineering. He loves all kinds of programming: Both low-level and high-level.
He started programming at age 14, he started with Visual Basic and then C/C++, MFC, ATL, x86 Assembly and now he is moving to XML and .NET (C++/CLI, C# and ASP.NET)

Although he has never worked for a company or other, he enjoys programming on his own and likes contributing to others.
Occupation: Engineer
Location: Chile Chile

Other popular C / C++ Language articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
Subject  Author Date 
GeneralQuestion about LEA and MOVmemberscorp00719:00 20 Apr '08  
GeneralRe: Question about LEA and MOVmemberNadeem Afanah20:37 20 Apr '08  
GeneralRe: Question about LEA and MOVmemberscorp00720:46 20 Apr '08  
Generalfastcall question.memberscorp00715:06 1 Nov '07  
GeneralRe: fastcall question.memberNadeem Afanah17:52 1 Nov '07  
GeneralRe: fastcall question.memberscorp00721:32 1 Nov '07  
GeneralRe: fastcall question.memberNadeem Afanah5:26 2 Nov '07  
GeneralReturn valuesmemberscorp00715:02 1 Nov '07  
GeneralRe: Return valuesmemberNadeem Afanah15:12 1 Nov '07  
GeneralRe: Return valuesmemberscorp00715:34 1 Nov '07  
GeneralRe: Return valuesmemberNadeem Afanah18:02 1 Nov '07  
GeneralRe: Return valuesmemberscorp00721:34 1 Nov '07  
GeneralRe: Return valuesmemberNadeem Afanah5:27 2 Nov '07  
GeneralRe: Return valuesmemberscorp00714:48 2 Nov '07  
QuestionUsing Inline assembly in Visual studio 2005member@run21:23 10 Sep '07  
AnswerRe: Using Inline assembly in Visual studio 2005memberNadeem Afanah18:25 11 Sep '07  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 19 Jul 2005
Editor: Smitha Vijayan
Copyright 2005 by Nadeem Afana
Everything else Copyright © CodeProject, 1999-2008
Web16 | Advertise on the Code Project