chibicc/main.c

154 lines
3.3 KiB
C
Raw Normal View History

#include <ctype.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef enum {
TK_RESERVED, // Keywords or punctuators
TK_NUM, // Numeric literals
TK_EOF, // End-of-file markers
} TokenKind;
// Token type
typedef struct Token Token;
struct Token {
TokenKind kind; // Token kind
Token *next; // Next token
int val; // If kind is TK_NUM, its value
char *loc; // Token location
int len; // Token length
};
2019-08-03 06:20:08 +03:00
// Input string
static char *current_input;
// Reports an error and exit.
static void error(char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
exit(1);
}
// Reports an error location and exit.
static void verror_at(char *loc, char *fmt, va_list ap) {
int pos = loc - current_input;
fprintf(stderr, "%s\n", current_input);
fprintf(stderr, "%*s", pos, ""); // print pos spaces.
fprintf(stderr, "^ ");
vfprintf(stderr, fmt, ap);
fprintf(stderr, "\n");
exit(1);
}
static void error_at(char *loc, char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
verror_at(loc, fmt, ap);
}
static void error_tok(Token *tok, char *fmt, ...) {
va_list ap;
va_start(ap, fmt);
verror_at(tok->loc, fmt, ap);
}
// Consumes the current token if it matches `s`.
static bool equal(Token *tok, char *s) {
return strlen(s) == tok->len &&
!strncmp(tok->loc, s, tok->len);
}
// Ensure that the current token is `s`.
static Token *skip(Token *tok, char *s) {
if (!equal(tok, s))
error_tok(tok, "expected '%s'", s);
return tok->next;
}
// Ensure that the current token is TK_NUM.
static int get_number(Token *tok) {
if (tok->kind != TK_NUM)
error_tok(tok, "expected a number");
return tok->val;
}
// Create a new token and add it as the next token of `cur`.
static Token *new_token(TokenKind kind, Token *cur, char *str, int len) {
Token *tok = calloc(1, sizeof(Token));
tok->kind = kind;
tok->loc = str;
tok->len = len;
cur->next = tok;
return tok;
}
// Tokenize `current_input` and returns new tokens.
static Token *tokenize(void) {
char *p = current_input;
Token head = {};
Token *cur = &head;
2019-08-03 06:20:08 +03:00
while (*p) {
// Skip whitespace characters.
if (isspace(*p)) {
2019-08-03 06:20:08 +03:00
p++;
continue;
}
// Numeric literal
if (isdigit(*p)) {
cur = new_token(TK_NUM, cur, p, 0);
char *q = p;
cur->val = strtoul(p, &p, 10);
cur->len = p - q;
continue;
}
// Punctuator
if (*p == '+' || *p == '-') {
cur = new_token(TK_RESERVED, cur, p++, 1);
continue;
}
error_at(p, "invalid token");
}
new_token(TK_EOF, cur, p, 0);
return head.next;
}
int main(int argc, char **argv) {
if (argc != 2)
error("%s: invalid number of arguments", argv[0]);
current_input = argv[1];
Token *tok = tokenize();
printf(" .globl main\n");
printf("main:\n");
// The first token must be a number
printf(" mov $%d, %%rax\n", get_number(tok));
tok = tok->next;
// ... followed by either `+ <number>` or `- <number>`.
while (tok->kind != TK_EOF) {
if (equal(tok, "+")) {
printf(" add $%d, %%rax\n", get_number(tok->next));
tok = tok->next->next;
2019-08-03 06:20:08 +03:00
continue;
}
tok = skip(tok, "-");
printf(" sub $%d, %%rax\n", get_number(tok));
tok = tok->next;
2019-08-03 06:20:08 +03:00
}
printf(" ret\n");
return 0;
}