さて、asm.jsの件です。
jsとの連携部分で
C言語側の関数をエクスポートしておき、JSから呼び出すメモです。
main関数なしで、関数のみ配置。
引数=数値、数値、文字 を型変換と結合設定します。
リターンコードは、JS側で使います。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//export1.c | |
#include <emscripten.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
char* ex_func01( int a, float b, const char* c ) | |
{ | |
char *po= (char *)malloc(sizeof(char) * 128 ); | |
sprintf(po, "a=%d ,b=%f ,c=%s\n", a, b, c ); | |
printf( "%d %f %s\n", a, b, c ); | |
return po; | |
} |
destの下に、HTML形式でコンパイルします。
引数は、
EXPORTED_FUNCTIONSで、Cは、接頭語=アンスコ[_]が必要。
*) 関数指定無しは、-s EXPORT_ALL=1
>EMCC_FAST_COMPILER=0 emcc export1.c -o dest/export1.html -s EXPORTED_FUNCTIONS="['_ex_func01' ]"
呼び出すJS、書きます。
ccall, cwrap() などで、関数使えるようです。
cwrap の場合は
関数名、戻り値、引数(複数可能)
を指定します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//test.js | |
onload = function(){ | |
console.log('#onload'); | |
var ex_func01= cwrap( 'ex_func01', 'string', ['number' ,'number' ,'string' ] ); | |
var ret= ex_func01(1, 2.0, 'arg3'); | |
console.log('#ret=' +ret ); | |
} |
出力されたHTMLに、読み込みます。
===
<script async type="text/javascript" src="test.js"></script>
===
ブラウザで読み込むと、asm.js処理結果が
JS呼出側からコンソールにログ出力されます。
*) 通常js(非asm) vs asm.js 性能比較の検証も、今後企画したいと思います。
単純な重たい計算処理を実装したところ、あまり誤差が出ませんでした。(汗、、)
0 件のコメント:
コメントを投稿