blob: d637d4dea1733b717d32775a9e3556ca6011e349 [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
Owen Anderson8b477ed2009-07-01 16:58:40 +000026#include "llvm/LLVMContext.h"
Chris Lattner38f024d2004-11-03 21:43:03 +000027#include "llvm/Module.h"
28#include "llvm/DerivedTypes.h"
29#include "llvm/Constants.h"
30#include "llvm/Instructions.h"
31#include "llvm/ModuleProvider.h"
32#include "llvm/Analysis/Verifier.h"
Jeff Cohenafebb442006-03-24 03:11:31 +000033#include "llvm/ExecutionEngine/JIT.h"
34#include "llvm/ExecutionEngine/Interpreter.h"
Reid Spencere784fa42004-08-19 20:10:04 +000035#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattner944fac72008-08-23 22:23:09 +000036#include "llvm/Support/raw_ostream.h"
Reid Spencere784fa42004-08-19 20:10:04 +000037using namespace llvm;
38
Owen Anderson9adc0ab2009-07-14 23:09:55 +000039static Function *CreateFibFunction(Module *M, LLVMContext &Context) {
Chris Lattner38f024d2004-11-03 21:43:03 +000040 // Create the fib function and insert it into module M. This function is said
41 // to return an int and take an int parameter.
Chris Lattner6a987542007-01-07 07:40:09 +000042 Function *FibF =
43 cast<Function>(M->getOrInsertFunction("fib", Type::Int32Ty, Type::Int32Ty,
44 (Type *)0));
Misha Brukman237cef42005-04-20 16:42:34 +000045
Chris Lattner38f024d2004-11-03 21:43:03 +000046 // Add a basic block to the function.
Gabor Greif051a9502008-04-06 20:25:17 +000047 BasicBlock *BB = BasicBlock::Create("EntryBlock", FibF);
Misha Brukman237cef42005-04-20 16:42:34 +000048
Chris Lattner38f024d2004-11-03 21:43:03 +000049 // Get pointers to the constants.
Owen Anderson9adc0ab2009-07-14 23:09:55 +000050 Value *One = Context.getConstantInt(Type::Int32Ty, 1);
51 Value *Two = Context.getConstantInt(Type::Int32Ty, 2);
Reid Spencere784fa42004-08-19 20:10:04 +000052
Chris Lattner38f024d2004-11-03 21:43:03 +000053 // Get pointer to the integer argument of the add1 function...
Alkis Evlogimenosdadf8812005-03-15 07:12:30 +000054 Argument *ArgX = FibF->arg_begin(); // Get the arg.
Chris Lattner38f024d2004-11-03 21:43:03 +000055 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
56
Chris Lattner38f024d2004-11-03 21:43:03 +000057 // Create the true_block.
Gabor Greif051a9502008-04-06 20:25:17 +000058 BasicBlock *RetBB = BasicBlock::Create("return", FibF);
Chris Lattner38f024d2004-11-03 21:43:03 +000059 // Create an exit block.
Gabor Greif051a9502008-04-06 20:25:17 +000060 BasicBlock* RecurseBB = BasicBlock::Create("recurse", FibF);
Chris Lattner38f024d2004-11-03 21:43:03 +000061
Chris Lattner7520fcd2008-03-13 03:29:42 +000062 // Create the "if (arg <= 2) goto exitbb"
Owen Anderson333c4002009-07-09 23:48:35 +000063 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
Gabor Greif051a9502008-04-06 20:25:17 +000064 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
Chris Lattner38f024d2004-11-03 21:43:03 +000065
66 // Create: ret int 1
Gabor Greif051a9502008-04-06 20:25:17 +000067 ReturnInst::Create(One, RetBB);
Misha Brukman237cef42005-04-20 16:42:34 +000068
Chris Lattner38f024d2004-11-03 21:43:03 +000069 // create fib(x-1)
Gabor Greif7cbd8a32008-05-16 19:29:10 +000070 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
Gabor Greif051a9502008-04-06 20:25:17 +000071 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
Chris Lattnerf6b5c1a2005-05-06 06:21:59 +000072 CallFibX1->setTailCall();
Misha Brukman237cef42005-04-20 16:42:34 +000073
Chris Lattner38f024d2004-11-03 21:43:03 +000074 // create fib(x-2)
Gabor Greif7cbd8a32008-05-16 19:29:10 +000075 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
Gabor Greif051a9502008-04-06 20:25:17 +000076 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
Chris Lattnerf6b5c1a2005-05-06 06:21:59 +000077 CallFibX2->setTailCall();
Chris Lattner47968e42005-05-06 05:59:50 +000078
Chris Lattner38f024d2004-11-03 21:43:03 +000079
80 // fib(x-1)+fib(x-2)
Gabor Greif7cbd8a32008-05-16 19:29:10 +000081 Value *Sum = BinaryOperator::CreateAdd(CallFibX1, CallFibX2,
Chris Lattner38f024d2004-11-03 21:43:03 +000082 "addresult", RecurseBB);
Misha Brukman237cef42005-04-20 16:42:34 +000083
Chris Lattner38f024d2004-11-03 21:43:03 +000084 // Create the return instruction and add it to the basic block
Gabor Greif051a9502008-04-06 20:25:17 +000085 ReturnInst::Create(Sum, RecurseBB);
Chris Lattner38f024d2004-11-03 21:43:03 +000086
87 return FibF;
88}
89
90
91int main(int argc, char **argv) {
92 int n = argc > 1 ? atol(argv[1]) : 24;
Reid Spencere784fa42004-08-19 20:10:04 +000093
Owen Anderson8b477ed2009-07-01 16:58:40 +000094 LLVMContext Context;
95
Reid Spencere784fa42004-08-19 20:10:04 +000096 // Create some module to put our function into it.
Owen Anderson31895e72009-07-01 21:22:36 +000097 Module *M = new Module("test", Context);
Reid Spencere784fa42004-08-19 20:10:04 +000098
Reid Spencere784fa42004-08-19 20:10:04 +000099 // We are about to create the "fib" function:
Owen Anderson9adc0ab2009-07-14 23:09:55 +0000100 Function *FibF = CreateFibFunction(M, Context);
Reid Spencere784fa42004-08-19 20:10:04 +0000101
Misha Brukman237cef42005-04-20 16:42:34 +0000102 // Now we going to create JIT
Chris Lattner38f024d2004-11-03 21:43:03 +0000103 ExistingModuleProvider *MP = new ExistingModuleProvider(M);
104 ExecutionEngine *EE = ExecutionEngine::create(MP, false);
Reid Spencere784fa42004-08-19 20:10:04 +0000105
Chris Lattner944fac72008-08-23 22:23:09 +0000106 errs() << "verifying... ";
Reid Spencere784fa42004-08-19 20:10:04 +0000107 if (verifyModule(*M)) {
Chris Lattner944fac72008-08-23 22:23:09 +0000108 errs() << argv[0] << ": Error constructing function!\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000109 return 1;
110 }
Reid Spencere784fa42004-08-19 20:10:04 +0000111
Chris Lattner944fac72008-08-23 22:23:09 +0000112 errs() << "OK\n";
113 errs() << "We just constructed this LLVM module:\n\n---------\n" << *M;
114 errs() << "---------\nstarting fibonacci(" << n << ") with JIT...\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000115
Misha Brukman7cf540b2004-11-05 04:11:40 +0000116 // Call the Fibonacci function with argument n:
Chris Lattner38f024d2004-11-03 21:43:03 +0000117 std::vector<GenericValue> Args(1);
Reid Spencer34bd70d2007-03-06 17:24:31 +0000118 Args[0].IntVal = APInt(32, n);
Chris Lattner38f024d2004-11-03 21:43:03 +0000119 GenericValue GV = EE->runFunction(FibF, Args);
Reid Spencere784fa42004-08-19 20:10:04 +0000120
Chris Lattner38f024d2004-11-03 21:43:03 +0000121 // import result of execution
Chris Lattner944fac72008-08-23 22:23:09 +0000122 outs() << "Result: " << GV.IntVal << "\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000123 return 0;
124}