blob: 662cb01dd37e9de96651d5dc71627d13047ed030 [file] [log] [blame]
Reid Spencer66e7cd02004-09-11 20:30:11 +00001//===--- examples/Fibonacci/fibonacci.cpp - An example use of the JIT -----===//
Misha Brukman237cef42005-04-20 16:42:34 +00002//
Reid Spencere784fa42004-08-19 20:10:04 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerfc001bb2007-12-29 20:37:57 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman237cef42005-04-20 16:42:34 +00007//
Reid Spencere784fa42004-08-19 20:10:04 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattner38f024d2004-11-03 21:43:03 +000010// This small program provides an example of how to build quickly a small module
11// with function Fibonacci and execute it with the JIT.
Reid Spencere784fa42004-08-19 20:10:04 +000012//
Chris Lattner38f024d2004-11-03 21:43:03 +000013// The goal of this snippet is to create in the memory the LLVM module
14// consisting of one function as follow:
Reid Spencere784fa42004-08-19 20:10:04 +000015//
Chris Lattner38f024d2004-11-03 21:43:03 +000016// int fib(int x) {
17// if(x<=2) return 1;
18// return fib(x-1)+fib(x-2);
19// }
Misha Brukman237cef42005-04-20 16:42:34 +000020//
Chris Lattner38f024d2004-11-03 21:43:03 +000021// Once we have this, we compile the module via JIT, then execute the `fib'
Reid Spencere784fa42004-08-19 20:10:04 +000022// function and return result to a driver, i.e. to a "host program".
23//
Chris Lattner38f024d2004-11-03 21:43:03 +000024//===----------------------------------------------------------------------===//
Reid Spencere784fa42004-08-19 20:10:04 +000025
Eugene Zelenko578a1d22016-05-25 01:18:36 +000026#include "llvm/ADT/APInt.h"
Chandler Carruth098dd802014-01-13 09:53:45 +000027#include "llvm/IR/Verifier.h"
Eugene Zelenko578a1d22016-05-25 01:18:36 +000028#include "llvm/ExecutionEngine/ExecutionEngine.h"
Chandler Carruth4ca7e092012-12-04 10:16:57 +000029#include "llvm/ExecutionEngine/GenericValue.h"
Lang Hamesdf424f72016-06-11 05:47:04 +000030#include "llvm/ExecutionEngine/MCJIT.h"
Eugene Zelenko578a1d22016-05-25 01:18:36 +000031#include "llvm/IR/Argument.h"
32#include "llvm/IR/BasicBlock.h"
Chandler Carruth0a084602013-01-02 11:56:33 +000033#include "llvm/IR/Constants.h"
34#include "llvm/IR/DerivedTypes.h"
Eugene Zelenko578a1d22016-05-25 01:18:36 +000035#include "llvm/IR/Function.h"
36#include "llvm/IR/InstrTypes.h"
Chandler Carruth0a084602013-01-02 11:56:33 +000037#include "llvm/IR/Instructions.h"
38#include "llvm/IR/LLVMContext.h"
39#include "llvm/IR/Module.h"
Eugene Zelenko578a1d22016-05-25 01:18:36 +000040#include "llvm/IR/Type.h"
41#include "llvm/Support/Casting.h"
Evan Cheng3e74d6f2011-08-24 18:08:43 +000042#include "llvm/Support/TargetSelect.h"
Chandler Carruth4ca7e092012-12-04 10:16:57 +000043#include "llvm/Support/raw_ostream.h"
Eugene Zelenko578a1d22016-05-25 01:18:36 +000044#include <algorithm>
45#include <cstdlib>
46#include <memory>
47#include <string>
48#include <vector>
Hans Wennborgd16725c2015-09-29 18:02:48 +000049
Reid Spencere784fa42004-08-19 20:10:04 +000050using namespace llvm;
51
Owen Anderson9adc0ab2009-07-14 23:09:55 +000052static Function *CreateFibFunction(Module *M, LLVMContext &Context) {
Quentin Colombet92b0d8c2012-10-23 16:03:18 +000053 // Create the fib function and insert it into module M. This function is said
Chris Lattner38f024d2004-11-03 21:43:03 +000054 // to return an int and take an int parameter.
Chris Lattner6a987542007-01-07 07:40:09 +000055 Function *FibF =
Arnaud A. de Grandmaison5791df82012-06-21 22:26:01 +000056 cast<Function>(M->getOrInsertFunction("fib", Type::getInt32Ty(Context),
Serge Guelton9d544002017-04-11 15:01:18 +000057 Type::getInt32Ty(Context)));
Misha Brukman237cef42005-04-20 16:42:34 +000058
Chris Lattner38f024d2004-11-03 21:43:03 +000059 // Add a basic block to the function.
Owen Anderson1d0be152009-08-13 21:58:54 +000060 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", FibF);
Misha Brukman237cef42005-04-20 16:42:34 +000061
Chris Lattner38f024d2004-11-03 21:43:03 +000062 // Get pointers to the constants.
Owen Anderson1d0be152009-08-13 21:58:54 +000063 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
64 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
Reid Spencere784fa42004-08-19 20:10:04 +000065
Chris Lattner38f024d2004-11-03 21:43:03 +000066 // Get pointer to the integer argument of the add1 function...
Duncan P. N. Exon Smith7d7668e2015-11-07 00:55:46 +000067 Argument *ArgX = &*FibF->arg_begin(); // Get the arg.
Chris Lattner38f024d2004-11-03 21:43:03 +000068 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
69
Chris Lattner38f024d2004-11-03 21:43:03 +000070 // Create the true_block.
Owen Anderson1d0be152009-08-13 21:58:54 +000071 BasicBlock *RetBB = BasicBlock::Create(Context, "return", FibF);
Chris Lattner38f024d2004-11-03 21:43:03 +000072 // Create an exit block.
Owen Anderson1d0be152009-08-13 21:58:54 +000073 BasicBlock* RecurseBB = BasicBlock::Create(Context, "recurse", FibF);
Chris Lattner38f024d2004-11-03 21:43:03 +000074
Chris Lattner7520fcd2008-03-13 03:29:42 +000075 // Create the "if (arg <= 2) goto exitbb"
Owen Anderson333c4002009-07-09 23:48:35 +000076 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
Gabor Greif051a9502008-04-06 20:25:17 +000077 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
Chris Lattner38f024d2004-11-03 21:43:03 +000078
79 // Create: ret int 1
Owen Anderson1d0be152009-08-13 21:58:54 +000080 ReturnInst::Create(Context, One, RetBB);
Misha Brukman237cef42005-04-20 16:42:34 +000081
Chris Lattner38f024d2004-11-03 21:43:03 +000082 // create fib(x-1)
Gabor Greif7cbd8a32008-05-16 19:29:10 +000083 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
Gabor Greif051a9502008-04-06 20:25:17 +000084 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
Chris Lattnerf6b5c1a2005-05-06 06:21:59 +000085 CallFibX1->setTailCall();
Misha Brukman237cef42005-04-20 16:42:34 +000086
Chris Lattner38f024d2004-11-03 21:43:03 +000087 // create fib(x-2)
Gabor Greif7cbd8a32008-05-16 19:29:10 +000088 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
Gabor Greif051a9502008-04-06 20:25:17 +000089 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
Chris Lattnerf6b5c1a2005-05-06 06:21:59 +000090 CallFibX2->setTailCall();
Chris Lattner47968e42005-05-06 05:59:50 +000091
Chris Lattner38f024d2004-11-03 21:43:03 +000092 // fib(x-1)+fib(x-2)
Gabor Greif7cbd8a32008-05-16 19:29:10 +000093 Value *Sum = BinaryOperator::CreateAdd(CallFibX1, CallFibX2,
Chris Lattner38f024d2004-11-03 21:43:03 +000094 "addresult", RecurseBB);
Misha Brukman237cef42005-04-20 16:42:34 +000095
Chris Lattner38f024d2004-11-03 21:43:03 +000096 // Create the return instruction and add it to the basic block
Owen Anderson1d0be152009-08-13 21:58:54 +000097 ReturnInst::Create(Context, Sum, RecurseBB);
Chris Lattner38f024d2004-11-03 21:43:03 +000098
99 return FibF;
100}
101
Chris Lattner38f024d2004-11-03 21:43:03 +0000102int main(int argc, char **argv) {
103 int n = argc > 1 ? atol(argv[1]) : 24;
Reid Spencere784fa42004-08-19 20:10:04 +0000104
Chris Lattner18f0c672009-12-01 01:56:27 +0000105 InitializeNativeTarget();
Lang Hamesdf424f72016-06-11 05:47:04 +0000106 InitializeNativeTargetAsmPrinter();
Owen Anderson8b477ed2009-07-01 16:58:40 +0000107 LLVMContext Context;
Arnaud A. de Grandmaison5791df82012-06-21 22:26:01 +0000108
Reid Spencere784fa42004-08-19 20:10:04 +0000109 // Create some module to put our function into it.
Rafael Espindola3f4ed322014-08-19 04:04:25 +0000110 std::unique_ptr<Module> Owner(new Module("test", Context));
111 Module *M = Owner.get();
Reid Spencere784fa42004-08-19 20:10:04 +0000112
Reid Spencere784fa42004-08-19 20:10:04 +0000113 // We are about to create the "fib" function:
Rafael Espindola3f4ed322014-08-19 04:04:25 +0000114 Function *FibF = CreateFibFunction(M, Context);
Reid Spencere784fa42004-08-19 20:10:04 +0000115
Misha Brukman237cef42005-04-20 16:42:34 +0000116 // Now we going to create JIT
Chris Lattner18f0c672009-12-01 01:56:27 +0000117 std::string errStr;
Chris Lattner03d10632010-09-05 23:09:30 +0000118 ExecutionEngine *EE =
Rafael Espindola3f4ed322014-08-19 04:04:25 +0000119 EngineBuilder(std::move(Owner))
Chris Lattner03d10632010-09-05 23:09:30 +0000120 .setErrorStr(&errStr)
Chris Lattner03d10632010-09-05 23:09:30 +0000121 .create();
Chris Lattner18f0c672009-12-01 01:56:27 +0000122
123 if (!EE) {
Chris Lattner03d10632010-09-05 23:09:30 +0000124 errs() << argv[0] << ": Failed to construct ExecutionEngine: " << errStr
125 << "\n";
Chris Lattner18f0c672009-12-01 01:56:27 +0000126 return 1;
127 }
Reid Spencere784fa42004-08-19 20:10:04 +0000128
Chris Lattner944fac72008-08-23 22:23:09 +0000129 errs() << "verifying... ";
Reid Spencere784fa42004-08-19 20:10:04 +0000130 if (verifyModule(*M)) {
Chris Lattner944fac72008-08-23 22:23:09 +0000131 errs() << argv[0] << ": Error constructing function!\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000132 return 1;
133 }
Reid Spencere784fa42004-08-19 20:10:04 +0000134
Chris Lattner944fac72008-08-23 22:23:09 +0000135 errs() << "OK\n";
136 errs() << "We just constructed this LLVM module:\n\n---------\n" << *M;
137 errs() << "---------\nstarting fibonacci(" << n << ") with JIT...\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000138
Misha Brukman7cf540b2004-11-05 04:11:40 +0000139 // Call the Fibonacci function with argument n:
Chris Lattner38f024d2004-11-03 21:43:03 +0000140 std::vector<GenericValue> Args(1);
Reid Spencer34bd70d2007-03-06 17:24:31 +0000141 Args[0].IntVal = APInt(32, n);
Chris Lattner38f024d2004-11-03 21:43:03 +0000142 GenericValue GV = EE->runFunction(FibF, Args);
Reid Spencere784fa42004-08-19 20:10:04 +0000143
Chris Lattner38f024d2004-11-03 21:43:03 +0000144 // import result of execution
Chris Lattner944fac72008-08-23 22:23:09 +0000145 outs() << "Result: " << GV.IntVal << "\n";
Arnaud A. de Grandmaison5791df82012-06-21 22:26:01 +0000146
Reid Spencere784fa42004-08-19 20:10:04 +0000147 return 0;
148}