[LLVMdev] VLIW Ports

Stripf, Timo timo.stripf at kit.edu
Fri Oct 21 16:52:11 PDT 2011


Hi all,

I worked the last 2 years on a LLVM back-end that supports clustered and non-clustered VLIW architectures. I also wrote a paper about it that is currently within the review process and is hopefully going to be accepted. Here is a small summary how I realized VLIW support with a LLVM back-end. I also used packing and unpacking of VLIW bundles. My implementations do not require any modification of the LLVM core.

To support VLIW I added two representations for VLIW instructions: packed and unpacked representation. Within the unpacked representation a VLIW Bundle is separated by a NEXT instruction like it was done within the IA-64 back-end. The pack representation packs all instructions of one Bundle into a single PACK instruction and I used this representation especially for the register allocation.

I used the following pass order for the clustered VLIW back-end:

DAG->DAG Pattern Instruction Selection 
...
Clustering (Not required for unicluster VLIW architectures)
Scheduling
Packing
...
Register Allocation
...
Prolog/Epilog Insertion & Frame Finalization
Unpacking
Reclustering
...
Rescheduling (Splitting, Packing, Scheduling, Unpacking)
Assembly Printer


In principle, it is possible to use the LLVM scheduler to generate parallel code by providing a custom hazard recognizer that checks true data dependencies of the current bundle. The scheduler has also the capability to output NEXT operations by using NoopHazard and outputting a NEXT instruction instead of a NOP. However, the scheduler that is used within "DAG->DAG Pattern Instruction Selection" uses this glue mechanism and that could be problematic since no NEXT instructions are issued between glued instructions.

Within my back-end I added a parallelizing scheduling after "DAG->DAG Pattern Instruction Selection" by reusing the LLVM Post-RA scheduler together with a custom hazard recognizer as explained. The Post-RA scheduler works very well with some small modifications (special PHI instruction handling and a small performance issue due to the high virtual register numbers) also before register allocation.

Before register allocation the Packing pass converts the unpacked representation outputted by the scheduler into the pack representation. So the register allocation sees the VLIW bundles as one instruction. After "Prolog/Epilog Insertion & Frame Finalization" the Unpack pass converts the PACK instruction back to the unpacked representation. Thereby, instructions that were added within the Register Allocation and Prolog/Epilog Insertion are recognized and gets into one bundle since they are not parallelized.

At the end (just before assembly output) I added several passes for doing a rescheduling. First, the splitting pass tries to split a VLIW bundle into single instructions (if possible). The Packing pass packs all Bundles with more the one instruction into a single PACK instruction. The scheduler will recognize the PACK instruction as a single scheduling unit. Scheduling is nearly the same as before RA. Unpacking establishes again the unpacked representation. 

If anyone is interested in more information please send me an email. I'm also interested in increasing support for VLIW architectures within LLVM.

Kind regards,
Timo Stripf

-----Ursprüngliche Nachricht-----
Von: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] Im Auftrag von Carlos Sánchez de La Lama
Gesendet: Donnerstag, 6. Oktober 2011 13:14
An: LLVM Dev
Betreff: Re: [LLVMdev] VLIW Ports

Hi all,

here is the current (unfinished) version of the VLIW support I mentioned. It is a patch over svn rev 141176. It includes the MachineInstrBundle class, and small required changes in a couple of outside LLVM files.

Also includes a modification to Mips target to simulate a 2-wide VLIW MIPS. The scheduler is really silly, I did not want to implement a scheduler, just the bundle class, and the test scheduler is just provided as an example.

Main thing still missing is to finish the "pack" and "unpack" methods in the bundle class. Right now it manages operands, both implicit and explicit, but it should also manage memory references, and update MIB flags acording to sub-MI flags.

For any question I would be glad to help.

BR

Carlos

On Tue, 2011-09-20 at 16:02 +0200, Carlos Sánchez de La Lama wrote:
> Hi,
> 
> > Has anyone attempted the port of LLVM to a VLIW architecture?  Is 
> > there any publication about it?
> 
> I have developed a derivation of MachineInstr class, called 
> MachineInstrBundle, which is essnetially a VLIW-style machine 
> instruction which can store any MI on each "slot". After the 
> scheduling phase has grouped MIs in bundles, it has to call 
> MIB->pack() method, which takes operands from the MIs in the "slots" 
> and transfers them to the superinstruction. From this point on the 
> bundle is a normal machineinstruction which can be processed by other 
> LLVM passes (such as register allocation).
> 
> The idea was to make a framework on top of which VLIW/ILP scheduling 
> could be studies using LLVM. It is not completely finished, but it is 
> more or less usable and works with a trivial scheduler in a synthetic 
> MIPS-VLIW architecture. Code emission does not work though (yet) so 
> bundles have to be unpacked prior to emission.
> 
> I was waiting to finish it to send a patch to the list, but if you are 
> interested I can send you a patch over svn of my current code.
> 
> BR
> 
> Carlos





More information about the llvm-dev mailing list