NAKAMURA Takumi | 85c9bac | 2015-03-02 01:04:34 +0000 | [diff] [blame] | 1 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 17e0bc3 | 2015-08-06 07:33:15 +0000 | [diff] [blame] | 2 | #include "llvm/Analysis/BasicAliasAnalysis.h" |
Chandler Carruth | 605e30e | 2012-12-04 10:16:57 +0000 | [diff] [blame] | 3 | #include "llvm/Analysis/Passes.h" |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 4 | #include "llvm/ExecutionEngine/ExecutionEngine.h" |
Eric Christopher | 1b74b65 | 2014-12-08 18:00:38 +0000 | [diff] [blame] | 5 | #include "llvm/ExecutionEngine/MCJIT.h" |
| 6 | #include "llvm/ExecutionEngine/SectionMemoryManager.h" |
Chandler Carruth | 005f27a | 2013-01-02 11:56:33 +0000 | [diff] [blame] | 7 | #include "llvm/IR/DataLayout.h" |
| 8 | #include "llvm/IR/DerivedTypes.h" |
| 9 | #include "llvm/IR/IRBuilder.h" |
| 10 | #include "llvm/IR/LLVMContext.h" |
Chandler Carruth | 30d69c2 | 2015-02-13 10:01:29 +0000 | [diff] [blame] | 11 | #include "llvm/IR/LegacyPassManager.h" |
Chandler Carruth | 005f27a | 2013-01-02 11:56:33 +0000 | [diff] [blame] | 12 | #include "llvm/IR/Module.h" |
Chandler Carruth | 20d4e6b | 2014-01-13 09:58:03 +0000 | [diff] [blame] | 13 | #include "llvm/IR/Verifier.h" |
Evan Cheng | 2bb4035 | 2011-08-24 18:08:43 +0000 | [diff] [blame] | 14 | #include "llvm/Support/TargetSelect.h" |
Chandler Carruth | 605e30e | 2012-12-04 10:16:57 +0000 | [diff] [blame] | 15 | #include "llvm/Transforms/Scalar.h" |
Will Dietz | 981af00 | 2013-10-12 00:55:57 +0000 | [diff] [blame] | 16 | #include <cctype> |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 17 | #include <cstdio> |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 18 | #include <map> |
Chandler Carruth | 605e30e | 2012-12-04 10:16:57 +0000 | [diff] [blame] | 19 | #include <string> |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 20 | #include <vector> |
| 21 | using namespace llvm; |
| 22 | |
| 23 | //===----------------------------------------------------------------------===// |
| 24 | // Lexer |
| 25 | //===----------------------------------------------------------------------===// |
| 26 | |
| 27 | // The lexer returns tokens [0-255] if it is an unknown character, otherwise one |
| 28 | // of these for known things. |
| 29 | enum Token { |
| 30 | tok_eof = -1, |
| 31 | |
| 32 | // commands |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 33 | tok_def = -2, |
| 34 | tok_extern = -3, |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 35 | |
| 36 | // primary |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 37 | tok_identifier = -4, |
| 38 | tok_number = -5, |
| 39 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 40 | // control |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 41 | tok_if = -6, |
| 42 | tok_then = -7, |
| 43 | tok_else = -8, |
| 44 | tok_for = -9, |
| 45 | tok_in = -10, |
| 46 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 47 | // operators |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 48 | tok_binary = -11, |
| 49 | tok_unary = -12, |
| 50 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 51 | // var definition |
| 52 | tok_var = -13 |
| 53 | }; |
| 54 | |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 55 | static std::string IdentifierStr; // Filled in if tok_identifier |
| 56 | static double NumVal; // Filled in if tok_number |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 57 | |
| 58 | /// gettok - Return the next token from standard input. |
| 59 | static int gettok() { |
| 60 | static int LastChar = ' '; |
| 61 | |
| 62 | // Skip any whitespace. |
| 63 | while (isspace(LastChar)) |
| 64 | LastChar = getchar(); |
| 65 | |
| 66 | if (isalpha(LastChar)) { // identifier: [a-zA-Z][a-zA-Z0-9]* |
| 67 | IdentifierStr = LastChar; |
| 68 | while (isalnum((LastChar = getchar()))) |
| 69 | IdentifierStr += LastChar; |
| 70 | |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 71 | if (IdentifierStr == "def") |
| 72 | return tok_def; |
| 73 | if (IdentifierStr == "extern") |
| 74 | return tok_extern; |
| 75 | if (IdentifierStr == "if") |
| 76 | return tok_if; |
| 77 | if (IdentifierStr == "then") |
| 78 | return tok_then; |
| 79 | if (IdentifierStr == "else") |
| 80 | return tok_else; |
| 81 | if (IdentifierStr == "for") |
| 82 | return tok_for; |
| 83 | if (IdentifierStr == "in") |
| 84 | return tok_in; |
| 85 | if (IdentifierStr == "binary") |
| 86 | return tok_binary; |
| 87 | if (IdentifierStr == "unary") |
| 88 | return tok_unary; |
| 89 | if (IdentifierStr == "var") |
| 90 | return tok_var; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 91 | return tok_identifier; |
| 92 | } |
| 93 | |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 94 | if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+ |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 95 | std::string NumStr; |
| 96 | do { |
| 97 | NumStr += LastChar; |
| 98 | LastChar = getchar(); |
| 99 | } while (isdigit(LastChar) || LastChar == '.'); |
| 100 | |
| 101 | NumVal = strtod(NumStr.c_str(), 0); |
| 102 | return tok_number; |
| 103 | } |
| 104 | |
| 105 | if (LastChar == '#') { |
| 106 | // Comment until end of line. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 107 | do |
| 108 | LastChar = getchar(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 109 | while (LastChar != EOF && LastChar != '\n' && LastChar != '\r'); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 110 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 111 | if (LastChar != EOF) |
| 112 | return gettok(); |
| 113 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 114 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 115 | // Check for end of file. Don't eat the EOF. |
| 116 | if (LastChar == EOF) |
| 117 | return tok_eof; |
| 118 | |
| 119 | // Otherwise, just return the character as its ascii value. |
| 120 | int ThisChar = LastChar; |
| 121 | LastChar = getchar(); |
| 122 | return ThisChar; |
| 123 | } |
| 124 | |
| 125 | //===----------------------------------------------------------------------===// |
| 126 | // Abstract Syntax Tree (aka Parse Tree) |
| 127 | //===----------------------------------------------------------------------===// |
Juergen Ributzka | 05c5a93 | 2013-11-19 03:08:35 +0000 | [diff] [blame] | 128 | namespace { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 129 | /// ExprAST - Base class for all expression nodes. |
| 130 | class ExprAST { |
| 131 | public: |
Juergen Ributzka | 05c5a93 | 2013-11-19 03:08:35 +0000 | [diff] [blame] | 132 | virtual ~ExprAST() {} |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 133 | virtual Value *Codegen() = 0; |
| 134 | }; |
| 135 | |
| 136 | /// NumberExprAST - Expression class for numeric literals like "1.0". |
| 137 | class NumberExprAST : public ExprAST { |
| 138 | double Val; |
| 139 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 140 | NumberExprAST(double Val) : Val(Val) {} |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 141 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | /// VariableExprAST - Expression class for referencing a variable, like "a". |
| 145 | class VariableExprAST : public ExprAST { |
| 146 | std::string Name; |
| 147 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 148 | VariableExprAST(const std::string &Name) : Name(Name) {} |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 149 | const std::string &getName() const { return Name; } |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 150 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 151 | }; |
| 152 | |
| 153 | /// UnaryExprAST - Expression class for a unary operator. |
| 154 | class UnaryExprAST : public ExprAST { |
| 155 | char Opcode; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 156 | std::unique_ptr<ExprAST> Operand; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 157 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 158 | UnaryExprAST(char Opcode, std::unique_ptr<ExprAST> Operand) |
| 159 | : Opcode(Opcode), Operand(std::move(Operand)) {} |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 160 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 161 | }; |
| 162 | |
| 163 | /// BinaryExprAST - Expression class for a binary operator. |
| 164 | class BinaryExprAST : public ExprAST { |
| 165 | char Op; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 166 | std::unique_ptr<ExprAST> LHS, RHS; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 167 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 168 | BinaryExprAST(char Op, std::unique_ptr<ExprAST> LHS, |
| 169 | std::unique_ptr<ExprAST> RHS) |
| 170 | : Op(Op), LHS(std::move(LHS)), RHS(std::move(RHS)) {} |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 171 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 172 | }; |
| 173 | |
| 174 | /// CallExprAST - Expression class for function calls. |
| 175 | class CallExprAST : public ExprAST { |
| 176 | std::string Callee; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 177 | std::vector<std::unique_ptr<ExprAST>> Args; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 178 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 179 | CallExprAST(const std::string &Callee, |
| 180 | std::vector<std::unique_ptr<ExprAST>> Args) |
| 181 | : Callee(Callee), Args(std::move(Args)) {} |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 182 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 183 | }; |
| 184 | |
| 185 | /// IfExprAST - Expression class for if/then/else. |
| 186 | class IfExprAST : public ExprAST { |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 187 | std::unique_ptr<ExprAST> Cond, Then, Else; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 188 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 189 | IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, |
| 190 | std::unique_ptr<ExprAST> Else) |
| 191 | : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 192 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 193 | }; |
| 194 | |
| 195 | /// ForExprAST - Expression class for for/in. |
| 196 | class ForExprAST : public ExprAST { |
| 197 | std::string VarName; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 198 | std::unique_ptr<ExprAST> Start, End, Step, Body; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 199 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 200 | ForExprAST(const std::string &VarName, std::unique_ptr<ExprAST> Start, |
| 201 | std::unique_ptr<ExprAST> End, std::unique_ptr<ExprAST> Step, |
| 202 | std::unique_ptr<ExprAST> Body) |
| 203 | : VarName(VarName), Start(std::move(Start)), End(std::move(End)), |
| 204 | Step(std::move(Step)), Body(std::move(Body)) {} |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 205 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 206 | }; |
| 207 | |
| 208 | /// VarExprAST - Expression class for var/in |
| 209 | class VarExprAST : public ExprAST { |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 210 | std::vector<std::pair<std::string, std::unique_ptr<ExprAST>>> VarNames; |
| 211 | std::unique_ptr<ExprAST> Body; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 212 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 213 | VarExprAST(std::vector<std::pair<std::string, std::unique_ptr<ExprAST>>> VarNames, |
| 214 | std::unique_ptr<ExprAST> Body) |
| 215 | : VarNames(std::move(VarNames)), Body(std::move(Body)) {} |
Alexander Kornienko | f817c1c | 2015-04-11 02:11:45 +0000 | [diff] [blame] | 216 | Value *Codegen() override; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 217 | }; |
| 218 | |
| 219 | /// PrototypeAST - This class represents the "prototype" for a function, |
| 220 | /// which captures its argument names as well as if it is an operator. |
| 221 | class PrototypeAST { |
| 222 | std::string Name; |
| 223 | std::vector<std::string> Args; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 224 | bool IsOperator; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 225 | unsigned Precedence; // Precedence if a binary op. |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 226 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 227 | PrototypeAST(const std::string &Name, std::vector<std::string> Args, |
| 228 | bool IsOperator = false, unsigned Prec = 0) |
| 229 | : Name(Name), Args(std::move(Args)), IsOperator(IsOperator), |
| 230 | Precedence(Prec) {} |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 231 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 232 | bool isUnaryOp() const { return IsOperator && Args.size() == 1; } |
| 233 | bool isBinaryOp() const { return IsOperator && Args.size() == 2; } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 234 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 235 | char getOperatorName() const { |
| 236 | assert(isUnaryOp() || isBinaryOp()); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 237 | return Name[Name.size() - 1]; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 238 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 239 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 240 | unsigned getBinaryPrecedence() const { return Precedence; } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 241 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 242 | Function *Codegen(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 243 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 244 | void CreateArgumentAllocas(Function *F); |
| 245 | }; |
| 246 | |
| 247 | /// FunctionAST - This class represents a function definition itself. |
| 248 | class FunctionAST { |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 249 | std::unique_ptr<PrototypeAST> Proto; |
| 250 | std::unique_ptr<ExprAST> Body; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 251 | public: |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 252 | FunctionAST(std::unique_ptr<PrototypeAST> Proto, std::unique_ptr<ExprAST> Body) |
| 253 | : Proto(std::move(Proto)), Body(std::move(Body)) {} |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 254 | Function *Codegen(); |
| 255 | }; |
Juergen Ributzka | 05c5a93 | 2013-11-19 03:08:35 +0000 | [diff] [blame] | 256 | } // end anonymous namespace |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 257 | |
| 258 | //===----------------------------------------------------------------------===// |
| 259 | // Parser |
| 260 | //===----------------------------------------------------------------------===// |
| 261 | |
| 262 | /// CurTok/getNextToken - Provide a simple token buffer. CurTok is the current |
Erick Tryzelaar | 6e2b34bc | 2009-09-22 21:14:49 +0000 | [diff] [blame] | 263 | /// token the parser is looking at. getNextToken reads another token from the |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 264 | /// lexer and updates CurTok with its results. |
| 265 | static int CurTok; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 266 | static int getNextToken() { return CurTok = gettok(); } |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 267 | |
| 268 | /// BinopPrecedence - This holds the precedence for each binary operator that is |
| 269 | /// defined. |
| 270 | static std::map<char, int> BinopPrecedence; |
| 271 | |
| 272 | /// GetTokPrecedence - Get the precedence of the pending binary operator token. |
| 273 | static int GetTokPrecedence() { |
| 274 | if (!isascii(CurTok)) |
| 275 | return -1; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 276 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 277 | // Make sure it's a declared binop. |
| 278 | int TokPrec = BinopPrecedence[CurTok]; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 279 | if (TokPrec <= 0) |
| 280 | return -1; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 281 | return TokPrec; |
| 282 | } |
| 283 | |
| 284 | /// Error* - These are little helper functions for error handling. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 285 | std::unique_ptr<ExprAST> Error(const char *Str) { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 286 | fprintf(stderr, "Error: %s\n", Str); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 287 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 288 | } |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 289 | std::unique_ptr<PrototypeAST> ErrorP(const char *Str) { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 290 | Error(Str); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 291 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 292 | } |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 293 | std::unique_ptr<FunctionAST> ErrorF(const char *Str) { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 294 | Error(Str); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 295 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 296 | } |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 297 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 298 | static std::unique_ptr<ExprAST> ParseExpression(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 299 | |
| 300 | /// identifierexpr |
| 301 | /// ::= identifier |
| 302 | /// ::= identifier '(' expression* ')' |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 303 | static std::unique_ptr<ExprAST> ParseIdentifierExpr() { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 304 | std::string IdName = IdentifierStr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 305 | |
| 306 | getNextToken(); // eat identifier. |
| 307 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 308 | if (CurTok != '(') // Simple variable ref. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 309 | return llvm::make_unique<VariableExprAST>(IdName); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 310 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 311 | // Call. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 312 | getNextToken(); // eat ( |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 313 | std::vector<std::unique_ptr<ExprAST>> Args; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 314 | if (CurTok != ')') { |
| 315 | while (1) { |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 316 | if (auto Arg = ParseExpression()) |
| 317 | Args.push_back(std::move(Arg)); |
| 318 | else |
| 319 | return nullptr; |
Erick Tryzelaar | 6e2b34bc | 2009-09-22 21:14:49 +0000 | [diff] [blame] | 320 | |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 321 | if (CurTok == ')') |
| 322 | break; |
Erick Tryzelaar | 6e2b34bc | 2009-09-22 21:14:49 +0000 | [diff] [blame] | 323 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 324 | if (CurTok != ',') |
| 325 | return Error("Expected ')' or ',' in argument list"); |
| 326 | getNextToken(); |
| 327 | } |
| 328 | } |
| 329 | |
| 330 | // Eat the ')'. |
| 331 | getNextToken(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 332 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 333 | return llvm::make_unique<CallExprAST>(IdName, std::move(Args)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | /// numberexpr ::= number |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 337 | static std::unique_ptr<ExprAST> ParseNumberExpr() { |
| 338 | auto Result = llvm::make_unique<NumberExprAST>(NumVal); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 339 | getNextToken(); // consume the number |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 340 | return std::move(Result); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /// parenexpr ::= '(' expression ')' |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 344 | static std::unique_ptr<ExprAST> ParseParenExpr() { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 345 | getNextToken(); // eat (. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 346 | auto V = ParseExpression(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 347 | if (!V) |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 348 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 349 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 350 | if (CurTok != ')') |
| 351 | return Error("expected ')'"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 352 | getNextToken(); // eat ). |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 353 | return V; |
| 354 | } |
| 355 | |
| 356 | /// ifexpr ::= 'if' expression 'then' expression 'else' expression |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 357 | static std::unique_ptr<ExprAST> ParseIfExpr() { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 358 | getNextToken(); // eat the if. |
| 359 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 360 | // condition. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 361 | auto Cond = ParseExpression(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 362 | if (!Cond) |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 363 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 364 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 365 | if (CurTok != tok_then) |
| 366 | return Error("expected then"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 367 | getNextToken(); // eat the then |
| 368 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 369 | auto Then = ParseExpression(); |
| 370 | if (!Then) |
| 371 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 372 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 373 | if (CurTok != tok_else) |
| 374 | return Error("expected else"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 375 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 376 | getNextToken(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 377 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 378 | auto Else = ParseExpression(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 379 | if (!Else) |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 380 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 381 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 382 | return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), |
| 383 | std::move(Else)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | /// forexpr ::= 'for' identifier '=' expr ',' expr (',' expr)? 'in' expression |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 387 | static std::unique_ptr<ExprAST> ParseForExpr() { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 388 | getNextToken(); // eat the for. |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 389 | |
| 390 | if (CurTok != tok_identifier) |
| 391 | return Error("expected identifier after for"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 392 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 393 | std::string IdName = IdentifierStr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 394 | getNextToken(); // eat identifier. |
| 395 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 396 | if (CurTok != '=') |
| 397 | return Error("expected '=' after for"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 398 | getNextToken(); // eat '='. |
| 399 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 400 | auto Start = ParseExpression(); |
| 401 | if (!Start) |
| 402 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 403 | if (CurTok != ',') |
| 404 | return Error("expected ',' after for start value"); |
| 405 | getNextToken(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 406 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 407 | auto End = ParseExpression(); |
| 408 | if (!End) |
| 409 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 410 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 411 | // The step value is optional. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 412 | std::unique_ptr<ExprAST> Step; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 413 | if (CurTok == ',') { |
| 414 | getNextToken(); |
| 415 | Step = ParseExpression(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 416 | if (!Step) |
| 417 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 418 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 419 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 420 | if (CurTok != tok_in) |
| 421 | return Error("expected 'in' after for"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 422 | getNextToken(); // eat 'in'. |
| 423 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 424 | auto Body = ParseExpression(); |
| 425 | if (!Body) |
| 426 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 427 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 428 | return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End), |
| 429 | std::move(Step), std::move(Body)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 430 | } |
| 431 | |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 432 | /// varexpr ::= 'var' identifier ('=' expression)? |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 433 | // (',' identifier ('=' expression)?)* 'in' expression |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 434 | static std::unique_ptr<ExprAST> ParseVarExpr() { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 435 | getNextToken(); // eat the var. |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 436 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 437 | std::vector<std::pair<std::string, std::unique_ptr<ExprAST>>> VarNames; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 438 | |
| 439 | // At least one variable name is required. |
| 440 | if (CurTok != tok_identifier) |
| 441 | return Error("expected identifier after var"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 442 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 443 | while (1) { |
| 444 | std::string Name = IdentifierStr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 445 | getNextToken(); // eat identifier. |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 446 | |
| 447 | // Read the optional initializer. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 448 | std::unique_ptr<ExprAST> Init = nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 449 | if (CurTok == '=') { |
| 450 | getNextToken(); // eat the '='. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 451 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 452 | Init = ParseExpression(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 453 | if (!Init) |
| 454 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 455 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 456 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 457 | VarNames.push_back(std::make_pair(Name, std::move(Init))); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 458 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 459 | // End of var list, exit loop. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 460 | if (CurTok != ',') |
| 461 | break; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 462 | getNextToken(); // eat the ','. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 463 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 464 | if (CurTok != tok_identifier) |
| 465 | return Error("expected identifier list after var"); |
| 466 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 467 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 468 | // At this point, we have to have 'in'. |
| 469 | if (CurTok != tok_in) |
| 470 | return Error("expected 'in' keyword after 'var'"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 471 | getNextToken(); // eat 'in'. |
| 472 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 473 | auto Body = ParseExpression(); |
| 474 | if (!Body) |
| 475 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 476 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 477 | return llvm::make_unique<VarExprAST>(std::move(VarNames), std::move(Body)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 478 | } |
| 479 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 480 | /// primary |
| 481 | /// ::= identifierexpr |
| 482 | /// ::= numberexpr |
| 483 | /// ::= parenexpr |
| 484 | /// ::= ifexpr |
| 485 | /// ::= forexpr |
| 486 | /// ::= varexpr |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 487 | static std::unique_ptr<ExprAST> ParsePrimary() { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 488 | switch (CurTok) { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 489 | default: |
| 490 | return Error("unknown token when expecting an expression"); |
| 491 | case tok_identifier: |
| 492 | return ParseIdentifierExpr(); |
| 493 | case tok_number: |
| 494 | return ParseNumberExpr(); |
| 495 | case '(': |
| 496 | return ParseParenExpr(); |
| 497 | case tok_if: |
| 498 | return ParseIfExpr(); |
| 499 | case tok_for: |
| 500 | return ParseForExpr(); |
| 501 | case tok_var: |
| 502 | return ParseVarExpr(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 503 | } |
| 504 | } |
| 505 | |
| 506 | /// unary |
| 507 | /// ::= primary |
| 508 | /// ::= '!' unary |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 509 | static std::unique_ptr<ExprAST> ParseUnary() { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 510 | // If the current token is not an operator, it must be a primary expr. |
| 511 | if (!isascii(CurTok) || CurTok == '(' || CurTok == ',') |
| 512 | return ParsePrimary(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 513 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 514 | // If this is a unary operator, read it. |
| 515 | int Opc = CurTok; |
| 516 | getNextToken(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 517 | if (auto Operand = ParseUnary()) |
| 518 | return llvm::make_unique<UnaryExprAST>(Opc, std::move(Operand)); |
| 519 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 520 | } |
| 521 | |
| 522 | /// binoprhs |
| 523 | /// ::= ('+' unary)* |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 524 | static std::unique_ptr<ExprAST> ParseBinOpRHS(int ExprPrec, std::unique_ptr<ExprAST> LHS) { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 525 | // If this is a binop, find its precedence. |
| 526 | while (1) { |
| 527 | int TokPrec = GetTokPrecedence(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 528 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 529 | // If this is a binop that binds at least as tightly as the current binop, |
| 530 | // consume it, otherwise we are done. |
| 531 | if (TokPrec < ExprPrec) |
| 532 | return LHS; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 533 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 534 | // Okay, we know this is a binop. |
| 535 | int BinOp = CurTok; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 536 | getNextToken(); // eat binop |
| 537 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 538 | // Parse the unary expression after the binary operator. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 539 | auto RHS = ParseUnary(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 540 | if (!RHS) |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 541 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 542 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 543 | // If BinOp binds less tightly with RHS than the operator after RHS, let |
| 544 | // the pending operator take RHS as its LHS. |
| 545 | int NextPrec = GetTokPrecedence(); |
| 546 | if (TokPrec < NextPrec) { |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 547 | RHS = ParseBinOpRHS(TokPrec + 1, std::move(RHS)); |
| 548 | if (!RHS) |
| 549 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 550 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 551 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 552 | // Merge LHS/RHS. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 553 | LHS = llvm::make_unique<BinaryExprAST>(BinOp, std::move(LHS), std::move(RHS)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 554 | } |
| 555 | } |
| 556 | |
| 557 | /// expression |
| 558 | /// ::= unary binoprhs |
| 559 | /// |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 560 | static std::unique_ptr<ExprAST> ParseExpression() { |
| 561 | auto LHS = ParseUnary(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 562 | if (!LHS) |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 563 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 564 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 565 | return ParseBinOpRHS(0, std::move(LHS)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 566 | } |
| 567 | |
| 568 | /// prototype |
| 569 | /// ::= id '(' id* ')' |
| 570 | /// ::= binary LETTER number? (id, id) |
| 571 | /// ::= unary LETTER (id) |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 572 | static std::unique_ptr<PrototypeAST> ParsePrototype() { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 573 | std::string FnName; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 574 | |
Erick Tryzelaar | 6e2b34bc | 2009-09-22 21:14:49 +0000 | [diff] [blame] | 575 | unsigned Kind = 0; // 0 = identifier, 1 = unary, 2 = binary. |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 576 | unsigned BinaryPrecedence = 30; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 577 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 578 | switch (CurTok) { |
| 579 | default: |
| 580 | return ErrorP("Expected function name in prototype"); |
| 581 | case tok_identifier: |
| 582 | FnName = IdentifierStr; |
| 583 | Kind = 0; |
| 584 | getNextToken(); |
| 585 | break; |
| 586 | case tok_unary: |
| 587 | getNextToken(); |
| 588 | if (!isascii(CurTok)) |
| 589 | return ErrorP("Expected unary operator"); |
| 590 | FnName = "unary"; |
| 591 | FnName += (char)CurTok; |
| 592 | Kind = 1; |
| 593 | getNextToken(); |
| 594 | break; |
| 595 | case tok_binary: |
| 596 | getNextToken(); |
| 597 | if (!isascii(CurTok)) |
| 598 | return ErrorP("Expected binary operator"); |
| 599 | FnName = "binary"; |
| 600 | FnName += (char)CurTok; |
| 601 | Kind = 2; |
| 602 | getNextToken(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 603 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 604 | // Read the precedence if present. |
| 605 | if (CurTok == tok_number) { |
| 606 | if (NumVal < 1 || NumVal > 100) |
| 607 | return ErrorP("Invalid precedecnce: must be 1..100"); |
| 608 | BinaryPrecedence = (unsigned)NumVal; |
| 609 | getNextToken(); |
| 610 | } |
| 611 | break; |
| 612 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 613 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 614 | if (CurTok != '(') |
| 615 | return ErrorP("Expected '(' in prototype"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 616 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 617 | std::vector<std::string> ArgNames; |
| 618 | while (getNextToken() == tok_identifier) |
| 619 | ArgNames.push_back(IdentifierStr); |
| 620 | if (CurTok != ')') |
| 621 | return ErrorP("Expected ')' in prototype"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 622 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 623 | // success. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 624 | getNextToken(); // eat ')'. |
| 625 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 626 | // Verify right number of names for operator. |
| 627 | if (Kind && ArgNames.size() != Kind) |
| 628 | return ErrorP("Invalid number of operands for operator"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 629 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 630 | return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0, |
| 631 | BinaryPrecedence); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 632 | } |
| 633 | |
| 634 | /// definition ::= 'def' prototype expression |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 635 | static std::unique_ptr<FunctionAST> ParseDefinition() { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 636 | getNextToken(); // eat def. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 637 | auto Proto = ParsePrototype(); |
| 638 | if (!Proto) |
| 639 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 640 | |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 641 | if (auto E = ParseExpression()) |
| 642 | return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E)); |
| 643 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 644 | } |
| 645 | |
| 646 | /// toplevelexpr ::= expression |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 647 | static std::unique_ptr<FunctionAST> ParseTopLevelExpr() { |
| 648 | if (auto E = ParseExpression()) { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 649 | // Make an anonymous proto. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 650 | auto Proto = llvm::make_unique<PrototypeAST>("", std::vector<std::string>()); |
| 651 | return llvm::make_unique<FunctionAST>(std::move(Proto), std::move(E)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 652 | } |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 653 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 654 | } |
| 655 | |
| 656 | /// external ::= 'extern' prototype |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 657 | static std::unique_ptr<PrototypeAST> ParseExtern() { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 658 | getNextToken(); // eat extern. |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 659 | return ParsePrototype(); |
| 660 | } |
| 661 | |
| 662 | //===----------------------------------------------------------------------===// |
| 663 | // Code Generation |
| 664 | //===----------------------------------------------------------------------===// |
| 665 | |
| 666 | static Module *TheModule; |
Owen Anderson | a771459 | 2009-07-08 20:50:47 +0000 | [diff] [blame] | 667 | static IRBuilder<> Builder(getGlobalContext()); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 668 | static std::map<std::string, AllocaInst *> NamedValues; |
Chandler Carruth | 7ecd991 | 2015-02-13 10:21:05 +0000 | [diff] [blame] | 669 | static legacy::FunctionPassManager *TheFPM; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 670 | |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 671 | Value *ErrorV(const char *Str) { |
| 672 | Error(Str); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 673 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 674 | } |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 675 | |
| 676 | /// CreateEntryBlockAlloca - Create an alloca instruction in the entry block of |
| 677 | /// the function. This is used for mutable variables etc. |
| 678 | static AllocaInst *CreateEntryBlockAlloca(Function *TheFunction, |
| 679 | const std::string &VarName) { |
| 680 | IRBuilder<> TmpB(&TheFunction->getEntryBlock(), |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 681 | TheFunction->getEntryBlock().begin()); |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 682 | return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, |
| 683 | VarName.c_str()); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 684 | } |
| 685 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 686 | Value *NumberExprAST::Codegen() { |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 687 | return ConstantFP::get(getGlobalContext(), APFloat(Val)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 688 | } |
| 689 | |
| 690 | Value *VariableExprAST::Codegen() { |
| 691 | // Look this variable up in the function. |
| 692 | Value *V = NamedValues[Name]; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 693 | if (!V) |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 694 | return ErrorV("Unknown variable name"); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 695 | |
| 696 | // Load the value. |
| 697 | return Builder.CreateLoad(V, Name.c_str()); |
| 698 | } |
| 699 | |
| 700 | Value *UnaryExprAST::Codegen() { |
| 701 | Value *OperandV = Operand->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 702 | if (!OperandV) |
| 703 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 704 | |
| 705 | Function *F = TheModule->getFunction(std::string("unary") + Opcode); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 706 | if (!F) |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 707 | return ErrorV("Unknown unary operator"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 708 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 709 | return Builder.CreateCall(F, OperandV, "unop"); |
| 710 | } |
| 711 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 712 | Value *BinaryExprAST::Codegen() { |
| 713 | // Special case '=' because we don't want to emit the LHS as an expression. |
| 714 | if (Op == '=') { |
| 715 | // Assignment requires the LHS to be an identifier. |
Lang Hames | e7c28bc | 2015-04-22 20:41:34 +0000 | [diff] [blame] | 716 | // This assume we're building without RTTI because LLVM builds that way by |
| 717 | // default. If you build LLVM with RTTI this can be changed to a |
| 718 | // dynamic_cast for automatic error checking. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 719 | VariableExprAST *LHSE = static_cast<VariableExprAST*>(LHS.get()); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 720 | if (!LHSE) |
| 721 | return ErrorV("destination of '=' must be a variable"); |
| 722 | // Codegen the RHS. |
| 723 | Value *Val = RHS->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 724 | if (!Val) |
| 725 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 726 | |
| 727 | // Look up the name. |
| 728 | Value *Variable = NamedValues[LHSE->getName()]; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 729 | if (!Variable) |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 730 | return ErrorV("Unknown variable name"); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 731 | |
| 732 | Builder.CreateStore(Val, Variable); |
| 733 | return Val; |
| 734 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 735 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 736 | Value *L = LHS->Codegen(); |
| 737 | Value *R = RHS->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 738 | if (!L || !R) |
| 739 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 740 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 741 | switch (Op) { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 742 | case '+': |
| 743 | return Builder.CreateFAdd(L, R, "addtmp"); |
| 744 | case '-': |
| 745 | return Builder.CreateFSub(L, R, "subtmp"); |
| 746 | case '*': |
| 747 | return Builder.CreateFMul(L, R, "multmp"); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 748 | case '<': |
| 749 | L = Builder.CreateFCmpULT(L, R, "cmptmp"); |
| 750 | // Convert bool 0/1 to double 0.0 or 1.0 |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 751 | return Builder.CreateUIToFP(L, Type::getDoubleTy(getGlobalContext()), |
| 752 | "booltmp"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 753 | default: |
| 754 | break; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 755 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 756 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 757 | // If it wasn't a builtin binary operator, it must be a user defined one. Emit |
| 758 | // a call to it. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 759 | Function *F = TheModule->getFunction(std::string("binary") + Op); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 760 | assert(F && "binary operator not found!"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 761 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 762 | Value *Ops[] = { L, R }; |
Francois Pichet | c5d1050 | 2011-07-15 10:59:52 +0000 | [diff] [blame] | 763 | return Builder.CreateCall(F, Ops, "binop"); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 764 | } |
| 765 | |
| 766 | Value *CallExprAST::Codegen() { |
| 767 | // Look up the name in the global module table. |
| 768 | Function *CalleeF = TheModule->getFunction(Callee); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 769 | if (!CalleeF) |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 770 | return ErrorV("Unknown function referenced"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 771 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 772 | // If argument mismatch error. |
| 773 | if (CalleeF->arg_size() != Args.size()) |
| 774 | return ErrorV("Incorrect # arguments passed"); |
| 775 | |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 776 | std::vector<Value *> ArgsV; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 777 | for (unsigned i = 0, e = Args.size(); i != e; ++i) { |
| 778 | ArgsV.push_back(Args[i]->Codegen()); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 779 | if (!ArgsV.back()) |
| 780 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 781 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 782 | |
Francois Pichet | c5d1050 | 2011-07-15 10:59:52 +0000 | [diff] [blame] | 783 | return Builder.CreateCall(CalleeF, ArgsV, "calltmp"); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 784 | } |
| 785 | |
| 786 | Value *IfExprAST::Codegen() { |
| 787 | Value *CondV = Cond->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 788 | if (!CondV) |
| 789 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 790 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 791 | // Convert condition to a bool by comparing equal to 0.0. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 792 | CondV = Builder.CreateFCmpONE( |
| 793 | CondV, ConstantFP::get(getGlobalContext(), APFloat(0.0)), "ifcond"); |
| 794 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 795 | Function *TheFunction = Builder.GetInsertBlock()->getParent(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 796 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 797 | // Create blocks for the then and else cases. Insert the 'then' block at the |
| 798 | // end of the function. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 799 | BasicBlock *ThenBB = |
| 800 | BasicBlock::Create(getGlobalContext(), "then", TheFunction); |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 801 | BasicBlock *ElseBB = BasicBlock::Create(getGlobalContext(), "else"); |
| 802 | BasicBlock *MergeBB = BasicBlock::Create(getGlobalContext(), "ifcont"); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 803 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 804 | Builder.CreateCondBr(CondV, ThenBB, ElseBB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 805 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 806 | // Emit then value. |
| 807 | Builder.SetInsertPoint(ThenBB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 808 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 809 | Value *ThenV = Then->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 810 | if (!ThenV) |
| 811 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 812 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 813 | Builder.CreateBr(MergeBB); |
| 814 | // Codegen of 'Then' can change the current block, update ThenBB for the PHI. |
| 815 | ThenBB = Builder.GetInsertBlock(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 816 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 817 | // Emit else block. |
| 818 | TheFunction->getBasicBlockList().push_back(ElseBB); |
| 819 | Builder.SetInsertPoint(ElseBB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 820 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 821 | Value *ElseV = Else->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 822 | if (!ElseV) |
| 823 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 824 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 825 | Builder.CreateBr(MergeBB); |
| 826 | // Codegen of 'Else' can change the current block, update ElseBB for the PHI. |
| 827 | ElseBB = Builder.GetInsertBlock(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 828 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 829 | // Emit merge block. |
| 830 | TheFunction->getBasicBlockList().push_back(MergeBB); |
| 831 | Builder.SetInsertPoint(MergeBB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 832 | PHINode *PN = |
| 833 | Builder.CreatePHI(Type::getDoubleTy(getGlobalContext()), 2, "iftmp"); |
| 834 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 835 | PN->addIncoming(ThenV, ThenBB); |
| 836 | PN->addIncoming(ElseV, ElseBB); |
| 837 | return PN; |
| 838 | } |
| 839 | |
| 840 | Value *ForExprAST::Codegen() { |
| 841 | // Output this as: |
| 842 | // var = alloca double |
| 843 | // ... |
| 844 | // start = startexpr |
| 845 | // store start -> var |
| 846 | // goto loop |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 847 | // loop: |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 848 | // ... |
| 849 | // bodyexpr |
| 850 | // ... |
| 851 | // loopend: |
| 852 | // step = stepexpr |
| 853 | // endcond = endexpr |
| 854 | // |
| 855 | // curvar = load var |
| 856 | // nextvar = curvar + step |
| 857 | // store nextvar -> var |
| 858 | // br endcond, loop, endloop |
| 859 | // outloop: |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 860 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 861 | Function *TheFunction = Builder.GetInsertBlock()->getParent(); |
| 862 | |
| 863 | // Create an alloca for the variable in the entry block. |
| 864 | AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 865 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 866 | // Emit the start code first, without 'variable' in scope. |
| 867 | Value *StartVal = Start->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 868 | if (!StartVal) |
| 869 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 870 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 871 | // Store the value into the alloca. |
| 872 | Builder.CreateStore(StartVal, Alloca); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 873 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 874 | // Make the new basic block for the loop header, inserting after current |
| 875 | // block. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 876 | BasicBlock *LoopBB = |
| 877 | BasicBlock::Create(getGlobalContext(), "loop", TheFunction); |
| 878 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 879 | // Insert an explicit fall through from the current block to the LoopBB. |
| 880 | Builder.CreateBr(LoopBB); |
| 881 | |
| 882 | // Start insertion in LoopBB. |
| 883 | Builder.SetInsertPoint(LoopBB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 884 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 885 | // Within the loop, the variable is defined equal to the PHI node. If it |
| 886 | // shadows an existing variable, we have to restore it, so save it now. |
| 887 | AllocaInst *OldVal = NamedValues[VarName]; |
| 888 | NamedValues[VarName] = Alloca; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 889 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 890 | // Emit the body of the loop. This, like any other expr, can change the |
| 891 | // current BB. Note that we ignore the value computed by the body, but don't |
| 892 | // allow an error. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 893 | if (!Body->Codegen()) |
| 894 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 895 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 896 | // Emit the step value. |
| 897 | Value *StepVal; |
| 898 | if (Step) { |
| 899 | StepVal = Step->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 900 | if (!StepVal) |
| 901 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 902 | } else { |
| 903 | // If not specified, use 1.0. |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 904 | StepVal = ConstantFP::get(getGlobalContext(), APFloat(1.0)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 905 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 906 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 907 | // Compute the end condition. |
| 908 | Value *EndCond = End->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 909 | if (!EndCond) |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 910 | return EndCond; |
| 911 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 912 | // Reload, increment, and restore the alloca. This handles the case where |
| 913 | // the body of the loop mutates the variable. |
| 914 | Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); |
Chris Lattner | 26d7950 | 2010-06-21 22:51:14 +0000 | [diff] [blame] | 915 | Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 916 | Builder.CreateStore(NextVar, Alloca); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 917 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 918 | // Convert condition to a bool by comparing equal to 0.0. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 919 | EndCond = Builder.CreateFCmpONE( |
| 920 | EndCond, ConstantFP::get(getGlobalContext(), APFloat(0.0)), "loopcond"); |
| 921 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 922 | // Create the "after loop" block and insert it. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 923 | BasicBlock *AfterBB = |
| 924 | BasicBlock::Create(getGlobalContext(), "afterloop", TheFunction); |
| 925 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 926 | // Insert the conditional branch into the end of LoopEndBB. |
| 927 | Builder.CreateCondBr(EndCond, LoopBB, AfterBB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 928 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 929 | // Any new code will be inserted in AfterBB. |
| 930 | Builder.SetInsertPoint(AfterBB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 931 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 932 | // Restore the unshadowed variable. |
| 933 | if (OldVal) |
| 934 | NamedValues[VarName] = OldVal; |
| 935 | else |
| 936 | NamedValues.erase(VarName); |
| 937 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 938 | // for expr always returns 0.0. |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 939 | return Constant::getNullValue(Type::getDoubleTy(getGlobalContext())); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 940 | } |
| 941 | |
| 942 | Value *VarExprAST::Codegen() { |
| 943 | std::vector<AllocaInst *> OldBindings; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 944 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 945 | Function *TheFunction = Builder.GetInsertBlock()->getParent(); |
| 946 | |
| 947 | // Register all variables and emit their initializer. |
| 948 | for (unsigned i = 0, e = VarNames.size(); i != e; ++i) { |
| 949 | const std::string &VarName = VarNames[i].first; |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 950 | ExprAST *Init = VarNames[i].second.get(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 951 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 952 | // Emit the initializer before adding the variable to scope, this prevents |
| 953 | // the initializer from referencing the variable itself, and permits stuff |
| 954 | // like this: |
| 955 | // var a = 1 in |
| 956 | // var a = a in ... # refers to outer 'a'. |
| 957 | Value *InitVal; |
| 958 | if (Init) { |
| 959 | InitVal = Init->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 960 | if (!InitVal) |
| 961 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 962 | } else { // If not specified, use 0.0. |
Owen Anderson | 69c464d | 2009-07-27 20:59:43 +0000 | [diff] [blame] | 963 | InitVal = ConstantFP::get(getGlobalContext(), APFloat(0.0)); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 964 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 965 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 966 | AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); |
| 967 | Builder.CreateStore(InitVal, Alloca); |
| 968 | |
| 969 | // Remember the old variable binding so that we can restore the binding when |
| 970 | // we unrecurse. |
| 971 | OldBindings.push_back(NamedValues[VarName]); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 972 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 973 | // Remember this binding. |
| 974 | NamedValues[VarName] = Alloca; |
| 975 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 976 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 977 | // Codegen the body, now that all vars are in scope. |
| 978 | Value *BodyVal = Body->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 979 | if (!BodyVal) |
| 980 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 981 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 982 | // Pop all our variables from scope. |
| 983 | for (unsigned i = 0, e = VarNames.size(); i != e; ++i) |
| 984 | NamedValues[VarNames[i].first] = OldBindings[i]; |
| 985 | |
| 986 | // Return the body computation. |
| 987 | return BodyVal; |
| 988 | } |
| 989 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 990 | Function *PrototypeAST::Codegen() { |
| 991 | // Make the function type: double(double,double) etc. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 992 | std::vector<Type *> Doubles(Args.size(), |
| 993 | Type::getDoubleTy(getGlobalContext())); |
| 994 | FunctionType *FT = |
| 995 | FunctionType::get(Type::getDoubleTy(getGlobalContext()), Doubles, false); |
| 996 | |
| 997 | Function *F = |
| 998 | Function::Create(FT, Function::ExternalLinkage, Name, TheModule); |
| 999 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1000 | // If F conflicted, there was already something named 'Name'. If it has a |
| 1001 | // body, don't allow redefinition or reextern. |
| 1002 | if (F->getName() != Name) { |
| 1003 | // Delete the one we just made and get the existing one. |
| 1004 | F->eraseFromParent(); |
| 1005 | F = TheModule->getFunction(Name); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1006 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1007 | // If F already has a body, reject this. |
| 1008 | if (!F->empty()) { |
| 1009 | ErrorF("redefinition of function"); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1010 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1011 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1012 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1013 | // If F took a different number of args, reject. |
| 1014 | if (F->arg_size() != Args.size()) { |
| 1015 | ErrorF("redefinition of function with different # args"); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1016 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1017 | } |
| 1018 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1019 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1020 | // Set names for all arguments. |
| 1021 | unsigned Idx = 0; |
| 1022 | for (Function::arg_iterator AI = F->arg_begin(); Idx != Args.size(); |
| 1023 | ++AI, ++Idx) |
| 1024 | AI->setName(Args[Idx]); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1025 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1026 | return F; |
| 1027 | } |
| 1028 | |
| 1029 | /// CreateArgumentAllocas - Create an alloca for each argument and register the |
| 1030 | /// argument in the symbol table so that references to it will succeed. |
| 1031 | void PrototypeAST::CreateArgumentAllocas(Function *F) { |
| 1032 | Function::arg_iterator AI = F->arg_begin(); |
| 1033 | for (unsigned Idx = 0, e = Args.size(); Idx != e; ++Idx, ++AI) { |
| 1034 | // Create an alloca for this variable. |
| 1035 | AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); |
| 1036 | |
| 1037 | // Store the initial value into the alloca. |
| 1038 | Builder.CreateStore(AI, Alloca); |
| 1039 | |
| 1040 | // Add arguments to variable symbol table. |
| 1041 | NamedValues[Args[Idx]] = Alloca; |
| 1042 | } |
| 1043 | } |
| 1044 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1045 | Function *FunctionAST::Codegen() { |
| 1046 | NamedValues.clear(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1047 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1048 | Function *TheFunction = Proto->Codegen(); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1049 | if (!TheFunction) |
| 1050 | return nullptr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1051 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1052 | // If this is an operator, install it. |
| 1053 | if (Proto->isBinaryOp()) |
| 1054 | BinopPrecedence[Proto->getOperatorName()] = Proto->getBinaryPrecedence(); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1055 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1056 | // Create a new basic block to start insertion into. |
Owen Anderson | 55f1c09 | 2009-08-13 21:58:54 +0000 | [diff] [blame] | 1057 | BasicBlock *BB = BasicBlock::Create(getGlobalContext(), "entry", TheFunction); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1058 | Builder.SetInsertPoint(BB); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1059 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1060 | // Add all arguments to the symbol table and create their allocas. |
| 1061 | Proto->CreateArgumentAllocas(TheFunction); |
Erick Tryzelaar | 6e2b34bc | 2009-09-22 21:14:49 +0000 | [diff] [blame] | 1062 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1063 | if (Value *RetVal = Body->Codegen()) { |
| 1064 | // Finish off the function. |
| 1065 | Builder.CreateRet(RetVal); |
| 1066 | |
| 1067 | // Validate the generated code, checking for consistency. |
| 1068 | verifyFunction(*TheFunction); |
| 1069 | |
| 1070 | // Optimize the function. |
| 1071 | TheFPM->run(*TheFunction); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1072 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1073 | return TheFunction; |
| 1074 | } |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1075 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1076 | // Error reading body, remove function. |
| 1077 | TheFunction->eraseFromParent(); |
| 1078 | |
| 1079 | if (Proto->isBinaryOp()) |
| 1080 | BinopPrecedence.erase(Proto->getOperatorName()); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1081 | return nullptr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | //===----------------------------------------------------------------------===// |
| 1085 | // Top-Level parsing and JIT Driver |
| 1086 | //===----------------------------------------------------------------------===// |
| 1087 | |
| 1088 | static ExecutionEngine *TheExecutionEngine; |
| 1089 | |
| 1090 | static void HandleDefinition() { |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1091 | if (auto FnAST = ParseDefinition()) { |
| 1092 | if (auto *FnIR = FnAST->Codegen()) { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1093 | fprintf(stderr, "Read function definition:"); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1094 | FnIR->dump(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1095 | } |
| 1096 | } else { |
| 1097 | // Skip token for error recovery. |
| 1098 | getNextToken(); |
| 1099 | } |
| 1100 | } |
| 1101 | |
| 1102 | static void HandleExtern() { |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1103 | if (auto ProtoAST = ParseExtern()) { |
| 1104 | if (auto *FnIR = ProtoAST->Codegen()) { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1105 | fprintf(stderr, "Read extern: "); |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1106 | FnIR->dump(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1107 | } |
| 1108 | } else { |
| 1109 | // Skip token for error recovery. |
| 1110 | getNextToken(); |
| 1111 | } |
| 1112 | } |
| 1113 | |
| 1114 | static void HandleTopLevelExpression() { |
Erick Tryzelaar | 6e2b34bc | 2009-09-22 21:14:49 +0000 | [diff] [blame] | 1115 | // Evaluate a top-level expression into an anonymous function. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1116 | if (auto FnAST = ParseTopLevelExpr()) { |
| 1117 | if (auto *FnIR = FnAST->Codegen()) { |
Eric Christopher | 1b74b65 | 2014-12-08 18:00:38 +0000 | [diff] [blame] | 1118 | TheExecutionEngine->finalizeObject(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1119 | // JIT the function, returning a function pointer. |
Lang Hames | 09bf4c1 | 2015-08-18 18:11:06 +0000 | [diff] [blame] | 1120 | void *FPtr = TheExecutionEngine->getPointerToFunction(FnIR); |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1121 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1122 | // Cast it to the right type (takes no arguments, returns a double) so we |
| 1123 | // can call it as a native function. |
Chris Lattner | 0813c0c | 2009-04-15 00:16:05 +0000 | [diff] [blame] | 1124 | double (*FP)() = (double (*)())(intptr_t)FPtr; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1125 | fprintf(stderr, "Evaluated to %f\n", FP()); |
| 1126 | } |
| 1127 | } else { |
| 1128 | // Skip token for error recovery. |
| 1129 | getNextToken(); |
| 1130 | } |
| 1131 | } |
| 1132 | |
| 1133 | /// top ::= definition | external | expression | ';' |
| 1134 | static void MainLoop() { |
| 1135 | while (1) { |
| 1136 | fprintf(stderr, "ready> "); |
| 1137 | switch (CurTok) { |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1138 | case tok_eof: |
| 1139 | return; |
| 1140 | case ';': |
| 1141 | getNextToken(); |
| 1142 | break; // ignore top-level semicolons. |
| 1143 | case tok_def: |
| 1144 | HandleDefinition(); |
| 1145 | break; |
| 1146 | case tok_extern: |
| 1147 | HandleExtern(); |
| 1148 | break; |
| 1149 | default: |
| 1150 | HandleTopLevelExpression(); |
| 1151 | break; |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1152 | } |
| 1153 | } |
| 1154 | } |
| 1155 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1156 | //===----------------------------------------------------------------------===// |
| 1157 | // "Library" functions that can be "extern'd" from user code. |
| 1158 | //===----------------------------------------------------------------------===// |
| 1159 | |
| 1160 | /// putchard - putchar that takes a double and returns 0. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1161 | extern "C" double putchard(double X) { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1162 | putchar((char)X); |
| 1163 | return 0; |
| 1164 | } |
| 1165 | |
| 1166 | /// printd - printf that takes a double prints it as "%f\n", returning 0. |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1167 | extern "C" double printd(double X) { |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1168 | printf("%f\n", X); |
| 1169 | return 0; |
| 1170 | } |
| 1171 | |
| 1172 | //===----------------------------------------------------------------------===// |
| 1173 | // Main driver code. |
| 1174 | //===----------------------------------------------------------------------===// |
| 1175 | |
| 1176 | int main() { |
Chris Lattner | d24df24 | 2009-06-17 16:48:44 +0000 | [diff] [blame] | 1177 | InitializeNativeTarget(); |
Eric Christopher | 1b74b65 | 2014-12-08 18:00:38 +0000 | [diff] [blame] | 1178 | InitializeNativeTargetAsmPrinter(); |
| 1179 | InitializeNativeTargetAsmParser(); |
Owen Anderson | c277dc4 | 2009-07-16 19:05:41 +0000 | [diff] [blame] | 1180 | LLVMContext &Context = getGlobalContext(); |
Erick Tryzelaar | 6e2b34bc | 2009-09-22 21:14:49 +0000 | [diff] [blame] | 1181 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1182 | // Install standard binary operators. |
| 1183 | // 1 is lowest precedence. |
| 1184 | BinopPrecedence['='] = 2; |
| 1185 | BinopPrecedence['<'] = 10; |
| 1186 | BinopPrecedence['+'] = 20; |
| 1187 | BinopPrecedence['-'] = 20; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1188 | BinopPrecedence['*'] = 40; // highest. |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1189 | |
| 1190 | // Prime the first token. |
| 1191 | fprintf(stderr, "ready> "); |
| 1192 | getNextToken(); |
| 1193 | |
| 1194 | // Make the module, which holds all the code. |
Rafael Espindola | 2a8a279 | 2014-08-19 04:04:25 +0000 | [diff] [blame] | 1195 | std::unique_ptr<Module> Owner = make_unique<Module>("my cool jit", Context); |
| 1196 | TheModule = Owner.get(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1197 | |
Jeffrey Yasskin | 091217b | 2010-01-27 20:34:15 +0000 | [diff] [blame] | 1198 | // Create the JIT. This takes ownership of the module. |
Jeffrey Yasskin | 8a30324 | 2010-02-11 19:15:20 +0000 | [diff] [blame] | 1199 | std::string ErrStr; |
Eric Christopher | c023936 | 2014-12-08 18:12:28 +0000 | [diff] [blame] | 1200 | TheExecutionEngine = |
| 1201 | EngineBuilder(std::move(Owner)) |
| 1202 | .setErrorStr(&ErrStr) |
| 1203 | .setMCJITMemoryManager(llvm::make_unique<SectionMemoryManager>()) |
| 1204 | .create(); |
Jeffrey Yasskin | 8a30324 | 2010-02-11 19:15:20 +0000 | [diff] [blame] | 1205 | if (!TheExecutionEngine) { |
| 1206 | fprintf(stderr, "Could not create ExecutionEngine: %s\n", ErrStr.c_str()); |
| 1207 | exit(1); |
| 1208 | } |
Reid Kleckner | e56676a | 2009-08-24 05:42:21 +0000 | [diff] [blame] | 1209 | |
Chandler Carruth | 7ecd991 | 2015-02-13 10:21:05 +0000 | [diff] [blame] | 1210 | legacy::FunctionPassManager OurFPM(TheModule); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1211 | |
Reid Kleckner | ab77004 | 2009-08-26 20:58:25 +0000 | [diff] [blame] | 1212 | // Set up the optimizer pipeline. Start with registering info about how the |
| 1213 | // target lays out data structures. |
Mehdi Amini | cd253da | 2015-07-16 16:47:18 +0000 | [diff] [blame] | 1214 | TheModule->setDataLayout(TheExecutionEngine->getDataLayout()); |
Dan Gohman | 56f3a4c | 2010-11-15 18:41:10 +0000 | [diff] [blame] | 1215 | // Provide basic AliasAnalysis support for GVN. |
| 1216 | OurFPM.add(createBasicAliasAnalysisPass()); |
Reid Kleckner | ab77004 | 2009-08-26 20:58:25 +0000 | [diff] [blame] | 1217 | // Promote allocas to registers. |
| 1218 | OurFPM.add(createPromoteMemoryToRegisterPass()); |
| 1219 | // Do simple "peephole" optimizations and bit-twiddling optzns. |
| 1220 | OurFPM.add(createInstructionCombiningPass()); |
| 1221 | // Reassociate expressions. |
| 1222 | OurFPM.add(createReassociatePass()); |
| 1223 | // Eliminate Common SubExpressions. |
| 1224 | OurFPM.add(createGVNPass()); |
| 1225 | // Simplify the control flow graph (deleting unreachable blocks, etc). |
| 1226 | OurFPM.add(createCFGSimplificationPass()); |
Eli Friedman | e04169c | 2009-07-20 14:50:07 +0000 | [diff] [blame] | 1227 | |
Reid Kleckner | ab77004 | 2009-08-26 20:58:25 +0000 | [diff] [blame] | 1228 | OurFPM.doInitialization(); |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1229 | |
Reid Kleckner | ab77004 | 2009-08-26 20:58:25 +0000 | [diff] [blame] | 1230 | // Set the global so the code gen can use this. |
| 1231 | TheFPM = &OurFPM; |
| 1232 | |
| 1233 | // Run the main "interpreter loop" now. |
| 1234 | MainLoop(); |
| 1235 | |
| 1236 | TheFPM = 0; |
| 1237 | |
| 1238 | // Print out all of the generated code. |
| 1239 | TheModule->dump(); |
| 1240 | |
Nick Lewycky | 109af62 | 2009-04-12 20:47:23 +0000 | [diff] [blame] | 1241 | return 0; |
| 1242 | } |