Flavio Santos

Results 15 comments of Flavio Santos

Hi! Thanks a lot! Yes, Jitex can intercept methods already compiled by JIT. You can use: ```MethodHelper.ForceRecompile``` to help you. This method force JIT compile method again, making possible to...

Thanks! For .NET Core 2.1/3.1, when I developed that feature, I couldn't make it work with .NET Core; it only works with .NET 5 or above. That's the reason it...

Yes, it's a bug. There are multiple 'ret' instructions in the body from DateTime.Now: ``` [0] = {Instruction} call System.DateTime get_UtcNow() [1] = {Instruction} stloc.0 [2] = {Instruction} ldloc.0 [3]...

That's a good approach using exceptions. We can try to implement that in the near future. > I just read through the source code and noticed that your implementation of...

> Hello. Is there a wiki for the project? Can I generate COM attributes for methods using this tool? I haven't completed the wiki yet; all documentation can be found...

Hello, Probably if you add an x86 trampoline on this method should be enough: https://github.com/Hitmasu/Jitex/blob/2258f2cd859fe39cfd422dfe65540af1f7115348/src/Jitex/Utils/MemoryHelper.cs#L27-L62 > The startIndex represents the index in the array where the address should be written....

I'll investigate that. Which version of .NET are you currently testing?

> Also getting cucked by the same issue. (Error occurs on a x86 Process, but works fine on x64) If it does happen for x86, That'd be fraken awesome. >...

Apologies for the delay. I've released a preview version of Jitex (6.7.0-preview) that provides initial support for x86. Please note that this support is currently limited to core functions: -...

> > Apologies for the delay. > > I've released a preview version of Jitex (6.7.0-preview) that provides initial support for x86. Please note that this support is currently limited...