Defining IR code generation methods for each AST class

Now, since the AST is ready with all the necessary information in its data structure, the next phase is to generate LLVM IR. LLVM APIs are used in this code generation. LLVM IR has a predefined format that is generated by the inbuilt APIs of LLVM.

Getting ready

You must have created the AST from any input code of the TOY language.

How to do it…

In order to generate LLVM IR, a virtual CodeGen function is defined in each AST class (the AST classes were defined earlier in the AST section; these functions are additional to those classes) as follows:

  1. Open the toy.cpp file as follows:
    $ vi toy.cpp
  2. In the BaseAST class defined earlier, append the Codegen() functions as follows:
    class BaseAST { … … virtual ...

Get LLVM Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.