<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Comment Feed for Channel 9 - John Lam and Martin Maly: Deep DLR</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR/RSS"></atom:link>
	<image>
		<url>http://ecn.channel9.msdn.com/o9/previewImages/100/249678_100x75.jpg</url>
		<title>Channel 9 - John Lam and Martin Maly: Deep DLR</title>
		<link></link>
	</image>
	<description>Dynamic languages are becoming more popular than ever. Static runtimes (static type system is&amp;nbsp;baked into the machine)&amp;nbsp;like the CLR do not natively support languages that have no requirement for explicit types. Implementing languages of this class on the
 CLR is a rather complicated and arduous task. Some very clever folks like Program Manager,&amp;nbsp;RubyCLR creator&amp;nbsp;and IronRuby team member
John Lam and Senior Software Developer 
Martin Maly (creator of the LOLCode
programming language implementation&amp;nbsp;that runs on the DLR, but more importantly one of the devs who writes the DLR) are on the team that makes implementing dynamic languages that can run&amp;nbsp;on top of the CLR not only possible but easier than one might expect.
 This is made possible with a new managed virtual machine called the 
Dynamic Language Runtime (DLR). The DLR runs on top of the CLR, but you can think of the DLR as it&#39;s own managed runtime (or virtual machine). For this interview, it is assumed that you
 have working knowledge of what the CLR does.This interview focuses deeply on one core question: How does the DLR work. Of course, we talk about the history and future of the DLR, but primarily we find out about DLR nuts and bolts and architecure.This interview is whiteboard heavy and compelling. It was really fun to chat with John and Martin and geek out on the DLR. It is a great technology with a very bright future.Enjoy!Low res file here.</description>
	<link></link>
	<language>en</language>
	<pubDate>Wed, 19 Jun 2013 11:54:48 GMT</pubDate>
	<lastBuildDate>Wed, 19 Jun 2013 11:54:48 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<p>LOLCODE on DLR<br /><br />Codeplex the version you have!</p>
<p>posted by NickHodge</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419648630000000</link>
		<pubDate>Mon, 24 Mar 2008 14:14:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419648630000000</guid>
		<dc:creator>NickHodge</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<p>LOLCODE on DLR<br /><br />Codeplex the version you have!</p>
