Book Image

LLVM Cookbook

Book Image

LLVM Cookbook

Overview of this book

Table of Contents (16 chapters)
LLVM Cookbook
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Defining an instruction set


The instruction set of an architecture varies according to various features present in the architecture. This recipe demonstrates how instruction sets are defined for the target architecture.

Getting ready

Three things are defined in the instruction target description file: operands, an assembly string, and an instruction pattern. The specification contains a list of definitions or outputs and a list of uses or inputs. There can be different operand classes such as the register class, and immediate or more complex register + imm operands.

Here, a simple add instruction definition is demonstrated. It takes two registers for the input and one register for the output.

How to do it…

  1. Create a new file called SAMPLEInstrInfo.td in the lib/Target/SAMPLE folder:

    $ vi SAMPLEInstrInfo.td
    
  2. Specify the operands, assembly string, and instruction pattern for the add instruction between two register operands:

    def ADDrr : InstSAMPLE<(outs GRRegs:$dst),
              (ins GRRegs:$src1...