Reid Spencer | 66e7cd0 | 2004-09-11 20:30:11 +0000 | [diff] [blame] | 1 | //===--- examples/Fibonacci/fibonacci.cpp - An example use of the JIT -----===// |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 2 | // |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | fc001bb | 2007-12-29 20:37:57 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 7 | // |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 10 | // 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 Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 12 | // |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 13 | // The goal of this snippet is to create in the memory the LLVM module |
| 14 | // consisting of one function as follow: |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 15 | // |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 16 | // int fib(int x) { |
| 17 | // if(x<=2) return 1; |
| 18 | // return fib(x-1)+fib(x-2); |
| 19 | // } |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 20 | // |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 21 | // Once we have this, we compile the module via JIT, then execute the `fib' |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 22 | // function and return result to a driver, i.e. to a "host program". |
| 23 | // |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 24 | //===----------------------------------------------------------------------===// |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 25 | |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 26 | #include "llvm/LLVMContext.h" |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 27 | #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 Cohen | afebb44 | 2006-03-24 03:11:31 +0000 | [diff] [blame] | 33 | #include "llvm/ExecutionEngine/JIT.h" |
| 34 | #include "llvm/ExecutionEngine/Interpreter.h" |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 35 | #include "llvm/ExecutionEngine/GenericValue.h" |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 36 | #include "llvm/Support/raw_ostream.h" |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 37 | using namespace llvm; |
| 38 | |
Owen Anderson | 9adc0ab | 2009-07-14 23:09:55 +0000 | [diff] [blame] | 39 | static Function *CreateFibFunction(Module *M, LLVMContext &Context) { |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 40 | // 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 Lattner | 6a98754 | 2007-01-07 07:40:09 +0000 | [diff] [blame] | 42 | Function *FibF = |
| 43 | cast<Function>(M->getOrInsertFunction("fib", Type::Int32Ty, Type::Int32Ty, |
| 44 | (Type *)0)); |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 45 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 46 | // Add a basic block to the function. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 47 | BasicBlock *BB = BasicBlock::Create("EntryBlock", FibF); |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 48 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 49 | // Get pointers to the constants. |
Owen Anderson | 9adc0ab | 2009-07-14 23:09:55 +0000 | [diff] [blame] | 50 | Value *One = Context.getConstantInt(Type::Int32Ty, 1); |
| 51 | Value *Two = Context.getConstantInt(Type::Int32Ty, 2); |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 52 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 53 | // Get pointer to the integer argument of the add1 function... |
Alkis Evlogimenos | dadf881 | 2005-03-15 07:12:30 +0000 | [diff] [blame] | 54 | Argument *ArgX = FibF->arg_begin(); // Get the arg. |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 55 | ArgX->setName("AnArg"); // Give it a nice symbolic name for fun. |
| 56 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 57 | // Create the true_block. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 58 | BasicBlock *RetBB = BasicBlock::Create("return", FibF); |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 59 | // Create an exit block. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 60 | BasicBlock* RecurseBB = BasicBlock::Create("recurse", FibF); |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 61 | |
Chris Lattner | 7520fcd | 2008-03-13 03:29:42 +0000 | [diff] [blame] | 62 | // Create the "if (arg <= 2) goto exitbb" |
Owen Anderson | 333c400 | 2009-07-09 23:48:35 +0000 | [diff] [blame] | 63 | Value *CondInst = new ICmpInst(*BB, ICmpInst::ICMP_SLE, ArgX, Two, "cond"); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 64 | BranchInst::Create(RetBB, RecurseBB, CondInst, BB); |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 65 | |
| 66 | // Create: ret int 1 |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 67 | ReturnInst::Create(One, RetBB); |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 68 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 69 | // create fib(x-1) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 70 | Value *Sub = BinaryOperator::CreateSub(ArgX, One, "arg", RecurseBB); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 71 | CallInst *CallFibX1 = CallInst::Create(FibF, Sub, "fibx1", RecurseBB); |
Chris Lattner | f6b5c1a | 2005-05-06 06:21:59 +0000 | [diff] [blame] | 72 | CallFibX1->setTailCall(); |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 73 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 74 | // create fib(x-2) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 75 | Sub = BinaryOperator::CreateSub(ArgX, Two, "arg", RecurseBB); |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 76 | CallInst *CallFibX2 = CallInst::Create(FibF, Sub, "fibx2", RecurseBB); |
Chris Lattner | f6b5c1a | 2005-05-06 06:21:59 +0000 | [diff] [blame] | 77 | CallFibX2->setTailCall(); |
Chris Lattner | 47968e4 | 2005-05-06 05:59:50 +0000 | [diff] [blame] | 78 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 79 | |
| 80 | // fib(x-1)+fib(x-2) |
Gabor Greif | 7cbd8a3 | 2008-05-16 19:29:10 +0000 | [diff] [blame] | 81 | Value *Sum = BinaryOperator::CreateAdd(CallFibX1, CallFibX2, |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 82 | "addresult", RecurseBB); |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 83 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 84 | // Create the return instruction and add it to the basic block |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 85 | ReturnInst::Create(Sum, RecurseBB); |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 86 | |
| 87 | return FibF; |
| 88 | } |
| 89 | |
| 90 | |
| 91 | int main(int argc, char **argv) { |
| 92 | int n = argc > 1 ? atol(argv[1]) : 24; |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 93 | |
Owen Anderson | 8b477ed | 2009-07-01 16:58:40 +0000 | [diff] [blame] | 94 | LLVMContext Context; |
| 95 | |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 96 | // Create some module to put our function into it. |
Owen Anderson | 31895e7 | 2009-07-01 21:22:36 +0000 | [diff] [blame] | 97 | Module *M = new Module("test", Context); |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 98 | |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 99 | // We are about to create the "fib" function: |
Owen Anderson | 9adc0ab | 2009-07-14 23:09:55 +0000 | [diff] [blame] | 100 | Function *FibF = CreateFibFunction(M, Context); |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 101 | |
Misha Brukman | 237cef4 | 2005-04-20 16:42:34 +0000 | [diff] [blame] | 102 | // Now we going to create JIT |
Reid Kleckner | 4b1511b | 2009-07-18 00:42:18 +0000 | [diff] [blame^] | 103 | ExecutionEngine *EE = EngineBuilder(M).create(); |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 104 | |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 105 | errs() << "verifying... "; |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 106 | if (verifyModule(*M)) { |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 107 | errs() << argv[0] << ": Error constructing function!\n"; |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 108 | return 1; |
| 109 | } |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 110 | |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 111 | errs() << "OK\n"; |
| 112 | errs() << "We just constructed this LLVM module:\n\n---------\n" << *M; |
| 113 | errs() << "---------\nstarting fibonacci(" << n << ") with JIT...\n"; |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 114 | |
Misha Brukman | 7cf540b | 2004-11-05 04:11:40 +0000 | [diff] [blame] | 115 | // Call the Fibonacci function with argument n: |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 116 | std::vector<GenericValue> Args(1); |
Reid Spencer | 34bd70d | 2007-03-06 17:24:31 +0000 | [diff] [blame] | 117 | Args[0].IntVal = APInt(32, n); |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 118 | GenericValue GV = EE->runFunction(FibF, Args); |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 119 | |
Chris Lattner | 38f024d | 2004-11-03 21:43:03 +0000 | [diff] [blame] | 120 | // import result of execution |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 121 | outs() << "Result: " << GV.IntVal << "\n"; |
Reid Spencer | e784fa4 | 2004-08-19 20:10:04 +0000 | [diff] [blame] | 122 | return 0; |
| 123 | } |