Selaa lähdekoodia

Reorganize folders and added windows build with MSVC for debugging

master
FelixBrendel 7 vuotta sitten
vanhempi
commit
5f16d1fbb9
16 muutettua tiedostoa jossa 66 lisäystä ja 27 poistoa
  1. +2
    -1
      .gitignore
  2. +31
    -5
      build.bat
  3. +5
    -2
      build.sh
  4. +0
    -0
      src/.dir-locals.el
  5. +0
    -0
      src/assert.c
  6. +0
    -0
      src/ast.c
  7. +1
    -0
      src/built_ins.c
  8. +0
    -0
      src/env.c
  9. +1
    -1
      src/error.c
  10. +20
    -13
      src/eval.c
  11. +0
    -0
      src/helpers.c
  12. +2
    -1
      src/io.c
  13. +1
    -1
      src/main.c
  14. +0
    -0
      src/parse.c
  15. +0
    -0
      src/test.lsp
  16. +3
    -3
      src/testing.c

+ 2
- 1
.gitignore Näytä tiedosto

@@ -2,4 +2,5 @@
/*.exe
/*.ilk
/*.pdb
/.vs/
/.vs/
/vs/

+ 31
- 5
build.bat Näytä tiedosto

@@ -1,7 +1,33 @@
@echo off
clang main.c -g -o lisp.exe --std=c99 || exit /b 1
pushd %~dp0

echo.
echo --- Output Start ---
lisp test.lsp
echo --- Output End ---
set exeName=lisp.exe
set binDir=bin

mkdir quickbuild
pushd quickbuild

cl^
../src/main.c^
/Fe%exeName% /W3 /TC^
/nologo /EHsc /Z7^
/link /incremental /debug:fastlink

if %errorlevel% == 0 (
echo.
if not exist ..\%binDir% mkdir ..\%binDir%
move %exeName% ..\%binDir%\ > NUL
pushd ..\%binDir%
echo ---------- Output start ----------
%exeName%
echo ---------- Output end ----------
del %exeName% /S /Q > NUL
popd
) else (
echo.
echo Fucki'n 'ell
)

popd
rd quickbuild /S /Q
popd

+ 5
- 2
build.sh Näytä tiedosto

@@ -1,6 +1,9 @@
clang main.c -g -o lisp --std=c99 || exit 1
mkdir quickbuild
clang src/main.c -g -o ./quickbuild/lisp --std=c99 || exit 1

echo ""
echo "--- Output Start ---"
./lisp test.lsp
./quickbuild/lisp
echo "--- Output End ---"

rm -rf quickbuild

.dir-locals.el → src/.dir-locals.el Näytä tiedosto


assert.c → src/assert.c Näytä tiedosto


ast.c → src/ast.c Näytä tiedosto


built_ins.c → src/built_ins.c Näytä tiedosto

@@ -50,3 +50,4 @@ Ast_Node* built_in_divide(Ast_Node* operands) {
}
return create_ast_node_number(quotient);
}


env.c → src/env.c Näytä tiedosto


error.c → src/error.c Näytä tiedosto

@@ -38,6 +38,6 @@ char* Error_Type_to_string(Error_Type type) {
case Error_Type_Wrong_Number_Of_Arguments: return "Wrong number of arguments";
case Error_Type_Type_Missmatch: return "Type Missmatch";
case Error_Type_Not_Yet_Implemented: return "Not yet implemented";
case Error_Type_Unknown_Error: return "Unknown Error";
default: return "Unknown Error";
}
}

eval.c → src/eval.c Näytä tiedosto

@@ -8,7 +8,7 @@ Ast_Node* eval_expr(Ast_Node* node, Environment* env);
int is_truthy (Ast_Node* expression, Environment* env);

int list_length(Ast_Node* node) {
if (node->type != Ast_Node_Type_Nil)
if (node->type == Ast_Node_Type_Nil)
return 0;

if (node->type != Ast_Node_Type_Pair) {
@@ -16,12 +16,16 @@ int list_length(Ast_Node* node) {
return 0;
}

int len = 1;
while (1) {
break;
int len = 0;
while (node->type == Ast_Node_Type_Pair) {
++len;
node = node->value.pair->rest;
if (node->type == Ast_Node_Type_Nil)
return len;
}

return len;
create_error(Error_Type_Ill_Formed_List, node);
return 0;
}

void eval_operands(Ast_Node* operands, Environment* env) {
@@ -36,8 +40,8 @@ void eval_operands(Ast_Node* operands, Environment* env) {
}

Ast_Node* eval_expr(Ast_Node* node, Environment* env) {
#define report_error(_type) \
create_error(_type, node); \
#define report_error(_type) \
create_error(_type, node); \
return NULL

Ast_Node* ret = new(Ast_Node);
@@ -73,8 +77,10 @@ Ast_Node* eval_expr(Ast_Node* node, Environment* env) {
eval_operands(operands, env);
return built_in_divide(operands);
} else if (string_equal("if", operator_name)) {
if (list_length(operands) != 3) {
report_error(Error_Type_Wrong_Number_Of_Arguments);
int operands_length = list_length(operands);
if (operands_length != 2 && operands_length != 3) {
create_error(Error_Type_Wrong_Number_Of_Arguments, operands);
return NULL;
}

Ast_Node* condition = operands->value.pair->first;
@@ -83,12 +89,13 @@ Ast_Node* eval_expr(Ast_Node* node, Environment* env) {

if (is_truthy(condition, env))
return eval_expr(then_part->value.pair->first, env);
else
else if (operands_length == 3)
return eval_expr(else_part->value.pair->first, env);
/* } else if (string_equal("not", operator_name)) { */
else return create_ast_node_nil();
/* } else if (string_equal("not", operator_name)) { */

