Tagged Questions
7
votes
2answers
337 views
.NET IL ByteCode Optimizer [closed]
I'm trying to write optimized code in C# .NET and Mono that will be used for games. (Yes I have valid reasons for using C# and not C++).
I notice C# does not seem to optimize its operators ...
0
votes
1answer
112 views
Implementation of MSIL as pure assembly?
Recently, I got interest in assembly language in general. In doing so, I have also grown interested in the concept of bytecode. So I was rather interested when I looked into Microsoft's .NET, and ...
1
vote
2answers
817 views
Is there any IL editor to change the bytecode of an assembly?
I've detected some defects on legacy third party assemblies that we're using on our code decompilind them. I would like to fix them but as I don't have the source code I need to directly modify the ...
20
votes
2answers
374 views
Are explicitly Infinite Loops handled in .NET as a special case?
Earlier today, as I was coding a method and it struck me that I wasn't sure exactly why the idiom I was implementing compiles. If everything else is abstracted away, it would look something like ...
6
votes
1answer
2k views
LLVM CIL and Java Bytecode backend
I saw the http://vmkit.llvm.org/ project but it's not quite what I'm looking for. Don't want my code to run on yet another VM but on .NET's and Java's VM.
Are there any compiler backends for LLVM ...
1
vote
0answers
247 views
Compiler optimization: CIL assembly
I'm currently writing some kind of optimizing compiler.
I'd like to know if there are any optimizations that can be implemented on CIL (or java bytecode) level?
PS i've met ProGuard project ...
5
votes
1answer
496 views
Has the CIL(Common Intermediate Language) changed for .Net 4.0?
I know that until 3.5, .Net uses the byte code defined in .Net 2.0.
I am wondering whether the new 4.0 byte code changes or not. Thanks!
As the latest ECMA standard file is still the 2006 one, I ...
0
votes
3answers
213 views
How to programatically find the bytecode (CIL) in a .Net executable/dll?
I would like to open a PE file (which i know is a .Net assembly) and find where the .Net bytecode is (ideally starting at the entrypoint). I know that the PE header data (entrypoint RVA) take me just ...
0
votes
2answers
266 views
Is there a way in .NET to access the bytecode/IL/CLR that is currently running?
I'd like to have access to the bytecode that is currently running or about to run in order to detect certain instructions and take specific actions (depending the instructions). In short, I'd like to ...
12
votes
5answers
2k views
Why is it so easy to decompile .NET IL code?
Why is it so easy to decompile .NET IL-code into source code, compared to decompiling native x86 binaries? (Reflector produces quite good source code most of the time, while decompiling the output of ...
21
votes
5answers
6k views
Java's Virtual Machine and CLR
As a sort of follow up to the question called Differences between MSIL and Java bytecode?, what is the (major) differences or similarity in how the Java Virtual Machine works versus how the .NET ...
6
votes
5answers
3k views
What CLR/.NET bytecode tools exist?
I'm well aware of Java tools for manipulating, generating, decompiling JVM bytecode (ASM, cglib, jad, etc). What similar tools exist for the CLR bytecode? Do people do bytecode manipulation for the ...
34
votes
9answers
7k views
Differences between MSIL and Java bytecode?
I'm new to .Net and I'm trying to understand the basics first. What is the difference between MSIL and Java bytecode?
22
votes
8answers
10k views
What are advantages of bytecode over native code?
It seems like anything you can do with bytecode you can do just as easily and much faster in native code. In theory, you could even retain platform and language independence by distributing programs ...