[Mono-dev] Jit and C# Compiler

2006-10-04 Thread Khaled A. K. Mohammed
Hi, I am doing a course on compiler. I am planning to choose a project based on .NET Framework/Mono. I am briefly describing the project below. The project will aim to improve the execution of CIL image on multicore processors. First step is to change the C# compiler to insert custom instructi

Re: [Mono-dev] Jit and C# Compiler

2006-10-05 Thread Cedric Vivier
Hi!Sounds very interesting!If I am correct you want to detect (thus extract) parallelism from a CIL image right?Do you have any research paper describing the algorithm you plan to use ?Please keep us informed of your advancement :) --cv2006/10/5, Khaled A. K. Mohammed <[EMAIL PROTECTED] >: Hi,I am

Re: [Mono-dev] Jit and C# Compiler

2006-10-05 Thread Martin Hinks
Do you plan to automatically detect when parallel usage is possible or will it be something that the C# program's author can specify? Martin On 10/5/06, Cedric Vivier <[EMAIL PROTECTED]> wrote: > Hi! > > Sounds very interesting! > If I am correct you want to detect (thus extract) parallelism from

Re: [Mono-dev] Jit and C# Compiler

2006-10-05 Thread tcmichals
To simply this task maybe use OpenMP http://www.openmp.org "Martin Hinks" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Do you plan to automatically detect when parallel usage is possible or > will it be something that the C# program's author can specify? > > Martin > > On 10/5/06,

Re: [Mono-dev] Jit and C# Compiler

2006-10-05 Thread Khaled A. K. Mohammed
Hello, On Thu, 2006-10-05 at 14:18 +0200, Cedric Vivier wrote: > Hi! > > Sounds very interesting! > If I am correct you want to detect (thus extract) parallelism from a > CIL image right? Yes, the extra information will help JIT to understand the nature of the program. > Do you have any research

Re: [Mono-dev] Jit and C# Compiler

2006-10-05 Thread Khaled A. K. Mohammed
Hi, On Thu, 2006-10-05 at 13:21 +0100, Martin Hinks wrote: > Do you plan to automatically detect when parallel usage is possible or > will it be something that the C# program's author can specify? Automatic is the plan for now. I might use the compiler to add Attributes [("...")] to methods during

Re: [Mono-dev] Jit and C# Compiler

2006-10-06 Thread Paolo Molaro
On 10/05/06 Khaled A. K. Mohammed wrote: > I am briefly describing the project below. > The project will aim to improve the execution of CIL image on multicore > processors. First step is to change the C# compiler to insert custom > instructions into the managed binary (just like how the line #s a