/* } else if (string_equal("and", operator_name)) { */
/* } else if (string_equal("or", operator_name)) { */
/* } else if (string_equal("and", operator_name)) { */
/* } else if (string_equal("or", operator_name)) { */
} else {
report_error(Error_Type_Not_Yet_Implemented);
}

helpers.c → src/helpers.c Näytä tiedosto


io.c → src/io.c Näytä tiedosto

@@ -24,7 +24,7 @@ void log_message(Log_Level type, char* message) {
case Log_Level_Warning: prefix = "WARNING"; break;
case Log_Level_Info: prefix = "INFO"; break;
case Log_Level_Debug: prefix = "DEBUG"; break;
case Log_Level_None: return;
default: return;
}
printf("%s: %s\n",prefix, message);
}
@@ -47,6 +47,7 @@ char* Ast_Node_Type_to_string(Ast_Node_Type type) {
case(Ast_Node_Type_Built_In_Function): return "built-in function";
case(Ast_Node_Type_Pair): return "pair";
}
return "unknown";
}

void print(Ast_Node* node) {

main.c → src/main.c Näytä tiedosto


parse.c → src/parse.c Näytä tiedosto


test.lsp → src/test.lsp Näytä tiedosto


testing.c → src/testing.c Näytä tiedosto

@@ -28,13 +28,13 @@

#define assert_equal_int(variable, value) \
if (variable != value) { \
print_assert_equal_fail(variable, value, int, "%d"); \
print_assert_equal_fail(variable, value, size_t, "%zd"); \
return fail; \
}

#define assert_not_equal_int(variable, value) \
if (variable == value) { \
print_assert_not_equal_fail(variable, value, int, "%d"); \
print_assert_not_equal_fail(variable, value, size_t, "%zd"); \
return fail; \
}

@@ -60,7 +60,7 @@
#define invoke_test(name) \
printf("" #name ":"); \
if (name() == pass) { \
for(int i = strlen(#name); i < 70; ++i) \
for(size_t i = strlen(#name); i < 70; ++i) \
printf((i%3==1)? "." : " "); \
printf("%spassed%s\n", console_green, console_normal); \
} \

Ladataan…
Peruuta
Tallenna