Displaying 2 results from an estimated 2 matches for "call_func".
Did you mean:
call_fun
2007 Sep 12
2
[LLVMdev] Methodology for interfacing LLVM JITed code with C++
...tin_func() to generate code that calls a C++
function. One option we see for implementing this is to write C++ code
that contains stub functions, such as:
extern "C"
int call_builtin_func()
{
return SomeCXXFunction();
}
or for something with method calls:
extern "C"
void call_func(Object* obj, ArgType* arg)
{
obj->func(arg); // func is a virtual method
}
and then compile this file with llvm-g++ to bitcode. At runtime, the
JIT would load both our scripting code and this stub bitcode, and link
everything together with the LTO. This hopefully alleviates the need to...
2016 Feb 19
0
Wine release 1.9.4
...[Ex].
kernel32: Forward InterlockedPushListSList[Ex] to ntdll.
ntdll: Skip unused import descriptors when loading libraries.
avifil32/tests: Remove a couple of unnecessary tests.
crypt32/tests: Remove duplicate test.
msvcp100/tests: Use brackets to protect arguments in call_func2 macro.
msvcrt/tests: Use brackets to protect arguments in call_func2 macro.
msvcp60/tests: Use brackets to protect arguments in call_func macros.
msvcp90/tests: Use brackets to protect arguments in call_func macros.
msvcr90/tests: Use brackets to protect arguments in call_f...