blob: c11a58067e8dcfac30074dc91ce0210c7d1a0125 [file] [log] [blame]
Chris Lattnerbef8e0b2007-09-12 18:24:00 +00001//===-- BrainFDriver.cpp - BrainF compiler driver -----------------------===//
2//
3// 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.
Chris Lattnerbef8e0b2007-09-12 18:24:00 +00007//
8//===--------------------------------------------------------------------===//
9//
10// This program converts the BrainF language into LLVM assembly,
11// which it can then run using the JIT or output as BitCode.
12//
13// This implementation has a tape of 65536 bytes,
14// with the head starting in the middle.
15// Range checking is off by default, so be careful.
16// It can be enabled with -abc.
17//
18// Use:
19// ./BrainF -jit prog.bf #Run program now
20// ./BrainF -jit -abc prog.bf #Run program now safely
21// ./BrainF prog.bf #Write as BitCode
22//
23// lli prog.bf.bc #Run generated BitCode
24// llvm-ld -native -o=prog prog.bf.bc #Compile BitCode into native executable
25//
26//===--------------------------------------------------------------------===//
27
28#include "BrainF.h"
29#include "llvm/Constants.h"
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000030#include "llvm/Analysis/Verifier.h"
31#include "llvm/Bitcode/ReaderWriter.h"
32#include "llvm/ExecutionEngine/GenericValue.h"
33#include "llvm/ExecutionEngine/JIT.h"
Chris Lattnerb515d752009-08-23 07:49:08 +000034#include "llvm/Target/TargetSelect.h"
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000035#include "llvm/Support/CommandLine.h"
36#include "llvm/Support/ManagedStatic.h"
Chris Lattnerb515d752009-08-23 07:49:08 +000037#include "llvm/Support/raw_ostream.h"
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000038#include <iostream>
Chris Lattnerb515d752009-08-23 07:49:08 +000039#include <fstream>
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000040using namespace llvm;
41
42//Command line options
43
44static cl::opt<std::string>
45InputFilename(cl::Positional, cl::desc("<input brainf>"));
46
47static cl::opt<std::string>
48OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"));
49
50static cl::opt<bool>
51ArrayBoundsChecking("abc", cl::desc("Enable array bounds checking"));
52
53static cl::opt<bool>
54JIT("jit", cl::desc("Run program Just-In-Time"));
55
56
57//Add main function so can be fully compiled
58void addMainFunction(Module *mod) {
59 //define i32 @main(i32 %argc, i8 **%argv)
60 Function *main_func = cast<Function>(mod->
Owen Anderson1d0be152009-08-13 21:58:54 +000061 getOrInsertFunction("main", IntegerType::getInt32Ty(mod->getContext()),
62 IntegerType::getInt32Ty(mod->getContext()),
Christopher Lamb43ad6b32007-12-17 01:12:55 +000063 PointerType::getUnqual(PointerType::getUnqual(
Owen Anderson1d0be152009-08-13 21:58:54 +000064 IntegerType::getInt8Ty(mod->getContext()))), NULL));
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000065 {
66 Function::arg_iterator args = main_func->arg_begin();
67 Value *arg_0 = args++;
68 arg_0->setName("argc");
69 Value *arg_1 = args++;
70 arg_1->setName("argv");
71 }
72
73 //main.0:
Owen Anderson1d0be152009-08-13 21:58:54 +000074 BasicBlock *bb = BasicBlock::Create(mod->getContext(), "main.0", main_func);
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000075
76 //call void @brainf()
77 {
Gabor Greif051a9502008-04-06 20:25:17 +000078 CallInst *brainf_call = CallInst::Create(mod->getFunction("brainf"),
79 "", bb);
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000080 brainf_call->setTailCall(false);
81 }
82
83 //ret i32 0
Owen Anderson1d0be152009-08-13 21:58:54 +000084 ReturnInst::Create(mod->getContext(),
85 ConstantInt::get(mod->getContext(), APInt(32, 0)), bb);
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000086}
87
88int main(int argc, char **argv) {
89 cl::ParseCommandLineOptions(argc, argv, " BrainF compiler\n");
90
Owen Anderson001dbfe2009-07-16 18:04:31 +000091 LLVMContext &Context = getGlobalContext();
Owen Anderson8b477ed2009-07-01 16:58:40 +000092
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000093 if (InputFilename == "") {
Chris Lattnerb515d752009-08-23 07:49:08 +000094 errs() << "Error: You must specify the filename of the program to "
Chris Lattneref5dc362008-08-23 22:00:15 +000095 "be compiled. Use --help to see the options.\n";
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000096 abort();
97 }
98
99 //Get the output stream
Chris Lattnerb515d752009-08-23 07:49:08 +0000100 raw_ostream *out = &outs();
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000101 if (!JIT) {
102 if (OutputFilename == "") {
103 std::string base = InputFilename;
Chris Lattnerb515d752009-08-23 07:49:08 +0000104 if (InputFilename == "-") { base = "a"; }
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000105
Chris Lattnerb515d752009-08-23 07:49:08 +0000106 // Use default filename.
107 OutputFilename = base+".bc";
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000108 }
109 if (OutputFilename != "-") {
Chris Lattnerb515d752009-08-23 07:49:08 +0000110 std::string ErrInfo;
111 out = new raw_fd_ostream(OutputFilename.c_str(), ErrInfo,
Chris Lattnerb515d752009-08-23 07:49:08 +0000112 raw_fd_ostream::F_Binary);
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000113 }
114 }
115
116 //Get the input stream
117 std::istream *in = &std::cin;
Chris Lattnerb515d752009-08-23 07:49:08 +0000118 if (InputFilename != "-")
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000119 in = new std::ifstream(InputFilename.c_str());
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000120
121 //Gather the compile flags
122 BrainF::CompileFlags cf = BrainF::flag_off;
Chris Lattnerb515d752009-08-23 07:49:08 +0000123 if (ArrayBoundsChecking)
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000124 cf = BrainF::CompileFlags(cf | BrainF::flag_arraybounds);
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000125
126 //Read the BrainF program
127 BrainF bf;
Owen Anderson31895e72009-07-01 21:22:36 +0000128 Module *mod = bf.parse(in, 65536, cf, Context); //64 KiB
Chris Lattnerb515d752009-08-23 07:49:08 +0000129 if (in != &std::cin)
130 delete in;
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000131 addMainFunction(mod);
132
133 //Verify generated code
134 if (verifyModule(*mod)) {
Chris Lattnerb515d752009-08-23 07:49:08 +0000135 errs() << "Error: module failed verification. This shouldn't happen.\n";
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000136 abort();
137 }
138
139 //Write it out
140 if (JIT) {
Chris Lattnerda062882009-06-17 16:48:44 +0000141 InitializeNativeTarget();
142
Chris Lattnerb515d752009-08-23 07:49:08 +0000143 outs() << "------- Running JIT -------\n";
Reid Kleckner4b1511b2009-07-18 00:42:18 +0000144 ExecutionEngine *ee = EngineBuilder(mod).create();
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000145 std::vector<GenericValue> args;
146 Function *brainf_func = mod->getFunction("brainf");
147 GenericValue gv = ee->runFunction(brainf_func, args);
148 } else {
149 WriteBitcodeToFile(mod, *out);
150 }
151
152 //Clean up
Chris Lattnerb515d752009-08-23 07:49:08 +0000153 if (out != &outs())
154 delete out;
Chris Lattnerbef8e0b2007-09-12 18:24:00 +0000155 delete mod;
156
157 llvm_shutdown();
158
159 return 0;
160}