-
-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* working on gtk ide * [ADDED] optimized ternary expressions * [FIXED] declaring a field with a type of template based array * [ADDED] unit-test for declaring a field with a type of template based array * [ADDED] #89 : new functionality - MemoryStream, BitArray, SortedList, SortedArrayList * fixing elt64-cli * [ADDED] #95 : LiteralBuffer, WideBuffer * #590 : elenavm : dynamic class inheritance - allocate in perm, copy vmt with custom routine
- Loading branch information
Showing
126 changed files
with
5,230 additions
and
803 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
6.0.10 | ||
6.1.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
define INVOKER 10001h | ||
|
||
define CORE_SINGLE_CONTENT 2000Bh | ||
|
||
define tt_stack_root 0028h | ||
|
||
// INVOKER(function, arg) | ||
// INVOKER(function, arg) | ||
procedure % INVOKER | ||
|
||
// ; RCX - function | ||
// ; RDX - arg | ||
// ; save registers | ||
push 0 | ||
push rsi | ||
push rdi | ||
push rbx | ||
push rbp | ||
push r12 | ||
push r13 | ||
push r14 | ||
push r15 | ||
|
||
// ; declare new frame | ||
xor rdi, rdi | ||
mov rax, rcx | ||
push 0 // ; FrameHeader.previousFrame | ||
push 0 // ; FrameHeader.reserved | ||
mov rbp, rsp // ; FrameHeader | ||
|
||
mov [data : %CORE_SINGLE_CONTENT + tt_stack_root], rsp | ||
|
||
push 0 | ||
push r8 // ; arg | ||
|
||
call rax | ||
add rsp, 32 // ; clear FrameHeader+arg | ||
mov rax, rbx | ||
|
||
// ; restore registers | ||
pop r15 | ||
pop r14 | ||
pop r13 | ||
pop r12 | ||
pop rbp | ||
pop rbx | ||
pop rdi | ||
pop rsi | ||
add rsp, 8 | ||
ret | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.