Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Discussion] Using ldftn and calli to call X# methods from managed code #73

Open
jp2masa opened this issue Oct 30, 2018 · 1 comment
Open

Comments

@jp2masa
Copy link
Member

jp2masa commented Oct 30, 2018

I think it would be interesting to call X# methods from IL (C#) using ldftn/calli. The assembler plug would be replaced with managed code, which means better portability.

Example

public static void SendNumber(int number)
{
	ldarg.0
    ldftn
	calli
}

[XSharpMethod("DebugStub_SendSimpleNumber")]
private static void DoSendNumber(int number);

We just need to handle the attribute in ldftn, where we just emit push label.

Possible issues

  • In the debug stub assembler plugs, we currently ifdef the calls, because the debug stub may be disabled (i.e. it's not emitted), so we need to handle that somehow.
  • Calling conventions.
@fanoI
Copy link
Contributor

fanoI commented Feb 19, 2019

I think this would be a good idea to make things simpler.
You could - for example - write the opcoded Execute part in "real" X# too using this method?

A clarification I need only to write this:

[XSharpMethod("DebugStub_SendSimpleNumber")]
private static void DoSendNumber(int number);

the stub method in C# will be generated automatically by IL2CPU?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants