blob: 077cdd0f5d6816aba26c3e3b5327fe5b64321004 [file] [log] [blame]
Reid Spencer987319d2004-09-11 20:30:11 +00001//===--- examples/Fibonacci/fibonacci.cpp - An example use of the JIT -----===//
Misha Brukman2f72baf2005-04-20 16:42:34 +00002//
Reid Spencerf30f28e2004-08-19 20:10:04 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattnerbcf65db2007-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 Brukman2f72baf2005-04-20 16:42:34 +00007//
Reid Spencerf30f28e2004-08-19 20:10:04 +00008//===----------------------------------------------------------------------===//
9//
Chris Lattnerbd2886d2004-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 Spencerf30f28e2004-08-19 20:10:04 +000012//
Chris Lattnerbd2886d2004-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 Spencerf30f28e2004-08-19 20:10:04 +000015//
Chris Lattnerbd2886d2004-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 Brukman2f72baf2005-04-20 16:42:34 +000020//
Chris Lattnerbd2886d2004-11-03 21:43:03 +000021// Once we have this, we compile the module via JIT, then execute the `fib'
Reid Spencerf30f28e2004-08-19 20:10:04 +000022// function and return result to a driver, i.e. to a "host program".
23//
Chris Lattnerbd2886d2004-11-03 21:43:03 +000024//===----------------------------------------------------------------------===//
Reid Spencerf30f28e2004-08-19 20:10:04 +000025
Owen Anderson6773d382009-07-01 16:58:40 +000026#include "llvm/LLVMContext.h"
Chris Lattnerbd2886d2004-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 Cohene46cbe72006-03-24 03:11:31 +000033#include "llvm/ExecutionEngine/JIT.h"
34#include "llvm/ExecutionEngine/Interpreter.h"
Reid Spencerf30f28e2004-08-19 20:10:04 +000035#include "llvm/ExecutionEngine/GenericValue.h"
Chris Lattner0c19df42008-08-23 22:23:09 +000036#include "llvm/Support/raw_ostream.h"
Chris Lattner4ba8e5d2009-12-01 01:56:27 +000037#include "llvm/Target/TargetSelect.h"
Reid Spencerf30f28e2004-08-19 20:10:04 +000038using namespace llvm;
39
Owen Andersonb6b25302009-07-14 23:09:55 +000040static Function *CreateFibFunction(Module *M, LLVMContext &Context) {
Chris Lattnerbd2886d2004-11-03 21:43:03 +000041 // Create the fib function and insert it into module M. This function is said
42 // to return an int and take an int parameter.
Chris Lattnerb800b392007-01-07 07:40:09 +000043 Function *FibF =
Owen Anderson55f1c092009-08-13 21:58:54 +000044 cast<Function>(M->getOrInsertFunction("fib", Type::getInt32Ty(Context),
45 Type::getInt32Ty(Context),
Chris Lattnerb800b392007-01-07 07:40:09 +000046 (Type *)0));
Misha Brukman2f72baf2005-04-20 16:42:34 +000047
Chris Lattnerbd2886d2004-11-03 21:43:03 +000048 // Add a basic block to the function.
Owen Anderson55f1c092009-08-13 21:58:54 +000049 BasicBlock *BB = BasicBlock::Create(Context, "EntryBlock", FibF);
Misha Brukman2f72baf2005-04-20 16:42:34 +000050
Chris Lattnerbd2886d2004-11-03 21:43:03 +000051 // Get pointers to the constants.
Owen Anderson55f1c092009-08-13 21:58:54 +000052 Value *One = ConstantInt::get(Type::getInt32Ty(Context), 1);
53 Value *Two = ConstantInt::get(Type::getInt32Ty(Context), 2);
Reid Spencerf30f28e2004-08-19 20:10:04 +000054
Chris Lattnerbd2886d2004-11-03 21:43:03 +000055 // Get pointer to the integer argument of the add1 function...
Alkis Evlogimenos84adfd82005-03-15 07:12:30 +000056 Argument *ArgX = FibF->arg_begin(); // Get the arg.
Chris Lattnerbd2886d2004-11-03 21:43:03 +000057 ArgX->setName("AnArg"); // Give it a nice symbolic name for fun.
58
Chris Lattnerbd2886d2004-11-03 21:43:03 +000059 // Create the true_block.
Owen Anderson55f1c092009-08-13 21:58:54 +000060 BasicBlock *RetBB = BasicBlock::Create(Context, "return", FibF);
Chris Lattnerbd2886d2004-11-03 21:43:03 +000061 // Create an exit block.
Owen Anderson55f1c092009-08-13 21:58:54 +000062 BasicBlock* RecurseBB = BasicBlock::Create(Context, "recurse", FibF);
Chris Lattnerbd2886d2004-11-03 21:43:03 +000063
Chris Lattner723f2a12008-03-13 03:29:42 +000064 // Create the "if (arg <= 2) goto exitbb"
Owen Anderson1e5f00e2009-07-09 23:48:35 +000065 Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond");
Gabor Greife9ecc682008-04-06 20:25:17 +000066 BranchInst::Create(RetBB, RecurseBB, CondInst, BB);
Chris Lattnerbd2886d2004-11-03 21:43:03 +000067
68 // Create: ret int 1
Owen Anderson55f1c092009-08-13 21:58:54 +000069 ReturnInst::Create(Context, One, RetBB);
Misha Brukman2f72baf2005-04-20 16:42:34 +000070
Chris Lattnerbd2886d2004-11-03 21:43:03 +000071 // create fib(x-1)
Gabor Greife1f6e4b2008-05-16 19:29:10 +000072 Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB);
Gabor Greife9ecc682008-04-06 20:25:17 +000073 CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB);
Chris Lattner5879f9c2005-05-06 06:21:59 +000074 CallFibX1->setTailCall();
Misha Brukman2f72baf2005-04-20 16:42:34 +000075
Chris Lattnerbd2886d2004-11-03 21:43:03 +000076 // create fib(x-2)
Gabor Greife1f6e4b2008-05-16 19:29:10 +000077 Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB);
Gabor Greife9ecc682008-04-06 20:25:17 +000078 CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB);
Chris Lattner5879f9c2005-05-06 06:21:59 +000079 CallFibX2->setTailCall();
Chris Lattnereaf625d2005-05-06 05:59:50 +000080
Chris Lattnerbd2886d2004-11-03 21:43:03 +000081
82 // fib(x-1)+fib(x-2)
Gabor Greife1f6e4b2008-05-16 19:29:10 +000083 Value *Sum = BinaryOperator::CreateAdd(CallFibX1, CallFibX2,
Chris Lattnerbd2886d2004-11-03 21:43:03 +000084 "addresult", RecurseBB);
Misha Brukman2f72baf2005-04-20 16:42:34 +000085
Chris Lattnerbd2886d2004-11-03 21:43:03 +000086 // Create the return instruction and add it to the basic block
Owen Anderson55f1c092009-08-13 21:58:54 +000087 ReturnInst::Create(Context, Sum, RecurseBB);
Chris Lattnerbd2886d2004-11-03 21:43:03 +000088
89 return FibF;
90}
91
92
93int main(int argc, char **argv) {
94 int n = argc > 1 ? atol(argv[1]) : 24;
Reid Spencerf30f28e2004-08-19 20:10:04 +000095
Chris Lattner4ba8e5d2009-12-01 01:56:27 +000096 InitializeNativeTarget();
Owen Anderson6773d382009-07-01 16:58:40 +000097 LLVMContext Context;
98
Reid Spencerf30f28e2004-08-19 20:10:04 +000099 // Create some module to put our function into it.
Owen Anderson1cf085d2009-07-01 21:22:36 +0000100 Module *M = new Module("test", Context);
Reid Spencerf30f28e2004-08-19 20:10:04 +0000101
Reid Spencerf30f28e2004-08-19 20:10:04 +0000102 // We are about to create the "fib" function:
Owen Andersonb6b25302009-07-14 23:09:55 +0000103 Function *FibF = CreateFibFunction(M, Context);
Reid Spencerf30f28e2004-08-19 20:10:04 +0000104
Misha Brukman2f72baf2005-04-20 16:42:34 +0000105 // Now we going to create JIT
Chris Lattner4ba8e5d2009-12-01 01:56:27 +0000106 std::string errStr;
107 ExecutionEngine *EE = EngineBuilder(M).setErrorStr(&errStr).setEngineKind(EngineKind::JIT).create();
108
109 if (!EE) {
110 errs() << argv[0] << ": Failed to construct ExecutionEngine: " << errStr << "\n";
111 return 1;
112 }
Reid Spencerf30f28e2004-08-19 20:10:04 +0000113
Chris Lattner0c19df42008-08-23 22:23:09 +0000114 errs() << "verifying... ";
Reid Spencerf30f28e2004-08-19 20:10:04 +0000115 if (verifyModule(*M)) {
Chris Lattner0c19df42008-08-23 22:23:09 +0000116 errs() << argv[0] << ": Error constructing function!\n";
Reid Spencerf30f28e2004-08-19 20:10:04 +0000117 return 1;
118 }
Reid Spencerf30f28e2004-08-19 20:10:04 +0000119
Chris Lattner0c19df42008-08-23 22:23:09 +0000120 errs() << "OK\n";
121 errs() << "We just constructed this LLVM module:\n\n---------\n" << *M;
122 errs() << "---------\nstarting fibonacci(" << n << ") with JIT...\n";
Reid Spencerf30f28e2004-08-19 20:10:04 +0000123
Misha Brukmana73e7ca2004-11-05 04:11:40 +0000124 // Call the Fibonacci function with argument n:
Chris Lattnerbd2886d2004-11-03 21:43:03 +0000125 std::vector<GenericValue> Args(1);
Reid Spencer8a9ae482007-03-06 17:24:31 +0000126 Args[0].IntVal = APInt(32, n);
Chris Lattnerbd2886d2004-11-03 21:43:03 +0000127 GenericValue GV = EE->runFunction(FibF, Args);
Reid Spencerf30f28e2004-08-19 20:10:04 +0000128
Chris Lattnerbd2886d2004-11-03 21:43:03 +0000129 // import result of execution
Chris Lattner0c19df42008-08-23 22:23:09 +0000130 outs() << "Result: " << GV.IntVal << "\n";
Reid Spencerf30f28e2004-08-19 20:10:04 +0000131 return 0;
132}