Dear All, I was wondering if there are any plans to support MSVC thiscall calling convention (where 'this' is passed in ECX and the callee cleans the stack). If not how difficult do you think is implementing it. Thanks, Victor -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090731/5f6549ff/attachment.html>
On Fri, Jul 31, 2009 at 10:53 AM, Victor Zverovich<victor.zverovich at googlemail.com> wrote:> Dear All, > I was wondering if there are any plans to support MSVC thiscall calling > convention (where 'this' is passed in ECX and theĀ callee cleans the stack). > If not how difficult do you think is implementing it. > Thanks, > VictorI don't know of anyone working on it, but it should be easy to implement; it's extremely similar to the fastcall convention. -Eli