0
votes
6answers
141 views
Is there any regular expression engine which do Just-In-Time compiling?
My Questions is
Is there any regular expression engine which do Just-In-Time compiling during regex pattern parsing and use when matching/replacing the texts? or where can I learn …
5
votes
3answers
84 views
How can Java inline over virtual function boundaries?
Hi all,
I'm reading up some material on whether Java can be faster than C++, and came across the following quote:
"Java can be faster than C++ because JITs can inline over virtua …
5
votes
5answers
162 views
Is there a runtime benefit to using const local variables?
Outside of the ensuring that they cannot be changed (to the tune of a compiler error), does the JIT make any optimisations for const locals?
Eg.
public static int Main(string[] a …
5
votes
6answers
621 views
JIT compiler vs offline compilers
Are there scenarios where JIT compiler is faster than other compilers like C++?
Do you think in the future JIT compiler will just see minor optimizations, features but follow a si …
1
vote
3answers
136 views
Is there any .Net JIT Support from chip vendors?
I know that ARM actually has some support for Java and SUN obviously, but I haven't really references seen any chip vendor supporting a .Net JIT compiler. I know IBM and Intel bot …
1
vote
2answers
189 views
Dynamically Loading Page Class/Assembly: Type or name could not be found in the global namespace
Hi,
I am trying to create an ASP.Net Web application that stores it's "content" (ASPX/ASCX and assemblies) somewhere other than the file system (Inside a service, for example) and …
0
votes
1answer
28 views
JIT Optimization of an indexer which is only modified sequentaly
I am curious as to what happens in this situation:
int i = 0;
MessageBox.Show(i++.ToString ());
MessageBox.Show(i++.ToString ());
Array[i++] = Foo;
Assuming this is the only way …
2
votes
1answer
1k views
How to prevent Just-In-Time Debugger showing when script error occurs in WebBrowser control
I use a WebBrowser control in my Winforms application. When I navigate to a Url that causes a JavaScript exception the Just-In-Time (JIT) debugger window shows up asking if you wan …
2
votes
7answers
228 views
C# without .NET Framework
Writing fast native applications, with API calls and etc, in a modern cross platform programming language like C# would be awesome, wouldn't it? For example if you want to write a …
4
votes
4answers
375 views
Why does Psyco use a lot of memory?
Psyco is a specialising compiler for Python. The documentation states
Psyco can and will use large amounts of memory.
What are the main reasons for this memory usage? Is subs …
5
votes
5answers
489 views
Does it help to use NGEN ?
Is it better to use NGEN an ASP.NET application when we know it is not going to change much ? Or is the JIT good enough ?
Thanks,
Chak.
1
vote
0answers
42 views
High, Fluctuating ‘% Time in JIT’ on Precompiled ASP.NET Website
With a 150 *.dll ASP.NET website that's precompiled (updatable), what are some possible causes for a '% Time in JIT' that is often quite high (> 60%) and fluctuating long after the …
3
votes
7answers
2k views
Script Debugging Not Working (VS 2008)
I recently installed VS 6.0 after installing VS 2008 and overwrite JIT settings .. when i started VS 2008 option dialog .. it said another debugger has taken over VS 2008 debugger …
6
votes
3answers
400 views
Python style iterators in C
The "yield" statement in python allows simple iteration from a procedure, and it also means that sequences don't need to be pre-calculated AND stored in a array of "arbitrary" size …
0
votes
0answers
21 views
Does Sun’s HotSpot have Objects Inlining optimization?
I read somewhere that there is such optimization as Objects Inlining. It collocates two objects together if they have the same life-time scopes and there is a lot of reads between …
