jit
Get instruction pointer on segmentation fault or crash (for x86 JIT compiler project)?
I\'m implementing the backend for a JavaScript JIT compiler that produces x86 code. Sometimes, as the result of bugs, I get segmentat开发者_JAVA百科ion faults. It can be quite difficult to trace back[详细]
2023-03-28 17:36 分类:问答code snippets interpretation
Let\'s say I have a WinForm App...written in C#. Is it possib开发者_如何学编程le?After all, put my eye on Iron Python.C# is not interpreted, so unlike javascript or other interpreted languages you ca[详细]
2023-03-28 13:02 分类:问答PyPy significantly slower than CPython
I\'ve been testing a cacheing system of my making. Its purpose is to speed up a Django web application. It stores everything in-memory. According to cProfile most of the time in my tests is spent insi[详细]
2023-03-28 07:41 分类:问答Search a codebase for large methods
By default the HotSpot JIT refuses to compile methods bigger than about 8k of bytecode (1). Is there anything that can scan a jar for such methods (2)?[详细]
2023-03-26 11:56 分类:问答Getting the compiled asm of a c# program [duplicate]
This question already has answers here开发者_如何学运维: Closed 11 years ago. Possible Duplicate:[详细]
2023-03-26 07:17 分类:问答Disassemble Java JIT compiled native bytecode
Is there any way to do an assembly dump of the native code generated by the Java just-in-time compiler?[详细]
2023-03-25 19:52 分类:问答How to make the JIT extend stack variables to the end of scope (GC is too quick)
We\'re dealing with the GC being too quick in a .Net program. Because we use a class with native resources and we do not call GC.KeepAlive(), the GC collects the object before the Native access ends.[详细]
2023-03-25 14:10 分类:问答Retrieve JIT output
I\'m interested in viewing the actual x86 assembly output by a C# program (not the开发者_如何学运维 CLR bytecode instructions).Is there a good way to do this?While debugging your application in Visual[详细]
2023-03-25 04:30 分类:问答Jvm JIT and Hotspot - What are the differences
I\'ve heard these terms being used, but i cant seem to find a top level view of where they fit in all together in a Java framework. I know JIT is a compiling mechanism, but is it part of JVM?[详细]
2023-03-23 21:56 分类:问答Why is llvm considered unsuitable for implementing a JIT?
Many dynamic languages implement (or want to implement) a JIT Compiler in order to speed up their execution times. Inevitably, someone from the peanut gallery asks why they don\'t use LLVM. The answer[详细]
2023-03-23 14:37 分类:问答