funcap icon indicating copy to clipboard operation
funcap copied to clipboard

Use the call conventions to extract all the arguments

Open 0ca opened this issue 9 years ago • 0 comments

Now to support thiscall conventions (ECX register) you should modify the configuration:

self.CMT_CALL_CTX = [re.compile('^arg'), re.compile('^ECX')]
self.CMT_RET_CTX = [re.compile('^EAX')]
self.CMT_RET_SAVED_CTX = [re.compile('^arg'), re.compile('^ECX')]

But then it's shown in all the calls the ECX register as an argument.

It would be nice to detect the call convention of the call and only when the call convention is thiscall shows the ECX argument.

0ca avatar Mar 18 '16 23:03 0ca