<p>posted by NickHodge</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419648630000000</link>
		<pubDate>Mon, 24 Mar 2008 14:14:23 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419648630000000</guid>
		<dc:creator>NickHodge</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[supercool... thx for this one... DLR is the future..(ruby is gr8 lang)<p>posted by gaurav.net</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419786230000000</link>
		<pubDate>Mon, 24 Mar 2008 18:03:43 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419786230000000</guid>
		<dc:creator>gaurav.net</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[Martin rocks!!<p>posted by littleguru</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419863120000000</link>
		<pubDate>Mon, 24 Mar 2008 20:11:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633419863120000000</guid>
		<dc:creator>littleguru</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[I have a few questions: <br /><br />What happenes with the no longer valid code? Like if the version gets up what happens with the no longer valid IL and tree. I understand that the tree just gets dumped but is there a concept to removed the jitted IL of a method, or how is this solved?<br /><br />Let's say I have this &#43; operation for int and int. Now the tree gets generated and some piece of IL and at the end the Help call. What if next comes in a &#43; string string. Is the whole &#43; int int regenerated or do you create the &#43; string string IL in a method
 and add the call to the old &#43; int int delegate at the end? Or are you holding like a list internally that holds all the delegates for the different &#43; operations and you invoke them one by one?<p>posted by littleguru</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420361660000000</link>
		<pubDate>Tue, 25 Mar 2008 10:02:46 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420361660000000</guid>
		<dc:creator>littleguru</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[it wont be long before dynamic languages become the main, same as dynamic content.<p>posted by bobsmith2008</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420631490000000</link>
		<pubDate>Tue, 25 Mar 2008 17:32:29 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420631490000000</guid>
		<dc:creator>bobsmith2008</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<p>In the fully dynamic mode, and if IL is generated (as opposed to the trees being interpreted), the IL is generated as CLR Dynamic Methods which are eligible for GC.<br /><br />If I understand your second question correctly - the original site is replaced by the new site.</p>
<p>posted by JohnLam</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420642520000000</link>
		<pubDate>Tue, 25 Mar 2008 17:50:52 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420642520000000</guid>
		<dc:creator>JohnLam</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<blockquote>
<div class="quoteAuthor">JohnLam wrote:</div>
<div class="quoteBody">&#65279;In the fully dynamic mode, and if IL is generated (as opposed to the trees being interpreted), the IL is generated as CLR Dynamic Methods which are eligible for GC.<br /><br />If I understand your second question correctly - the original site is replaced by the new site.</div>
</blockquote>
<br /><br />Ah! Seems like I had a blackout on the GC part... sorry.<br /><br />Generating the new side means that you generate the whole IL for the &#43; int int again (let's suppose the first side had already the code for the &#43; int int in place and you add a &#43; string string)? Isn't generating the new side going to be slow ower the time as
 you add new cases? I'm curious whether you guys have seeen performance decreases there... you probably did a lot of performance measurement...<br /><br />Another thing: from time to time I'm using custom runtime code generating for the CLR too (like TypeBuilder, AssemblyBuilder, DynamicMethod, etc.). I wonder if you guys have public benchmarks on how fast/slow stuff is and/or guidelines that show us what should
 be avoided etc... <br /><br />Thanks in advanced.<p>posted by littleguru</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420683490000000</link>
		<pubDate>Tue, 25 Mar 2008 18:59:09 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633420683490000000</guid>
		<dc:creator>littleguru</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<p class="MsoNormal"><font color="black" size="2"><span>Good video, really scratches the surface <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br />Any chance of seeing continuation of DLR discussion any time soon?<br /><br />Also, if a dynamic language chooses to implement n-ary operators, then pathological cases may become not-so-pathological at all. Not that I'm aware of any such language, but still.<br /><br />If I understand it correctly, the number of trees cached at a dynamic site is K^N (K being operators arity and N being number of types operation can be performed upon).<br /><br />Currently DLR seems to rely on equivalents of IF…THEN statements to call proper implementation of the operator depending on the type of passed in arguments.<br /><br />Wouldn't it make sense to allow dynamic language implementer (and presumably developer by proxy) to specify whether to rely on IF…THEN chains or use something like a hash table of delegates, where hash key will be produced using the list of operand types?</span></font></p>
<p><font size="2">And finally, if adding apples to oranges is not a supported operation in a language and while asking the language DLR will get back an exception, will DLR try to &quot;remember&quot; that or on the next occurrence of add(apples, oranges) it will ask
 for help again? Shouldn't it be also somehow configurable?<br /></font></p>
<p>posted by sokhaty</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633421561620000000</link>
		<pubDate>Wed, 26 Mar 2008 19:22:42 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633421561620000000</guid>
		<dc:creator>sokhaty</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<p class="MsoNormal"><span lang="EN-US"><font face="Tahoma" color="#596880" size="2"><strong>W</strong>hat if it has the name of
<font color="#a52a2a">Dynamic Language Converter</font> as .NET languages have lasted efforts of conversion tools? It's supposed to be a little risky to drive developers marketplace without real business interfaces of applications deployment scopes.<br /><strong>W</strong>ith comparison of .NET language converter, how does that DLR compliant definition including actions and invocation infrastructure save cost and performance?<br /><br /></font></span></p>
<p class="MsoNormal"><span lang="EN-US"><font face="Tahoma" color="#596880" size="2">Windows industry have presumably invested the first decade of Windows application runtimes which proved further language neutral and object oriented system. Long history of
 OLE software asset has following characteristics.</font></span></p>
<ul>
<li>
<div class="MsoNormal"><font color="#596880"><font face="Tahoma"><font size="2"><span lang="EN-US">Extensibility of data types in type library</span></font></font></font></div>
</li><li>
<div class="MsoNormal"><font color="#596880"><font face="Tahoma"><font size="2"><span lang="EN-US">Dynamic method dispatching through v-table</span></font></font></font></div>
</li></ul>
<p class="MsoNormal"><span lang="EN-US"><font face="Tahoma" color="#596880" size="2">Web Services architecture and unfolding W3C XML activity related standards might propose such flexible runtime design. Also given subject of runtime invocation system is somewhat
 neural network and fuzzy software method to solve, but not seeing outright answers and industrial references.</font></span></p>
<p>posted by ymasuda_</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633421655900000000</link>
		<pubDate>Wed, 26 Mar 2008 21:59:50 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633421655900000000</guid>
		<dc:creator>ymasuda_</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<p>What happened to <a href="http://en.wikipedia.org/wiki/JScript#Managed_JScript">
Managed JScript</a>?</p>
<p>posted by CRPietschmann</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633802729830000000</link>
		<pubDate>Wed, 10 Jun 2009 23:23:03 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633802729830000000</guid>
		<dc:creator>CRPietschmann</dc:creator>
	</item>
	<item>
		<title>Re: John Lam and Martin Maly: Deep DLR</title>
		<description>
			<![CDATA[
<p>From the team who invented it: <em>The DLR JS was experimental for informing the design of the DLR.&nbsp; At this time there are no plans to develop and release a DLR-hostable JS</em></p>
<p>C</p>
<p>posted by Charles</p>]]>
		</description>
		<link>http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633803366500000000</link>
		<pubDate>Thu, 11 Jun 2009 17:04:10 GMT</pubDate>
		<guid isPermaLink="true">http://channel9.msdn.com/Shows/Going+Deep/John-Lam-and-Martin-Maly-Deep-DLR#c633803366500000000</guid>
		<dc:creator>Charles</dc:creator>
	</item>
</channel>
</rss>