30,417 reputation
262126
bio website blog.280z28.org
location Helotes, TX
age 30
visits member for 3 years, 10 months
seen 11 mins ago
stats profile views 3,413

Turning coffee into code.

Are you in need of an IDE for an in-house or upcoming programming language? Check out our sample products and contact me at tunnelvisionlabs.com.

  • ANTLR
    • Co-author of ANTLR 4
    • Author of ANTLRWorks 2
    • Maintainer of the C# targets for ANTLR 3 and ANTLR 4

2h
comment How do I write (test) code that will not be optimized by the compiler/JIT?
In a language like Java, the compilation and execution environments can vary greatly. A test like this might make sense if the class being constructed is located separately from the test code. Especially interesting would be having a custom class loader load the class on-the-fly from some form of dynamic storage - this code would ensure that the lookup is actually working.
2h
comment How do I write (test) code that will not be optimized by the compiler/JIT?
It is required to leave the Java Virtual Machine (JVM) in a state consistent with having had the program code execute in the JVM in accordance with the Java Memory Model. It is not required to actually execute any specific code or allocate memory in the event that the JIT can prove that the code has no effect on the observable program state.
2h
comment How do I write (test) code that will not be optimized by the compiler/JIT?
It also needs to verify that the constructor exists, does not affect static program state, and cannot throw an exception implicitly required by the JVM such as a NullPointerException.
2h
comment How do I write (test) code that will not be optimized by the compiler/JIT?
-1: Misleading. This is not the case where GC.KeepAlive is required (or even provides any benefit at all).
2h
comment How do I write (test) code that will not be optimized by the compiler/JIT?
-1: Misleading. He is fine without the I/O. This answer makes it appear like unit tests of this form need the I/O in order to guarantee correctness.
2h
answered How do I write (test) code that will not be optimized by the compiler/JIT?
2h
answered How can i manipulate the ATN-Constant generated by ANTLR V4 for Java?
2h
comment FirstOrDefault is signicantly faster than SingleOrDefault while viewing ANTS profiler
If you already know that the elements are unique, then the additional work done by SingleOrDefault is unnecessary.
2h
revised How to save an entire array in a slot of a multidimensional array?
added 119 characters in body
3h
comment string.join method used in sharpDevelop
@user1757980 The difference is the addition of the params modifier in .NET 4. In your code, you are passing a string (not string[]) to the method, which in .NET 4 implicitly creates an array of length 1 to hold that value.
5h
revised string.join method used in sharpDevelop
added 207 characters in body
5h
answered string.join method used in sharpDevelop
5h
comment How to save an entire array in a slot of a multidimensional array?
-1: This is possible. Not particularly clean, but definitely possible.
5h
answered How to save an entire array in a slot of a multidimensional array?
9h
answered Does ANTLR allow multiple variable definitions in the locals clause?
2d
revised A good solution for await in try/catch/finally?
added 103 characters in body
2d
revised Workaround to add a default parameterless constructor to a struct
added 218 characters in body
2d
awarded  reflection
2d
comment passing pointers referencing memory allocated in managed code to unmanaged
@JimMischel (rewrote the previous comment to correct errors) I edited the answer to fix the syntax errors. One thing to note is this only behaves the same way as the fixed keyword for primitive arrays (int[], char[], etc.). For user-defined structures, the marshaler will allocate a fresh block of memory to hold the array data, copy the data to the new allocation, and then free the result when the native method returns. If you also specify the [Out] attribute on the parameter, then before freeing the memory created by the marshaler it will copy the data back to the managed array.
May
17
comment How can I create a System Mutex in C#
The .NET Framework 4.5 added the TryOpenExisting method which does not throw an exception if the mutex does not already exist.