Expression Compiler
This commit is contained in:
parent
4b59b0fef2
commit
4d255e45d0
1
expression.txt
Normal file
1
expression.txt
Normal file
@ -0,0 +1 @@
|
||||
(4+1)
|
@ -4,6 +4,8 @@
|
||||
#include <stdbool.h>
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#define DEBUG_PRINT_CODE
|
||||
#define DEBUG_TRACE_EXECUTION
|
||||
|
||||
#endif
|
||||
|
7
include/compiler.h
Normal file
7
include/compiler.h
Normal file
@ -0,0 +1,7 @@
|
||||
#ifndef COMPILER_INCLUDED
|
||||
#define COMPILER_INCLUDED
|
||||
|
||||
#include "vm.h"
|
||||
bool compile(const char *source, Chunk *chunk);
|
||||
|
||||
#endif
|
37
include/scanner.h
Normal file
37
include/scanner.h
Normal file
@ -0,0 +1,37 @@
|
||||
#ifndef SCANNER_INLUDED
|
||||
#define SCANNER_INLUDED
|
||||
|
||||
typedef enum {
|
||||
// Single-character tokens.
|
||||
TOKEN_LEFT_PAREN, TOKEN_RIGHT_PAREN,
|
||||
TOKEN_LEFT_BRACE, TOKEN_RIGHT_BRACE,
|
||||
TOKEN_COMMA, TOKEN_DOT, TOKEN_MINUS, TOKEN_PLUS,
|
||||
TOKEN_SEMICOLON, TOKEN_SLASH, TOKEN_STAR,
|
||||
// One or two character tokens.
|
||||
TOKEN_BANG, TOKEN_BANG_EQUAL,
|
||||
TOKEN_EQUAL, TOKEN_EQUAL_EQUAL,
|
||||
TOKEN_GREATER, TOKEN_GREATER_EQUAL,
|
||||
TOKEN_LESS, TOKEN_LESS_EQUAL,
|
||||
// Literals.
|
||||
TOKEN_IDENTIFIER, TOKEN_STRING, TOKEN_NUMBER,
|
||||
// Keywords.
|
||||
TOKEN_AND, TOKEN_CLASS, TOKEN_ELSE, TOKEN_FALSE,
|
||||
TOKEN_FOR, TOKEN_FUN, TOKEN_IF, TOKEN_NIL, TOKEN_OR,
|
||||
TOKEN_PRINT, TOKEN_RETURN, TOKEN_SUPER, TOKEN_THIS,
|
||||
TOKEN_TRUE, TOKEN_VAR, TOKEN_WHILE,
|
||||
|
||||
TOKEN_ERROR, TOKEN_EOF
|
||||
} TokenType;
|
||||
|
||||
typedef struct {
|
||||
TokenType type;
|
||||
const char *start;
|
||||
int length;
|
||||
int line;
|
||||
} Token;
|
||||
|
||||
void initScanner(const char *source);
|
||||
Token scanToken();
|
||||
|
||||
|
||||
#endif
|
@ -1,5 +1,5 @@
|
||||
#ifndef VM_INCLUDED
|
||||
#define VM_INLCUDED
|
||||
#ifndef VM_H
|
||||
#define VM_H
|
||||
|
||||
#include "chunk.h"
|
||||
#include "value.h"
|
||||
@ -20,10 +20,12 @@ typedef enum {
|
||||
INTERPRET_RESULT_COUNT,
|
||||
} InterpretResult;
|
||||
|
||||
extern VM vm;
|
||||
|
||||
void initVM(void);
|
||||
void freeVM(void);
|
||||
|
||||
InterpretResult interpret(Chunk *chunk);
|
||||
InterpretResult interpret(const char *source);
|
||||
void push(Value value);
|
||||
Value pop();
|
||||
|
||||
|
BIN
obj/chunk.o
Normal file
BIN
obj/chunk.o
Normal file
Binary file not shown.
BIN
obj/compiler.o
Normal file
BIN
obj/compiler.o
Normal file
Binary file not shown.
BIN
obj/debug.o
Normal file
BIN
obj/debug.o
Normal file
Binary file not shown.
BIN
obj/memory.o
Normal file
BIN
obj/memory.o
Normal file
Binary file not shown.
BIN
obj/scanner.o
Normal file
BIN
obj/scanner.o
Normal file
Binary file not shown.
BIN
obj/value.o
Normal file
BIN
obj/value.o
Normal file
Binary file not shown.
229
src/\
Normal file
229
src/\
Normal file
@ -0,0 +1,229 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "../include/vm.h"
|
||||
#include "../include/scanner.h"
|
||||
|
||||
#ifdef DEBUG_PRINT_CODE
|
||||
#include "../include/debug.h"
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
Token current;
|
||||
Token previous;
|
||||
bool hadError;
|
||||
bool panicMode;
|
||||
} Parser;
|
||||
typedef enum {
|
||||
PREC_NONE,
|
||||
PREC_ASSIGNMENT, // =
|
||||
PREC_OR, // or
|
||||
PREC_AND, // and
|
||||
PREC_EQUALITY, // == !=
|
||||
PREC_COMPARISON, // < > <= >=
|
||||
PREC_TERM, // + -
|
||||
PREC_FACTOR, // * /
|
||||
PREC_UNARY, // ! -
|
||||
PREC_CALL, // . ()
|
||||
PREC_PRIMARY
|
||||
} Precedence;
|
||||
typedef void (*ParseFn)();
|
||||
typedef struct {
|
||||
ParseFn prefix;
|
||||
ParseFn infix;
|
||||
Precedence precedence;
|
||||
} ParseRule;
|
||||
|
||||
Parser parser;
|
||||
Chunk* compilingChunk;
|
||||
|
||||
static Chunk* currentChunk() {
|
||||
return compilingChunk;
|
||||
}
|
||||
static void errorAt(Token* token, const char* message) {
|
||||
if(parser.panicMode) return;
|
||||
parser.panicMode = true;
|
||||
fprintf(stderr, "[line %d] Error", token->line);
|
||||
|
||||
if (token->type == TOKEN_EOF) {
|
||||
fprintf(stderr, " at end");
|
||||
} else if (token->type == TOKEN_ERROR) {
|
||||
// Nothing.
|
||||
} else {
|
||||
fprintf(stderr, " at '%.*s'", token->length, token->start);
|
||||
}
|
||||
|
||||
fprintf(stderr, ": %s\n", message);
|
||||
parser.hadError = true;
|
||||
}
|
||||
static void error(const char* message) {
|
||||
errorAt(&parser.previous, message);}
|
||||
static void errorAtCurrent(const char* message) {
|
||||
errorAt(&parser.current, message);}
|
||||
bool compile(const char* source, Chunk* chunk) {
|
||||
initScanner(source);
|
||||
compilingChunk = chunk;
|
||||
|
||||
parser.hadError = false;
|
||||
parser.panicMode = false;
|
||||
|
||||
advance();
|
||||
expression();
|
||||
consume(TOKEN_EOF, "Expect end of expression.");
|
||||
endCompiler();
|
||||
return !parser.hadError;
|
||||
}
|
||||
static void advance() {
|
||||
parser.previous = parser.current;
|
||||
|
||||
for (;;) {
|
||||
parser.current = scanToken();
|
||||
if (parser.current.type != TOKEN_ERROR) break;
|
||||
|
||||
errorAtCurrent(parser.current.start);
|
||||
}
|
||||
}
|
||||
static void consume(TokenType type, const char* message) {
|
||||
if (parser.current.type == type) {
|
||||
advance();
|
||||
return;
|
||||
}
|
||||
|
||||
errorAtCurrent(message);
|
||||
}
|
||||
static void emitByte(uint8_t byte) {
|
||||
writeChunk(currentChunk(), byte, parser.previous.line);
|
||||
}
|
||||
static void emitBytes(uint8_t byte1, uint8_t byte2) {
|
||||
emitByte(byte1);
|
||||
emitByte(byte2);
|
||||
}
|
||||
static void emitReturn() {
|
||||
emitByte(OP_RETURN);
|
||||
}
|
||||
static uint8_t makeConstant(Value value) {
|
||||
int constant = addConstant(currentChunk(), value);
|
||||
if (constant > UINT8_MAX) {
|
||||
error("Too many constants in one chunk.");
|
||||
return 0;
|
||||
}
|
||||
|
||||
return (uint8_t)constant;
|
||||
}
|
||||
static void emitConstant(Value value) {
|
||||
emitBytes(OP_CONSTANT, makeConstant(value));
|
||||
}
|
||||
static void number() {
|
||||
double value = strtod(parser.previous.start, NULL);
|
||||
emitConstant(value);
|
||||
}
|
||||
static void unary() {
|
||||
TokenType operatorType = parser.previous.type;
|
||||
|
||||
// Compile the operand.
|
||||
parsePrecedence(PREC_UNARY);
|
||||
|
||||
// Emit the operator instruction.
|
||||
switch (operatorType) {
|
||||
case TOKEN_MINUS: emitByte(OP_NEGATE); break;
|
||||
default: return; // Unreachable.
|
||||
}
|
||||
}
|
||||
ParseRule rules[] = {
|
||||
[TOKEN_LEFT_PAREN] = {grouping, NULL, PREC_NONE},
|
||||
[TOKEN_RIGHT_PAREN] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_LEFT_BRACE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_RIGHT_BRACE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_COMMA] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_DOT] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_MINUS] = {unary, binary, PREC_TERM},
|
||||
[TOKEN_PLUS] = {NULL, binary, PREC_TERM},
|
||||
[TOKEN_SEMICOLON] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_SLASH] = {NULL, binary, PREC_FACTOR},
|
||||
[TOKEN_STAR] = {NULL, binary, PREC_FACTOR},
|
||||
[TOKEN_BANG] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_BANG_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_EQUAL_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_GREATER] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_GREATER_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_LESS] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_LESS_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_IDENTIFIER] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_STRING] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_NUMBER] = {number, NULL, PREC_NONE},
|
||||
[TOKEN_AND] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_CLASS] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_ELSE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_FALSE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_FOR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_FUN] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_IF] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_NIL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_OR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_PRINT] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_RETURN] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_SUPER] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_THIS] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_TRUE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_VAR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_WHILE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_ERROR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_EOF] = {NULL, NULL, PREC_NONE},
|
||||
};
|
||||
|
||||
static void parsePrecedence(Precedence precedence) {
|
||||
advance();
|
||||
ParseFn prefixRule = getRule(parser.previous.type)->prefix;
|
||||
if (prefixRule == NULL) {
|
||||
error("Expect expression.");
|
||||
return;
|
||||
}
|
||||
|
||||
prefixRule();
|
||||
|
||||
while (precedence <= getRule(parser.current.type)->precedence) {
|
||||
advance();
|
||||
ParseFn infixRule = getRule(parser.previous.type)->infix;
|
||||
infixRule();
|
||||
}
|
||||
|
||||
}
|
||||
static ParseRule* getRule(TokenType type) {
|
||||
return &rules[type];
|
||||
}
|
||||
static void endCompiler() {
|
||||
emitReturn();
|
||||
#ifdef DEBUG_PRINT_CODE
|
||||
if (!parser.hadError) {
|
||||
disassembleChunk(currentChunk(), "code");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
static void expression();
|
||||
static ParseRule* getRule(TokenType type);
|
||||
static void parsePrecedence(Precedence precedence);
|
||||
|
||||
static void binary() {
|
||||
TokenType operatorType = parser.previous.type;
|
||||
ParseRule* rule = getRule(operatorType);
|
||||
parsePrecedence((Precedence)(rule->precedence + 1));
|
||||
|
||||
switch (operatorType) {
|
||||
case TOKEN_PLUS: emitByte(OP_ADD); break;
|
||||
case TOKEN_MINUS: emitByte(OP_SUBTRACT); break;
|
||||
case TOKEN_STAR: emitByte(OP_MULTIPLY); break;
|
||||
case TOKEN_SLASH: emitByte(OP_DIVIDE); break;
|
||||
default: return; // Unreachable.
|
||||
}
|
||||
}
|
||||
static void grouping() {
|
||||
expression();
|
||||
consume(TOKEN_RIGHT_PAREN, "Expect ')' after expression.");
|
||||
}
|
||||
static void expression() {
|
||||
parsePrecedence(PREC_ASSIGNMENT);
|
||||
}
|
226
src/compiler.c
Normal file
226
src/compiler.c
Normal file
@ -0,0 +1,226 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "../include/vm.h"
|
||||
#include "../include/scanner.h"
|
||||
|
||||
#ifdef DEBUG_PRINT_CODE
|
||||
#include "../include/debug.h"
|
||||
#endif
|
||||
|
||||
typedef struct {
|
||||
Token current;
|
||||
Token previous;
|
||||
bool hadError;
|
||||
bool panicMode;
|
||||
} Parser;
|
||||
typedef enum {
|
||||
PREC_NONE,
|
||||
PREC_ASSIGNMENT, // =
|
||||
PREC_OR, // or
|
||||
PREC_AND, // and
|
||||
PREC_EQUALITY, // == !=
|
||||
PREC_COMPARISON, // < > <= >=
|
||||
PREC_TERM, // + -
|
||||
PREC_FACTOR, // * /
|
||||
PREC_UNARY, // ! -
|
||||
PREC_CALL, // . ()
|
||||
PREC_PRIMARY
|
||||
} Precedence;
|
||||
typedef void (*ParseFn)();
|
||||
typedef struct {
|
||||
ParseFn prefix;
|
||||
ParseFn infix;
|
||||
Precedence precedence;
|
||||
} ParseRule;
|
||||
|
||||
Parser parser;
|
||||
Chunk* compilingChunk;
|
||||
|
||||
static Chunk* currentChunk() {
|
||||
return compilingChunk;
|
||||
}
|
||||
static void errorAt(Token* token, const char* message) {
|
||||
if (parser.panicMode) return;
|
||||
parser.panicMode = true;
|
||||
fprintf(stderr, "[line %d] Error", token->line);
|
||||
|
||||
if (token->type == TOKEN_EOF) {
|
||||
fprintf(stderr, " at end");
|
||||
} else if (token->type == TOKEN_ERROR) {
|
||||
// Nothing.
|
||||
} else {
|
||||
fprintf(stderr, " at '%.*s'", token->length, token->start);
|
||||
}
|
||||
|
||||
fprintf(stderr, ": %s\n", message);
|
||||
parser.hadError = true;
|
||||
}
|
||||
static void error(const char* message) {
|
||||
errorAt(&parser.previous, message);
|
||||
}
|
||||
static void errorAtCurrent(const char* message) {
|
||||
errorAt(&parser.current, message);
|
||||
}
|
||||
static void advance() {
|
||||
parser.previous = parser.current;
|
||||
|
||||
for (;;) {
|
||||
parser.current = scanToken();
|
||||
if (parser.current.type != TOKEN_ERROR) break;
|
||||
|
||||
errorAtCurrent(parser.current.start);
|
||||
}
|
||||
}
|
||||
static void consume(TokenType type, const char* message) {
|
||||
if (parser.current.type == type) {
|
||||
advance();
|
||||
return;
|
||||
}
|
||||
|
||||
errorAtCurrent(message);
|
||||
}
|
||||
static void emitByte(uint8_t byte) {
|
||||
writeChunk(currentChunk(), byte, parser.previous.line);
|
||||
}
|
||||
static void emitBytes(uint8_t byte1, uint8_t byte2) {
|
||||
emitByte(byte1);
|
||||
emitByte(byte2);
|
||||
}
|
||||
static void emitReturn() {
|
||||
emitByte(OP_RETURN);
|
||||
}
|
||||
static uint8_t makeConstant(Value value) {
|
||||
int constant = addConstant(currentChunk(), value);
|
||||
if (constant > UINT8_MAX) {
|
||||
error("Too many constants in one chunk.");
|
||||
return 0;
|
||||
}
|
||||
|
||||
return (uint8_t)constant;
|
||||
}
|
||||
static void emitConstant(Value value) {
|
||||
emitBytes(OP_CONSTANT, makeConstant(value));
|
||||
}
|
||||
static void endCompiler() {
|
||||
emitReturn();
|
||||
#ifdef DEBUG_PRINT_CODE
|
||||
if (!parser.hadError) {
|
||||
disassembleChunk(currentChunk(), "code");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
static void expression();
|
||||
static ParseRule* getRule(TokenType type);
|
||||
static void parsePrecedence(Precedence precedence);
|
||||
static void binary() {
|
||||
TokenType operatorType = parser.previous.type;
|
||||
ParseRule* rule = getRule(operatorType);
|
||||
parsePrecedence((Precedence)(rule->precedence + 1));
|
||||
|
||||
switch (operatorType) {
|
||||
case TOKEN_PLUS: emitByte(OP_ADD); break;
|
||||
case TOKEN_MINUS: emitByte(OP_SUBTRACT); break;
|
||||
case TOKEN_STAR: emitByte(OP_MULTIPLY); break;
|
||||
case TOKEN_SLASH: emitByte(OP_DIVIDE); break;
|
||||
default: return; // Unreachable.
|
||||
}
|
||||
}
|
||||
static void grouping() {
|
||||
expression();
|
||||
consume(TOKEN_RIGHT_PAREN, "Expect ')' after expression.");
|
||||
}
|
||||
static void number() {
|
||||
double value = strtod(parser.previous.start, NULL);
|
||||
emitConstant(value);
|
||||
}
|
||||
static void unary() {
|
||||
TokenType operatorType = parser.previous.type;
|
||||
|
||||
// Compile the operand.
|
||||
parsePrecedence(PREC_UNARY);
|
||||
// Emit the operator instruction.
|
||||
switch (operatorType) {
|
||||
case TOKEN_MINUS: emitByte(OP_NEGATE); break;
|
||||
default: return; // Unreachable.
|
||||
}
|
||||
}
|
||||
ParseRule rules[] = {
|
||||
[TOKEN_LEFT_PAREN] = {grouping, NULL, PREC_NONE},
|
||||
[TOKEN_RIGHT_PAREN] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_LEFT_BRACE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_RIGHT_BRACE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_COMMA] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_DOT] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_MINUS] = {unary, binary, PREC_TERM},
|
||||
[TOKEN_PLUS] = {NULL, binary, PREC_TERM},
|
||||
[TOKEN_SEMICOLON] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_SLASH] = {NULL, binary, PREC_FACTOR},
|
||||
[TOKEN_STAR] = {NULL, binary, PREC_FACTOR},
|
||||
[TOKEN_BANG] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_BANG_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_EQUAL_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_GREATER] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_GREATER_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_LESS] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_LESS_EQUAL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_IDENTIFIER] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_STRING] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_NUMBER] = {number, NULL, PREC_NONE},
|
||||
[TOKEN_AND] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_CLASS] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_ELSE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_FALSE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_FOR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_FUN] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_IF] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_NIL] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_OR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_PRINT] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_RETURN] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_SUPER] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_THIS] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_TRUE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_VAR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_WHILE] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_ERROR] = {NULL, NULL, PREC_NONE},
|
||||
[TOKEN_EOF] = {NULL, NULL, PREC_NONE},
|
||||
};
|
||||
static void parsePrecedence(Precedence precedence) {
|
||||
advance();
|
||||
ParseFn prefixRule = getRule(parser.previous.type)->prefix;
|
||||
if (prefixRule == NULL) {
|
||||
error("Expect expression.");
|
||||
return;
|
||||
}
|
||||
|
||||
prefixRule();
|
||||
while (precedence <= getRule(parser.current.type)->precedence) {
|
||||
advance();
|
||||
ParseFn infixRule = getRule(parser.previous.type)->infix;
|
||||
infixRule();
|
||||
}
|
||||
}
|
||||
static ParseRule* getRule(TokenType type) {
|
||||
return &rules[type];
|
||||
}
|
||||
static void expression() {
|
||||
parsePrecedence(PREC_ASSIGNMENT);
|
||||
}
|
||||
bool compile(const char* source, Chunk* chunk) {
|
||||
|
||||
initScanner(source);
|
||||
compilingChunk = chunk;
|
||||
parser.hadError = false;
|
||||
parser.panicMode = false;
|
||||
|
||||
advance();
|
||||
expression();
|
||||
consume(TOKEN_EOF, "Expect end of expression.");
|
||||
endCompiler();
|
||||
return !parser.hadError;
|
||||
}
|
||||
|
224
src/scanner.c
Normal file
224
src/scanner.c
Normal file
@ -0,0 +1,224 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "../include/common.h"
|
||||
#include "../include/scanner.h"
|
||||
|
||||
typedef struct {
|
||||
const char* start;
|
||||
const char* current;
|
||||
int line;
|
||||
} Scanner;
|
||||
|
||||
Scanner scanner;
|
||||
|
||||
void initScanner(const char* source) {
|
||||
scanner.start = source;
|
||||
scanner.current = source;
|
||||
scanner.line = 1;
|
||||
}
|
||||
|
||||
static bool isAlpha(char c) {
|
||||
return (c >= 'a' && c <= 'z') ||
|
||||
(c >= 'A' && c <= 'Z') ||
|
||||
c == '_';
|
||||
}
|
||||
|
||||
static bool isDigit(char c) {
|
||||
return c >= '0' && c <= '9';
|
||||
}
|
||||
|
||||
static bool isAtEnd() {
|
||||
return *scanner.current == '\0';
|
||||
}
|
||||
|
||||
static char advance() {
|
||||
scanner.current++;
|
||||
return scanner.current[-1];
|
||||
}
|
||||
|
||||
static char peek() {
|
||||
return *scanner.current;
|
||||
}
|
||||
|
||||
static char peekNext() {
|
||||
if (isAtEnd()) return '\0';
|
||||
return scanner.current[1];
|
||||
}
|
||||
|
||||
static bool match(char expected) {
|
||||
if (isAtEnd()) return false;
|
||||
if (*scanner.current != expected) return false;
|
||||
scanner.current++;
|
||||
return true;
|
||||
}
|
||||
|
||||
static Token makeToken(TokenType type) {
|
||||
Token token;
|
||||
token.type = type;
|
||||
token.start = scanner.start;
|
||||
token.length = (int)(scanner.current - scanner.start);
|
||||
token.line = scanner.line;
|
||||
return token;
|
||||
}
|
||||
|
||||
static Token errorToken(const char* message) {
|
||||
Token token;
|
||||
token.type = TOKEN_ERROR;
|
||||
token.start = message;
|
||||
token.length = (int)strlen(message);
|
||||
token.line = scanner.line;
|
||||
return token;
|
||||
}
|
||||
|
||||
static void skipWhitespace() {
|
||||
for (;;) {
|
||||
char c = peek();
|
||||
switch (c) {
|
||||
case ' ':
|
||||
case '\r':
|
||||
case '\t':
|
||||
advance();
|
||||
break;
|
||||
//> newline
|
||||
case '\n':
|
||||
scanner.line++;
|
||||
advance();
|
||||
break;
|
||||
//< newline
|
||||
//> comment
|
||||
case '/':
|
||||
if (peekNext() == '/') {
|
||||
// A comment goes until the end of the line.
|
||||
while (peek() != '\n' && !isAtEnd()) advance();
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
break;
|
||||
//< comment
|
||||
default:
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
static TokenType checkKeyword(int start, int length,
|
||||
const char* rest, TokenType type) {
|
||||
if (scanner.current - scanner.start == start + length &&
|
||||
memcmp(scanner.start + start, rest, length) == 0) {
|
||||
return type;
|
||||
}
|
||||
|
||||
return TOKEN_IDENTIFIER;
|
||||
}
|
||||
static TokenType identifierType() {
|
||||
//> keywords
|
||||
switch (scanner.start[0]) {
|
||||
case 'a': return checkKeyword(1, 2, "nd", TOKEN_AND);
|
||||
case 'c': return checkKeyword(1, 4, "lass", TOKEN_CLASS);
|
||||
case 'e': return checkKeyword(1, 3, "lse", TOKEN_ELSE);
|
||||
//> keyword-f
|
||||
case 'f':
|
||||
if (scanner.current - scanner.start > 1) {
|
||||
switch (scanner.start[1]) {
|
||||
case 'a': return checkKeyword(2, 3, "lse", TOKEN_FALSE);
|
||||
case 'o': return checkKeyword(2, 1, "r", TOKEN_FOR);
|
||||
case 'u': return checkKeyword(2, 1, "n", TOKEN_FUN);
|
||||
}
|
||||
}
|
||||
break;
|
||||
//< keyword-f
|
||||
case 'i': return checkKeyword(1, 1, "f", TOKEN_IF);
|
||||
case 'n': return checkKeyword(1, 2, "il", TOKEN_NIL);
|
||||
case 'o': return checkKeyword(1, 1, "r", TOKEN_OR);
|
||||
case 'p': return checkKeyword(1, 4, "rint", TOKEN_PRINT);
|
||||
case 'r': return checkKeyword(1, 5, "eturn", TOKEN_RETURN);
|
||||
case 's': return checkKeyword(1, 4, "uper", TOKEN_SUPER);
|
||||
//> keyword-t
|
||||
case 't':
|
||||
if (scanner.current - scanner.start > 1) {
|
||||
switch (scanner.start[1]) {
|
||||
case 'h': return checkKeyword(2, 2, "is", TOKEN_THIS);
|
||||
case 'r': return checkKeyword(2, 2, "ue", TOKEN_TRUE);
|
||||
}
|
||||
}
|
||||
break;
|
||||
//< keyword-t
|
||||
case 'v': return checkKeyword(1, 2, "ar", TOKEN_VAR);
|
||||
case 'w': return checkKeyword(1, 4, "hile", TOKEN_WHILE);
|
||||
}
|
||||
|
||||
return TOKEN_IDENTIFIER;
|
||||
}
|
||||
static Token identifier() {
|
||||
while (isAlpha(peek()) || isDigit(peek())) advance();
|
||||
return makeToken(identifierType());
|
||||
}
|
||||
static Token number() {
|
||||
while (isDigit(peek())) advance();
|
||||
|
||||
// Look for a fractional part.
|
||||
if (peek() == '.' && isDigit(peekNext())) {
|
||||
// Consume the ".".
|
||||
advance();
|
||||
|
||||
while (isDigit(peek())) advance();
|
||||
}
|
||||
|
||||
return makeToken(TOKEN_NUMBER);
|
||||
}
|
||||
|
||||
static Token string() {
|
||||
while (peek() != '"' && !isAtEnd()) {
|
||||
if (peek() == '\n') scanner.line++;
|
||||
advance();
|
||||
}
|
||||
|
||||
if (isAtEnd()) return errorToken("Unterminated string.");
|
||||
|
||||
// The closing quote.
|
||||
advance();
|
||||
return makeToken(TOKEN_STRING);
|
||||
}
|
||||
|
||||
Token scanToken() {
|
||||
skipWhitespace();
|
||||
scanner.start = scanner.current;
|
||||
|
||||
if (isAtEnd()) return makeToken(TOKEN_EOF);
|
||||
|
||||
char c = advance();
|
||||
if (isAlpha(c)) return identifier();
|
||||
if (isDigit(c)) return number();
|
||||
|
||||
switch (c) {
|
||||
case '(': return makeToken(TOKEN_LEFT_PAREN);
|
||||
case ')': return makeToken(TOKEN_RIGHT_PAREN);
|
||||
case '{': return makeToken(TOKEN_LEFT_BRACE);
|
||||
case '}': return makeToken(TOKEN_RIGHT_BRACE);
|
||||
case ';': return makeToken(TOKEN_SEMICOLON);
|
||||
case ',': return makeToken(TOKEN_COMMA);
|
||||
case '.': return makeToken(TOKEN_DOT);
|
||||
case '-': return makeToken(TOKEN_MINUS);
|
||||
case '+': return makeToken(TOKEN_PLUS);
|
||||
case '/': return makeToken(TOKEN_SLASH);
|
||||
case '*': return makeToken(TOKEN_STAR);
|
||||
//> two-char
|
||||
case '!':
|
||||
return makeToken(
|
||||
match('=') ? TOKEN_BANG_EQUAL : TOKEN_BANG);
|
||||
case '=':
|
||||
return makeToken(
|
||||
match('=') ? TOKEN_EQUAL_EQUAL : TOKEN_EQUAL);
|
||||
case '<':
|
||||
return makeToken(
|
||||
match('=') ? TOKEN_LESS_EQUAL : TOKEN_LESS);
|
||||
case '>':
|
||||
return makeToken(
|
||||
match('=') ? TOKEN_GREATER_EQUAL : TOKEN_GREATER);
|
||||
//< two-char
|
||||
//> scan-string
|
||||
case '"': return string();
|
||||
}
|
||||
|
||||
return errorToken("Unexpected character.");
|
||||
}
|
19
src/vm.c
19
src/vm.c
@ -1,6 +1,7 @@
|
||||
#include "../include/common.h"
|
||||
#include "../include/vm.h"
|
||||
#include "../include/debug.h"
|
||||
#include "../include/compiler.h"
|
||||
#include <stdio.h>
|
||||
|
||||
VM vm;
|
||||
@ -67,9 +68,21 @@ static InterpretResult run(){
|
||||
#undef READ_BYTE
|
||||
}
|
||||
|
||||
InterpretResult interpret(Chunk *chunk){
|
||||
vm.chunk = chunk;
|
||||
InterpretResult interpret(const char *source){
|
||||
Chunk chunk;
|
||||
initChunk(&chunk);
|
||||
|
||||
if(!compile(source, &chunk)){
|
||||
freeChunk(&chunk);
|
||||
return INTERPRET_COMPILE_ERROR;
|
||||
}
|
||||
vm.chunk = &chunk;
|
||||
vm.ip = vm.chunk->code;
|
||||
return run();
|
||||
|
||||
InterpretResult result = run();
|
||||
|
||||
freeChunk(&chunk);
|
||||
return result;
|
||||
|
||||
}
|
||||
|
||||
|
@ -2,32 +2,74 @@
|
||||
#include "../include/chunk.h"
|
||||
#include "../include/debug.h"
|
||||
#include "../include/vm.h"
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(void){
|
||||
static void repl(){
|
||||
char line[1024];
|
||||
for(;;){
|
||||
printf("_> ");
|
||||
if(!fgets(line,sizeof(line),stdin)){
|
||||
printf("\n");
|
||||
break;
|
||||
}
|
||||
interpret(line);
|
||||
}
|
||||
}
|
||||
|
||||
static char* readFile(const char *path){
|
||||
FILE *file = fopen(path,"rb");
|
||||
|
||||
if(file == NULL){
|
||||
fprintf(stderr,"Could not open file \"%s\".\n",path);
|
||||
exit(74);
|
||||
}
|
||||
|
||||
fseek(file, 0L, SEEK_END);
|
||||
size_t fileSize = ftell(file);
|
||||
rewind(file);
|
||||
|
||||
char *buffer = (char *)malloc(fileSize+1);
|
||||
if(buffer == NULL){
|
||||
fprintf(stderr,"Out of memory for \"%s\".\n",path);
|
||||
exit(74);
|
||||
}
|
||||
|
||||
|
||||
size_t bytesRead = fread(buffer, sizeof(char), fileSize, file);
|
||||
if(bytesRead < fileSize){
|
||||
fprintf(stderr,"Could not read file \"%s\".\n",path);
|
||||
exit(74);
|
||||
}
|
||||
|
||||
|
||||
buffer[bytesRead] = '\0';
|
||||
fclose(file);
|
||||
return buffer;
|
||||
|
||||
}
|
||||
|
||||
static void runFile(const char *path){
|
||||
char *source = readFile(path);
|
||||
InterpretResult result = interpret(source);
|
||||
free(source);
|
||||
|
||||
if(result == INTERPRET_COMPILE_ERROR) exit(65);
|
||||
if(result == INTERPRET_RUNTIME_ERROR) exit(70);
|
||||
}
|
||||
|
||||
int main(int argc, char *argv[]){
|
||||
initVM();
|
||||
|
||||
Chunk chunk;
|
||||
initChunk(&chunk);
|
||||
if(argc == 1){
|
||||
repl();
|
||||
} else if(argc == 2){
|
||||
runFile(argv[1]);
|
||||
} else {
|
||||
fprintf(stderr,"Usage: Clox [path]\n");
|
||||
exit(64);
|
||||
}
|
||||
|
||||
int constant = addConstant(&chunk,1.25);
|
||||
writeChunk(&chunk, OP_CONSTANT,1);
|
||||
writeChunk(&chunk,constant,1);
|
||||
|
||||
|
||||
|
||||
constant = addConstant(&chunk,10);
|
||||
writeChunk(&chunk, OP_CONSTANT,2);
|
||||
writeChunk(&chunk,constant,2);
|
||||
|
||||
|
||||
writeChunk(&chunk, OP_DIVIDE, 3);
|
||||
writeChunk(&chunk, OP_RETURN,5);
|
||||
|
||||
disassembleChunk(&chunk,"Test Chunk");
|
||||
int res = interpret(&chunk);
|
||||
(void) res;
|
||||
freeVM();
|
||||
freeChunk(&chunk);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
BIN
tests/bin/01_main
Executable file
BIN
tests/bin/01_main
Executable file
Binary file not shown.
Loading…
Reference in New Issue
Block a user