-
Recent Posts
Recent Comments
Релиз компилятора Ra… on The new MoarVM dispatch mechan… Peter Lund on The new MoarVM dispatch mechan… Peter Lund on The new MoarVM dispatch mechan… 2021.40 It’s h… on The new MoarVM dispatch mechan… samebchase on The new MoarVM dispatch mechan… Archives
- September 2021
- April 2021
- March 2021
- October 2020
- January 2019
- October 2018
- September 2018
- July 2018
- June 2018
- March 2018
- January 2018
- November 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- December 2016
- November 2016
- August 2016
- July 2016
- June 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- June 2014
- April 2014
- January 2014
- December 2013
- October 2013
- September 2013
- August 2013
- July 2013
- May 2013
- April 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- June 2012
- May 2012
- April 2012
- March 2012
- February 2012
- January 2012
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- February 2011
- January 2011
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
Categories
Meta
Category Archives: Uncategorized
The new MoarVM dispatch mechanism is here!
Around 18 months ago, I set about working on the largest set of architectural changes that Raku runtime MoarVM has seen since its inception. The work was most directly triggered by the realization that we had no good way to … Continue reading
Posted in Uncategorized
7 Comments
Raku multiple dispatch with the new MoarVM dispatcher
I recently wrote about the new MoarVM dispatch mechanism, and in that post noted that I still had a good bit of Raku’s multiple dispatch semantics left to implement in terms of it. Since then, I’ve made a decent amount of … Continue reading
Posted in Uncategorized
2 Comments
Towards a new general dispatch mechanism in MoarVM
My goodness, it appears I’m writing my first Raku internals blog post in over two years. Of course, two years ago it wasn’t even called Raku. Anyway, without further ado, let’s get on with this shared brainache. What is dispatch? … Continue reading
Posted in Uncategorized
3 Comments
Taking a break from Raku core development
I’d like to thank everyone who voted for me in the recent Raku Steering Council elections. By this point, I’ve been working on the language for well over a decade, first to help turn a language design I found fascinating … Continue reading
Posted in Uncategorized
Comments Off on Taking a break from Raku core development
My Perl 6 wishes for 2019
This evening, I enjoyed the New Year’s fireworks display over the beautiful Prague skyline. Well, the bit of it that was between me and the fireworks, anyway. Rather than having its fireworks display at midnight, Prague puts it at 6pm … Continue reading
Posted in Uncategorized
1 Comment
Speeding up object creation
Recently, a Perl 6 object creation benchmark result did the rounds on social media. This Perl 6 code: class Point { has $.x; has $.y; } my $total = 0; for ^1_000_000 { my $p = Point.new(x => 2, y => 3); … Continue reading
Posted in Uncategorized
5 Comments
Eliminating unrequired guards
MoarVM’s optimizer can perform speculative optimization. It does this by gathering statistics as the program is interpreted, and then analyzing them to find out what types and callees typically show up at given points in the program. If it spots … Continue reading
Posted in Uncategorized
1 Comment
Faster box/unbox and Int operations
My work on Perl 6 performance continues, thanks to a renewal of my grant from The Perl Foundation. I’m especially focusing on making common basic operations faster, the idea being that if those go faster than programs composed out of them also … Continue reading
Posted in Uncategorized
7 Comments
Redesigning Rakudo’s Scalar
What’s the most common type your Perl 6 code uses? I’ll bet you that in most programs you write, it’ll be Scalar. That might come as a surprise, because you pretty much never write Scalar in your code. But in: my $a = … Continue reading
Posted in Uncategorized
1 Comment
Dynamic lookups and context introspection with inlining
Inlining is one of the most important optimizations that MoarVM performs. Inlining lets us replace a call to some Block, Sub, or Method with the code that is inside of it. The most immediate benefit is to eliminate the overhead of calling, but that’s … Continue reading
Posted in Uncategorized
1 Comment