blob: d21d3bb8913923f763cb4ef897b5b8dbe513ee1f [file] [log] [blame]
Chris Lattnerbef8e0b2007-09-12 18:24:00 +00001//===-- BrainF.h - BrainF compiler class ----------------------*- C++ -*-===//
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 class stores the data for the BrainF compiler so it doesn't have
11// to pass all of it around. The main method is parse.
12//
13//===--------------------------------------------------------------------===//
14
15#ifndef BRAINF_H
16#define BRAINF_H
17
Owen Anderson8b477ed2009-07-01 16:58:40 +000018#include "llvm/LLVMContext.h"
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000019#include "llvm/Module.h"
Duncan Sands89f6d882008-04-13 06:22:09 +000020#include "llvm/Support/IRBuilder.h"
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000021
22using namespace llvm;
23
24/// This class provides a parser for the BrainF language.
25/// The class itself is made to store values during
26/// parsing so they don't have to be passed around
27/// as much.
28class BrainF {
29 public:
30 /// Options for how BrainF should compile
31 enum CompileFlags {
32 flag_off = 0,
33 flag_arraybounds = 1
34 };
35
36 /// This is the main method. It parses BrainF from in1
37 /// and returns the module with a function
38 /// void brainf()
39 /// containing the resulting code.
40 /// On error, it calls abort.
41 /// The caller must delete the returned module.
Owen Anderson31895e72009-07-01 21:22:36 +000042 Module *parse(std::istream *in1, int mem, CompileFlags cf,
43 const LLVMContext& C);
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000044
45 protected:
46 /// The different symbols in the BrainF language
47 enum Symbol {
48 SYM_NONE,
49 SYM_READ,
50 SYM_WRITE,
51 SYM_MOVE,
52 SYM_CHANGE,
53 SYM_LOOP,
54 SYM_ENDLOOP,
55 SYM_EOF
56 };
57
58 /// Names of the different parts of the language.
59 /// Tape is used for reading and writing the tape.
60 /// headreg is used for the position of the head.
61 /// label is used for the labels for the BasicBlocks.
62 /// testreg is used for testing the loop exit condition.
63 static const char *tapereg;
64 static const char *headreg;
65 static const char *label;
66 static const char *testreg;
67
68 /// Put the brainf function preamble and other fixed pieces of code
Owen Anderson31895e72009-07-01 21:22:36 +000069 void header(const LLVMContext& C);
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000070
71 /// The main loop for parsing. It calls itself recursively
72 /// to handle the depth of nesting of "[]".
73 void readloop(PHINode *phi, BasicBlock *oldbb, BasicBlock *testbb);
74
75 /// Constants during parsing
76 int memtotal;
77 CompileFlags comflag;
78 std::istream *in;
79 Module *module;
80 Function *brainf_func;
81 Function *getchar_func;
82 Function *putchar_func;
83 Value *ptr_arr;
84 Value *ptr_arrmax;
85 BasicBlock *endbb;
86 BasicBlock *aberrorbb;
87
88 /// Variables
Eric Christopher7a61d702008-08-08 19:39:37 +000089 IRBuilder<> *builder;
Chris Lattnerbef8e0b2007-09-12 18:24:00 +000090 Value *curhead;
91};
92
93#endif