Running your own pass with the opt tool

The pass written in the previous recipe, Writing your own LLVM pass, is ready to be run on the LLVM IR. This pass needs to be loaded dynamically for the opt tool to recognize and execute it.

How to do it…

Do the following steps:

  1. Write the C test code in the sample.c file, which we will convert into an .ll file in the next step:
    $ vi sample.c
    
    int foo(int n, int m) {
      int sum = 0;
      int c0;
      for (c0 = n; c0 > 0; c0--) {
        int c1 = m;
        for (; c1 > 0; c1--) {
          sum += c0 > c1 ? 1 : 0;
        }
      }
      return sum;
    }
  2. Convert the C test code into LLVM IR using the following command:
    $ clang –O0 –S –emit-llvm sample.c –o sample.ll
    

    This will generate a sample.ll file.

  3. Run the new pass with the opt tool, as follows:
    $ opt -load (path_to_.so_file)/FuncBlockCount.so ...

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.