blob: 43c73bad599a8cb897aae793413e89ec39680776 [file] [log] [blame]
Reid Spencer66e7cd02004-09-11 20:30:11 +00001//===--- examples/Fibonacci/fibonacci.cpp - An example use of the JIT -----===//
Reid Spencere784fa42004-08-19 20:10:04 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Valery A. Khamenya and is distributed under the
6// University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
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// }
Reid Spencere784fa42004-08-19 20:10:04 +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
Chris Lattner38f024d2004-11-03 21:43:03 +000026#include "llvm/Module.h"
27#include "llvm/DerivedTypes.h"
28#include "llvm/Constants.h"
29#include "llvm/Instructions.h"
30#include "llvm/ModuleProvider.h"
31#include "llvm/Analysis/Verifier.h"
Reid Spencere784fa42004-08-19 20:10:04 +000032#include "llvm/ExecutionEngine/ExecutionEngine.h"
33#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattner38f024d2004-11-03 21:43:03 +000034#include <iostream>
Reid Spencere784fa42004-08-19 20:10:04 +000035using namespace llvm;
36
Chris Lattner38f024d2004-11-03 21:43:03 +000037static Function *CreateFibFunction(Module *M) {
38 // Create the fib function and insert it into module M. This function is said
39 // to return an int and take an int parameter.
40 Function *FibF = M->getOrInsertFunction("fib", Type::IntTy, Type::IntTy, 0);
41
42 // Add a basic block to the function.
43 BasicBlock *BB = new BasicBlock("EntryBlock", FibF);
44
45 // Get pointers to the constants.
46 Value *One = ConstantSInt::get(Type::IntTy, 1);
47 Value *Two = ConstantSInt::get(Type::IntTy, 2);
Reid Spencere784fa42004-08-19 20:10:04 +000048
Chris Lattner38f024d2004-11-03 21:43:03 +000049 // Get pointer to the integer argument of the add1 function...
50 Argument *ArgX = FibF->abegin(); // Get the arg.
51 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
52
53
54 // Create the true_block.
55 BasicBlock *RetBB = new BasicBlock("return", FibF);
56 // Create an exit block.
57 BasicBlock* RecurseBB = new BasicBlock("recurse", FibF);
58
59 // Create the "if (arg < 2) goto exitbb"
60 Value *CondInst = BinaryOperator::createSetLE(ArgX, Two, "cond", BB);
61 new BranchInst(RetBB, RecurseBB, CondInst, BB);
62
63 // Create: ret int 1
64 new ReturnInst(One, RetBB);
65
66 // create fib(x-1)
67 Value *Sub = BinaryOperator::createSub(ArgX, One, "arg", RecurseBB);
68 Value *CallFibX1 = new CallInst(FibF, Sub, "fibx1", RecurseBB);
69
70 // create fib(x-2)
71 Sub = BinaryOperator::createSub(ArgX, Two, "arg", RecurseBB);
72 Value *CallFibX2 = new CallInst(FibF, Sub, "fibx2", RecurseBB);
73
74 // fib(x-1)+fib(x-2)
75 Value *Sum = BinaryOperator::createAdd(CallFibX1, CallFibX2,
76 "addresult", RecurseBB);
77
78 // Create the return instruction and add it to the basic block
79 new ReturnInst(Sum, RecurseBB);
80
81 return FibF;
82}
83
84
85int main(int argc, char **argv) {
86 int n = argc > 1 ? atol(argv[1]) : 24;
Reid Spencere784fa42004-08-19 20:10:04 +000087
88 // Create some module to put our function into it.
89 Module *M = new Module("test");
90
Reid Spencere784fa42004-08-19 20:10:04 +000091 // We are about to create the "fib" function:
Chris Lattner38f024d2004-11-03 21:43:03 +000092 Function *FibF = CreateFibFunction(M);
Reid Spencere784fa42004-08-19 20:10:04 +000093
94 // Now we going to create JIT
Chris Lattner38f024d2004-11-03 21:43:03 +000095 ExistingModuleProvider *MP = new ExistingModuleProvider(M);
96 ExecutionEngine *EE = ExecutionEngine::create(MP, false);
Reid Spencere784fa42004-08-19 20:10:04 +000097
Chris Lattner38f024d2004-11-03 21:43:03 +000098 std::cerr << "verifying... ";
Reid Spencere784fa42004-08-19 20:10:04 +000099 if (verifyModule(*M)) {
Chris Lattner38f024d2004-11-03 21:43:03 +0000100 std::cerr << argv[0] << ": Error constructing function!\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000101 return 1;
102 }
Reid Spencere784fa42004-08-19 20:10:04 +0000103
Chris Lattner38f024d2004-11-03 21:43:03 +0000104 std::cerr << "OK\n";
105 std::cerr << "We just constructed this LLVM module:\n\n---------\n" << *M;
106 std::cerr << "---------\nstarting fibonacci("
107 << n << ") with JIT...\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000108
Chris Lattner38f024d2004-11-03 21:43:03 +0000109 // Call the `foo' function with argument n:
110 std::vector<GenericValue> Args(1);
111 args[0].IntVal = n;
112 GenericValue GV = EE->runFunction(FibF, Args);
Reid Spencere784fa42004-08-19 20:10:04 +0000113
Chris Lattner38f024d2004-11-03 21:43:03 +0000114 // import result of execution
115 std::cout << "Result: " << GV.IntVal << "\n";
Reid Spencere784fa42004-08-19 20:10:04 +0000116 return 0;
117}