Category Archives: Mint

Pictures from Yesterday’s Talk

Here are a few pictures from yesterday’s talk about Mint.

Share
Posted in Graduate School, Mint, Pictures | Leave a comment

Print This Post Print This Post  

Mint Talk in COMP 600

I just gave the first presentation about Mint in the COMP 600 graduate seminar at Rice. The slides for “Mint: A Multi-stage Extension of Java” are available (PowerPoint, PDF, view embedded). This weekend, I was kicking myself why I had … Continue reading

Share
Posted in Graduate School, Mint | 1 Comment

Print This Post Print This Post  

Presentation: Mint: A Multi-stage Extension of Java

Mint: A Multi-stage Extension of Java (PowerPoint, PDF, view embedded) Video recording available on vimeo. Where: Rice University Computer Science Department, COMP 600 Graduate Seminar When: February 8, 2010 Multi-stage programming (MSP) provides a safe way of generating code at … Continue reading

Share
Posted in Mint, Publications | 2 Comments

Print This Post Print This Post  

Paper: Mint: Java Multi-stage Programming Using Weak Separability

Mint: Java Multi-stage Programming Using Weak Separability 2010 ACM SIGPLAN Conference on Programming Language Design and Implementation (PLDI 2010) Multi-stage programming (MSP) provides a disciplined approach to run-time code generation. In the purely functional setting, it has been shown how … Continue reading

Share
Posted in Mint, Publications | 2 Comments

Print This Post Print This Post  

Mint Paper Accepted to PLDI 2010

I’m happy to report that our Mint paper “Mint: Java Multi-stage Programming Using Weak Separability” has been accepted to PLDI 2010 in Toronto! I couldn’t find the deadline for submitting the camera-ready version yet, and the reviewer and referee comments … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post  

Huzzah for Sleeping In!

Today I slept in for the first time in a while. It’s been a tough fortnight, but we finished our PLDI 2010 submission. I feel it is considerably stronger than our previous submissions. Let’s home my confidence is justified.

Share
Posted in Mint, Research | 1 Comment

Print This Post Print This Post  

New Mint Release

I just created a new release of Mint and DrJava with Mint. JavaMint-r14577.tar.gz JavaMint-r14577-binaries.zip drjava-r5130-mint-r14577.jar There were some dramatic performance improvements in the Mint compiler thanks to base type lifting instead of performing cross-stage persistence for them. I also fixed … Continue reading

Share
Posted in DrJava, Mint | Leave a comment

Print This Post Print This Post  

Boring Backport

I’m in the process of porting some scientific code originally written in Fortran, which was then ported to Java, which was then ported to Habanero Java, back to Java, while maintaining a Habanero Java feature called array views. It’s incredibly … Continue reading

Share
Posted in Mint, Ramblings | Leave a comment

Print This Post Print This Post  

Lifting for Primitive and Boxed Types and Strings

When we examined the code that was generated for the sparse matrix multiplication benchmark of Mint, we noticed that variables containing loop indices had become cross-stage persistent (CSP) variables, which necessitated an array lookup. This was much more expensive than … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post  

Mint Matrix Market Reader for Sparse Matrix Multiply Benchmark

I added a Matrix Market file reader for the MatrixMultiplySparse benchmark and used the 183-by-138 matrix we had picked out. The reader seems to work, and if I set the heap size to 1.3 GB, then the compiler almost gets … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post  

Mint Compile Time Improvement

I just committed a small change as a result of profiling Mint programs: We are now treating all compiler invocations as one long compile session, instead of having many short ones during the execution of a Mint program. This reduces … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post  

New Version of DrJava with Mint

I just made a new release of the all-in-one DrJava with Mint: drjava-r5121-mint-r14186.jar On the Mint side, there is only one small change: Previously, the Mint compiler only appeared in the “Compiler” drop-down box if the “Display all compiler versions” … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post  

Today’s Loose Ends

I’m in the process of wrapping up today’syesterday’s loose ends: I made a new ConcJUnit release, 20091019, containing the files for versions 3.8.2 and 4.7, as described at the end of the last post. There is a new version of … Continue reading

Share
Posted in Concurrent Unit Testing, Mint, Research | Leave a comment

Print This Post Print This Post  

Two Confusing Errors

A while ago, I was told by our one-and-only client of Mint that the version of DrJava with Mint does not display Mint as a compiler, even though it is included in the jar file and therefore should be available. … Continue reading

Share
Posted in Concurrent Unit Testing, DrJava, Mint, Ramblings | Leave a comment

Print This Post Print This Post  

All in One File!

After integrating Mint into DrJava last week, we have now made it even simpler to experiment with Mint: You can download a copy of DrJava that already includes the Mint compiler, all in one file: DrJava with Mint (check the … Continue reading

Share
Posted in DrJava, Mint | Leave a comment

Print This Post Print This Post  

DrJava with Mint Released

The latest releases of DrJava contains a compiler adapter for Mint. That means it is possible to conveniently compile Mint programs in the DrJava IDE. To experiment with Mint and DrJava, please do the following: Download DrJava with Mint the … Continue reading

Share
Posted in DrJava, Mint | 1 Comment

Print This Post Print This Post  

DrJava Mint Branch Merged Back into Trunk

I just merged the trunk-mint branch of DrJava back into the trunk and made a new weekly release (@ I actually issue these “weakly” releases more often than just weekly. It’s just a convenient mechanism to benefit from the auto-update … Continue reading

Share
Posted in DrJava, Mint | Leave a comment

Print This Post Print This Post  

Running Mint Programs in DrJava

I have now managed to hack DrJava and Mint together. I still have to improve the source, because right now a few things are hard-coded, but it is a working proof-of-concept. Welcome to DrJava. Working directory is C:\Program Files\JavaMint\langtools\mintTest > … Continue reading

Share
Posted in DrJava, Mint | Leave a comment

Print This Post Print This Post  

Installing JavaMint on Linux

Here are some quick instructions on how to download and install Java Mint. Linux You need Sun’s JDK 6 installed. Download the “binaries only” Java Mint zip file from the Java Mint implementation page. In this example, I have saved … Continue reading

Share
Posted in Mint | Leave a comment

Print This Post Print This Post  

Mint and DrJava Class Loader Issues

I’m still trying to integrate Mint into DrJava, and I’m running into a problem with the class loaders in Mint and DrJava. If I understand the class loader inside the Interaction JVM correctly (a PathClassLoader, I believe), it can change … Continue reading

Share
Posted in DrJava, Mint | Leave a comment

Print This Post Print This Post