Re: [DOTNET-ROTOR] InternalCall How-To and Performance

2002-09-27 Thread Daniel Perron
>Which Richter book are you talking about? > Applied Microsoft .Net Framework Programming (around p. 52) And also: >In order to find an implementation such as InitializeArray, take a look >in ecall.cpp. You will find, for example, an entry that maps >InitializeArray to COMArrayInfo::InitializeAr

Re: [DOTNET-ROTOR] InternalCall How-To and Performance

2002-09-27 Thread Rotem Bentzur
Which Richter book are you talking about? Daniel Perron wrote: > Hello everyone, > > I was discussing about arrays in C# with > some colleages and we started to look at > the MSIL code generated for a simple > inialization, for example: > > int [] a = { 3, 5, 7 }; > > using ildasm. We realized th

Re: [DOTNET-ROTOR] InternalCall How-To and Performance

2002-09-27 Thread David Stutz
al Message- From: Andrew Kennedy [mailto:[EMAIL PROTECTED]] Sent: Friday, September 27, 2002 7:08 AM To: [EMAIL PROTECTED] Subject: Re: [DOTNET-ROTOR] InternalCall How-To and Performance Hi, Look in clr/src/VM/ecall.cpp. This contains mappings for all "internalcall" uses in the BCL. -

Re: [DOTNET-ROTOR] InternalCall How-To and Performance

2002-09-27 Thread Andrew Kennedy
Hi, Look in clr/src/VM/ecall.cpp. This contains mappings for all "internalcall" uses in the BCL. - Andrew. -Original Message- From: Daniel Perron [mailto:[EMAIL PROTECTED]] Sent: 27 September 2002 13:49 To: [EMAIL PROTECTED] Subject: [DOTNET-ROTOR] InternalCall How-To and P

[DOTNET-ROTOR] InternalCall How-To and Performance

2002-09-27 Thread Daniel Perron
Hello everyone, I was discussing about arrays in C# with some colleages and we started to look at the MSIL code generated for a simple inialization, for example: int [] a = { 3, 5, 7 }; using ildasm. We realized that the MSIL code calls the funtion: System.Runtime.CompilerServices.RuntimeHelpe