Introduction
The technique of building a standalone .NET executable when there is a mix of managed and unmanaged code has been first explained by Steve Teixeira
in http://blogs.msdn.com/b/texblog/archive/2007/04/05/linking-native-c-into-c-applications.aspx,
which you are strongly recommended to read if this is new for you.
Our article uses that technique, but we will be building a 64-bit only program. The reason is that we are going to statically link compiled 64-bit
Assembly Language (or ASM) which is CPU dependent. You will have to take that into account when configuring the platform target on your .NET projects.
Using the code
1. Assembly language
I developed two ASM routines that will be called from .NET. One performs a small Math calculation using SSE2 instructions. The other is a very fast encryption/decryption
routine using the XXTEA algorithm (http://en.wikipedia.org/wiki/XXTEA).
The XXTEA alghorithm is a very strong encryption algorithm, but not to be used when the security
of a nation depends on it because a small number of people appear to know how to attack it. Anyway, we are not going to discuss cryptography here.
The routine that performs the Math calculation sin(val1^2 / val2) is shown below, just like this:
AsmMathCalc proc FRAME val1:MMWORD, val2:SQWORD
mulsd xmm0, xmm0 cvtsi2sd xmm1, rdx
divsd xmm0,xmm1
call sin
ret AsmMathCalc endp
The routine that performs the encryption/decryption is not shown here due to its length, you need to download it to see it. It opens the file
to be encrypted (or decrypted) and creates a file for the encrypted (decrypted) output. Then reads and encrypts (or decrypts) in chunks and writes
to the new file. Encrypted files are saved with the extension ".enc" added to the full file name, decrypted files add the extension ".dec".
Note that XXTEA works with 32-bit words; if the file length in bytes is not divisible by 4, we have to send more "4-filesize modulo 4" bytes to make up for the difference.
2. C++/CLR code to interop with the ASM
My approach was to create a Class Library C++ project. Then I placed the parts dealing with the managed code and unmanaged code in separate source code files.
Managed code:
#pragma once
#include "native.h"
using namespace System;
namespace CInterop {
ref class ASMCallingClass
{
public :
static double ASMMathCalc(double val1, LONGLONG val2)
{
return runAsmCalc(val1, val2);
}
static int ASMXXTea(LPWSTR fileName, LPDWORD Key, BOOL encode)
{
return runAsmXXTea(fileName, Key, encode);
}
};
}
Unmanaged code:
#include "Stdafx.h"
extern "C"
{
double AsmMathCalc (double val1, LONGLONG val2);
int AsmXXTEAEncDec(LPWSTR val1, LPDWORD val2, BOOL val3);
}
double runAsmCalc(double val1, LONGLONG val2)
{
return AsmMathCalc(val1, val2);
}
int runAsmXXTea(LPWSTR fileName, LPDWORD Key, BOOL encode)
{
return AsmXXTEAEncDec(fileName, Key, encode);
}
Just for testing purposes, you can add the ASM compiled object file to Properties\Linker\INput\Additional Dependencies, but this will not be used in the final building
process because we will build all from the command line.
3. C# Windows Forms application
In this project, add a "using
" clause for the C++/CLR namespace. If you have built the C++/CLR class library, you can test now if all is working.
If it does not, make the class ASMCallingClass
public in the interop project and rebuild the library.
Building
You have three projects in total: the ASM project, the C++/CLR interop project, and the C# project.
To be able to build a single executable, you need to compile in dependency order. Native code first, second the interop code, and finally the 100% managed code.
Open a console window with the environment set for Visual Studio x64 compilations (in the Start menu, you may find Visual Studio x64 Win 64 Command Prompt, which is what we need).
- Compile the ASM with with the JWasm compiler:
<path>\jwasm -c -win64 -Zp8 asmrotines.asm
Note: There are a number of programs able to compile source code Assembly Language, they are called Assemblers. The most popular is MASM from Microsoft.
I have not used ML64 (64-bit MASM) though, because it does not support the "invoke" directive in 64-bit mode (and "invoke" speeds up the coding process
quite a bit) and a few other goodies we were used to in the 32-bit MASM. But JWasm is backward compatible with MASM (probably it is what MASM64 should have been),
which means that it is feasible to make this code compile under ML64 by suitably replacing the productivity enhancements like "invoke", "if else endif",
"user registers", and automatic frames.
You must test the ASM routines while you code them, because it is very easy to insert bugs in ASM. There are various ways of doing that.
For my demo program, I just linked the asmrotines.obj with a test program written in C, under Visual Studio. The reason is that the Visual Studio C++ IDE
has a built-in disassembler and you can single step the ASM instructions.
- Copy the compiled ASM file, asmrotines.obj, to the folder where the source files of your C++/CLR interop project are and change your console window to that folder.
- Compile the native code source file, which has the "native.cpp" name in our project. The command line is:
cl /c /MD native.cpp
The C/C++ compiler will generate the object file "native.obj".
- Now, compile the managed file "CInterop.cpp" in our project with the following command line:
cl /clr /LN /MD CInterop.cpp native.obj asmrotines.obj
The /clr switch generates mixed mode code, /LN creates a .netmodule, and /MD links with MSVCRT.LIB. Because this module contains a reference
to the native code, we also need to pass native.obj and asmrotines.obj so that this file can be passed through to the link line when the compiler invokes the linker to produce
the .netmodule. This is basically the explanation given by Mr. Steve Teixeira.
- Now, copy to the folder where the C# files are, asmrotines.obj, CInterop.obj, native.obj, and CInterop.netmodule and change the console window to that folder.
- Run the C# compiler with the following command line:
csc /target:module /unsafe /addmodule:cinterop.netmodule Program.cs
Form1.cs Form1.Designer.cs Properties\AssemblyInfo.cs
- Finally, run the Microsoft Linker to link together all the parts we have been building along the way.
link /LTCG /CLRIMAGETYPE:IJW /ENTRY:Charp.Program.Main
/SUBSYSTEM:WINDOWS /ASSEMBLYMODULE:cinterop.netmodule /OUT:NetAndAsm.exe
cinterop.obj native.obj asmrotines.obj program.netmodule
And that's all about it!
FAQ
Q: Any sample for mixing .NET and Assembly Language in a standalone 32-bit exe?
A: The same sample, but for 32-bit, is in my website at: http://www.atelierweb.com/articles/NetAndAsm32.htm.
History
- 11 October 2011: initial release.
- 12 October, 2011: fixed a bug (the standalone was asking for the .netmodule). Not anymore.
- 14 October, 2011: fixed bug in ASM at
CreateFileW
(error returns INVALID_HANDLE_VALUE
, not zero).
- 18 October, 2011: clarifies the reasons why we compiled the ASM code with JWAsm and not Masm64.