Re: Native methods
Jan Kotas <[email protected]>
| Newsgroups | gmane.comp.windows.devel.dotnet.rotor |
|---|---|
| Message-ID | <DD12668590C9274E9B2226FDBD02B98807DB85CC@red-msg-08.redmond.corp.microsoft.com> |
CORINFO_FLG_INTRINSIC is closest to what you have described. -Jan This posting is provided "AS IS" with no warranties, and confers no rights. -----Original Message----- From: Discussion of the Rotor Shared Source CLI implementation [mailto:[email protected]] On Behalf Of Ivan Suárez Sent: Tuesday, July 22, 2003 8:59 AM To: [email protected] Subject: [DOTNET-ROTOR] Native methods I need to know in jit time if a method called with call or callvirt instructions are native (implemented in C++ inside the Rotor) or are "normal" methods. I tried with the flag CORINFO_FLG_NATIVE, but it does not give me the information that I want. How can I know this? Thanks in advance