diff --git a/examples/shell/const.q b/examples/shell/const.q index 4f7eed7..9dadaf2 100644 --- a/examples/shell/const.q +++ b/examples/shell/const.q @@ -1,7 +1,7 @@ -const idtype { +idtype const { pid 1 } -const state { +state const { exited 0x4 } \ No newline at end of file diff --git a/examples/winapi/winapi.q b/examples/winapi/winapi.q index 213f1ed..702e0cb 100644 --- a/examples/winapi/winapi.q +++ b/examples/winapi/winapi.q @@ -1,4 +1,4 @@ -extern user32 { +user32 extern { MessageBoxA(window *any, text *byte, title *byte, flags uint) -> int } diff --git a/lib/core/core_windows.q b/lib/core/core_windows.q index 516794a..abb6428 100644 --- a/lib/core/core_windows.q +++ b/lib/core/core_windows.q @@ -1,3 +1,13 @@ +cp const { + utf8 65001 +} + +kernel32 extern { + SetConsoleCP(cp uint) + SetConsoleOutputCP(cp uint) + ExitProcess(code uint) +} + init() { kernel32.SetConsoleCP(cp.utf8) kernel32.SetConsoleOutputCP(cp.utf8) @@ -11,14 +21,4 @@ exit() { crash() { kernel32.ExitProcess(1) -} - -const cp { - utf8 65001 -} - -extern kernel32 { - SetConsoleCP(cp uint) - SetConsoleOutputCP(cp uint) - ExitProcess(code uint) } \ No newline at end of file diff --git a/lib/io/io.q b/lib/io/io.q index 760c9db..e05f914 100644 --- a/lib/io/io.q +++ b/lib/io/io.q @@ -1,5 +1,23 @@ import sys +std const { + in 0 + out 1 + err 2 +} + +in(buffer []byte) -> int { + return sys.read(std.in, buffer, len(buffer)) +} + +out(buffer []byte) -> int { + return sys.write(std.out, buffer, len(buffer)) +} + +error(buffer []byte) -> int { + return sys.write(std.err, buffer, len(buffer)) +} + read(fd int, buffer []byte) -> int { return sys.read(fd, buffer, len(buffer)) } diff --git a/lib/io/std.q b/lib/io/std.q deleted file mode 100644 index c74cb52..0000000 --- a/lib/io/std.q +++ /dev/null @@ -1,19 +0,0 @@ -import sys - -in(buffer []byte) -> int { - return sys.read(std.in, buffer, len(buffer)) -} - -out(buffer []byte) -> int { - return sys.write(std.out, buffer, len(buffer)) -} - -error(buffer []byte) -> int { - return sys.write(std.err, buffer, len(buffer)) -} - -const std { - in 0 - out 1 - err 2 -} \ No newline at end of file diff --git a/lib/mem/alloc_windows.q b/lib/mem/alloc_windows.q index 3eda616..2b0c016 100644 --- a/lib/mem/alloc_windows.q +++ b/lib/mem/alloc_windows.q @@ -1,4 +1,4 @@ -extern kernel32 { +kernel32 extern { VirtualAlloc(address int, size uint, flags uint32, protection uint32) -> *any } diff --git a/lib/mem/const_linux.q b/lib/mem/const_linux.q index 9193a01..72dd4f4 100644 --- a/lib/mem/const_linux.q +++ b/lib/mem/const_linux.q @@ -1,9 +1,9 @@ -const prot { - read 0x1 +prot const { + read 0x1 write 0x2 } -const map { - private 0x02 +map const { + private 0x02 anonymous 0x20 } \ No newline at end of file diff --git a/lib/mem/const_mac.q b/lib/mem/const_mac.q index 7aac429..3f654cc 100644 --- a/lib/mem/const_mac.q +++ b/lib/mem/const_mac.q @@ -1,9 +1,9 @@ -const prot { - read 0x1 +prot const { + read 0x1 write 0x2 } -const map { - private 0x02 +map const { + private 0x02 anonymous 0x1000 } \ No newline at end of file diff --git a/lib/mem/const_windows.q b/lib/mem/const_windows.q index 7008e67..acc7f55 100644 --- a/lib/mem/const_windows.q +++ b/lib/mem/const_windows.q @@ -1,9 +1,9 @@ -const page { +page const { readwrite 0x0004 } -const mem { - commit 0x1000 - reserve 0x2000 +mem const { + commit 0x1000 + reserve 0x2000 decommit 0x4000 } \ No newline at end of file diff --git a/lib/mem/free_windows.q b/lib/mem/free_windows.q index 3cf8a91..d9bd818 100644 --- a/lib/mem/free_windows.q +++ b/lib/mem/free_windows.q @@ -1,4 +1,4 @@ -extern kernel32 { +kernel32 extern { VirtualFree(address *any, size uint, type uint32) -> bool } diff --git a/lib/sys/sys_windows.q b/lib/sys/sys_windows.q index 59e6769..d3d3634 100644 --- a/lib/sys/sys_windows.q +++ b/lib/sys/sys_windows.q @@ -10,7 +10,7 @@ write(fd int, buffer *byte, length int) -> int { return length } -extern kernel32 { +kernel32 extern { GetStdHandle(handle int64) -> int64 ReadConsole(fd int64, buffer *byte, length uint32, written *uint32) -> bool WriteConsoleA(fd int64, buffer *byte, length uint32, written *uint32) -> bool diff --git a/lib/thread/thread_linux.q b/lib/thread/thread_linux.q index 7d3429c..7652537 100644 --- a/lib/thread/thread_linux.q +++ b/lib/thread/thread_linux.q @@ -1,6 +1,16 @@ import core import sys +clone const { + vm 0x100 + fs 0x200 + files 0x400 + sighand 0x800 + parent 0x8000 + thread 0x10000 + io 0x80000000 +} + create(func *any) -> int { stack := sys.mmap(0, 4096, 0x1|0x2, 0x02|0x20|0x100) stack += 4096 - 8 @@ -8,14 +18,4 @@ create(func *any) -> int { stack -= 8 store(stack, 8, func) return sys.clone(clone.vm|clone.fs|clone.files|clone.sighand|clone.parent|clone.thread|clone.io, stack, 0, 0, 0) -} - -const clone { - vm 0x100 - fs 0x200 - files 0x400 - sighand 0x800 - parent 0x8000 - thread 0x10000 - io 0x80000000 } \ No newline at end of file diff --git a/lib/thread/thread_windows.q b/lib/thread/thread_windows.q index 7bb565f..dd5136b 100644 --- a/lib/thread/thread_windows.q +++ b/lib/thread/thread_windows.q @@ -1,7 +1,7 @@ -create(func *any) -> int { - return kernel32.CreateThread(0, 4096, func, 0) +kernel32 extern { + CreateThread(attributes int, stackSize int, address *any, parameter int) -> int } -extern kernel32 { - CreateThread(attributes int, stackSize int, address *any, parameter int) -> int +create(func *any) -> int { + return kernel32.CreateThread(0, 4096, func, 0) } \ No newline at end of file diff --git a/src/errors/Common.go b/src/errors/Common.go index 206d4c5..93097ee 100644 --- a/src/errors/Common.go +++ b/src/errors/Common.go @@ -2,12 +2,10 @@ package errors var ( EmptySwitch = &Base{"Empty switch"} - ExpectedConstName = &Base{"Expected a name for the const group"} InvalidDefinition = &Base{"Invalid definition"} ExpectedFunctionDefinition = &Base{"Expected function definition"} ExpectedIfBeforeElse = &Base{"Expected an 'if' block before 'else'"} ExpectedPackageName = &Base{"Expected package name"} - ExpectedDLLName = &Base{"Expected DLL name"} InvalidNumber = &Base{"Invalid number"} InvalidCondition = &Base{"Invalid condition"} InvalidExpression = &Base{"Invalid expression"} diff --git a/src/scanner/scanConst.go b/src/scanner/scanConst.go index f3223f1..5a83b0a 100644 --- a/src/scanner/scanConst.go +++ b/src/scanner/scanConst.go @@ -9,14 +9,8 @@ import ( // scanConst scans a block of constants. func (s *Scanner) scanConst(file *fs.File, tokens token.List, i int) (int, error) { - i++ - - if tokens[i].Kind != token.Identifier { - return i, errors.New(errors.ExpectedConstName, file, tokens[i].Position) - } - groupName := tokens[i].Text(file.Bytes) - i++ + i += 2 if tokens[i].Kind != token.BlockStart { return i, errors.New(errors.MissingBlockStart, file, tokens[i].Position) diff --git a/src/scanner/scanExtern.go b/src/scanner/scanExtern.go index 82f3b85..140c4ae 100644 --- a/src/scanner/scanExtern.go +++ b/src/scanner/scanExtern.go @@ -8,14 +8,8 @@ import ( // scanExtern scans a block of external function declarations. func (s *Scanner) scanExtern(file *fs.File, tokens token.List, i int) (int, error) { - i++ - - if tokens[i].Kind != token.Identifier { - return i, errors.New(errors.ExpectedDLLName, file, tokens[i].Position) - } - dllName := tokens[i].Text(file.Bytes) - i++ + i += 2 if tokens[i].Kind != token.BlockStart { return i, errors.New(errors.MissingBlockStart, file, tokens[i].Position) diff --git a/src/scanner/scanFile.go b/src/scanner/scanFile.go index 0d9d7a4..234dd6e 100644 --- a/src/scanner/scanFile.go +++ b/src/scanner/scanFile.go @@ -43,6 +43,10 @@ func (s *Scanner) scanFile(path string, pkg string) error { i, err = s.scanFunction(file, tokens, i) case token.BlockStart: i, err = s.scanStruct(file, tokens, i) + case token.Extern: + i, err = s.scanExtern(file, tokens, i) + case token.Const: + i, err = s.scanConst(file, tokens, i) case token.GroupEnd: return errors.New(errors.MissingGroupStart, file, next.Position) case token.BlockEnd: @@ -54,10 +58,6 @@ func (s *Scanner) scanFile(path string, pkg string) error { } case token.Import: i, err = s.scanImport(file, tokens, i) - case token.Extern: - i, err = s.scanExtern(file, tokens, i) - case token.Const: - i, err = s.scanConst(file, tokens, i) case token.EOF: return nil case token.Invalid: diff --git a/tests/errors/ExpectedDLLName.q b/tests/errors/ExpectedDLLName.q deleted file mode 100644 index de11df4..0000000 --- a/tests/errors/ExpectedDLLName.q +++ /dev/null @@ -1 +0,0 @@ -extern {} \ No newline at end of file diff --git a/tests/errors_test.go b/tests/errors_test.go index 8165e97..8880905 100644 --- a/tests/errors_test.go +++ b/tests/errors_test.go @@ -15,7 +15,6 @@ var errs = []struct { ExpectedError error }{ {"EmptySwitch.q", errors.EmptySwitch}, - {"ExpectedDLLName.q", errors.ExpectedDLLName}, {"ExpectedFunctionDefinition.q", errors.ExpectedFunctionDefinition}, {"ExpectedIfBeforeElse.q", errors.ExpectedIfBeforeElse}, {"ExpectedIfBeforeElse2.q", errors.ExpectedIfBeforeElse}, diff --git a/tests/programs/const.q b/tests/programs/const.q index c947f1a..5ce99b5 100644 --- a/tests/programs/const.q +++ b/tests/programs/const.q @@ -1,6 +1,6 @@ -const num { - one 1 - two 2 +num const { + one 1 + two 2 three 3 }