-
Notifications
You must be signed in to change notification settings - Fork 237
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
163 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,8 @@ __pycache__ | |
.vscode | ||
|
||
**/*.o | ||
.DS_Store | ||
.DS_Store | ||
|
||
# vim swap files | ||
*.swp | ||
*.swo |
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,27 @@ | ||
# Tower of Hanoi puzzle. | ||
# | ||
# Input: Number of disks. | ||
# Output: Each move in order, one on each line, where a move `src dst` indicates | ||
# that the top disk from rod `src` should be moved to rod `dst`. | ||
|
||
@hanoi (disks: int, src: int, dst: int, spare: int) { | ||
zero: int = const 0; | ||
pos: bool = gt disks zero; | ||
br pos .then .else; | ||
.then: | ||
one: int = const 1; | ||
above: int = sub disks one; | ||
call @hanoi above src spare dst; | ||
print src dst; | ||
call @hanoi above spare dst src; | ||
.else: | ||
ret; | ||
} | ||
|
||
# ARGS: 3 | ||
@main (disks: int) { | ||
src: int = const 0; | ||
dst: int = const 2; | ||
spare: int = const 1; | ||
call @hanoi disks src dst spare; | ||
} |
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,7 @@ | ||
0 2 | ||
0 1 | ||
2 1 | ||
0 2 | ||
1 0 | ||
1 2 | ||
0 2 |
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 @@ | ||
total_dyn_inst: 99 |
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,30 @@ | ||
# ARGS: 123 | ||
@main (input: int){ | ||
n: int = id input; | ||
v0: int = const 0; | ||
v1: int = const 10; | ||
result: int = id v0; | ||
v2: bool = const true; | ||
notdone: bool = id v2; | ||
.for.cond.3: | ||
v4: bool = id notdone; | ||
br v4 .for.body.3 .for.end.3; | ||
.for.body.3: | ||
v5: int = id n; | ||
a: int = div v5 v1; | ||
floor: int = mul a v1; | ||
remainder: int = sub v5 floor; | ||
result: int = mul result v1; | ||
result: int = add result remainder; | ||
n: int = id a; | ||
comp1: bool = eq n v0; | ||
br comp1 .if.body .for.incre; | ||
.if.body: | ||
notdone: bool = const false; | ||
jmp .for.cond.3; | ||
.for.incre: | ||
jmp .for.cond.3; | ||
.for.end.3: | ||
print result; | ||
} | ||
|
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 @@ | ||
321 |
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 @@ | ||
total_dyn_inst: 46 |
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,83 @@ | ||
# Approximate Euler's number using the Taylor series | ||
|
||
# ARGS: 18 | ||
@main(n: float) { | ||
v0: float = id n; | ||
e: float = call @taylor_series_euler v0; | ||
e: float = id e; | ||
v1: float = id e; | ||
print v1; | ||
v2: int = const 0; | ||
} | ||
|
||
@factorial(n: float): float { | ||
v1: float = id n; | ||
v2: float = const 1; | ||
v3: bool = fle v1 v2; | ||
br v3 .then.0 .else.0; | ||
.then.0: | ||
v4: float = const 1; | ||
ret v4; | ||
jmp .endif.0; | ||
.else.0: | ||
.endif.0: | ||
v5: float = id n; | ||
v6: float = const 1; | ||
v7: float = fsub v5 v6; | ||
v8: float = call @factorial v7; | ||
v9: float = id n; | ||
v10: float = fmul v8 v9; | ||
ret v10; | ||
} | ||
|
||
@taylor_series_euler(n: float): float { | ||
v0: float = const 0; | ||
e: float = id v0; | ||
v2: float = const 0; | ||
i: float = id v2; | ||
.for.cond.1: | ||
v3: float = id i; | ||
v4: float = id n; | ||
v5: bool = flt v3 v4; | ||
br v5 .for.body.1 .for.end.1; | ||
.for.body.1: | ||
v6: float = const 1; | ||
v7: float = id i; | ||
v8: float = call @factorial v7; | ||
v9: float = fdiv v6 v8; | ||
v10: float = id e; | ||
v11: float = fadd v9 v10; | ||
e: float = id v11; | ||
v12: float = id i; | ||
v13: float = const 1; | ||
v14: float = fadd v12 v13; | ||
i: float = id v14; | ||
jmp .for.cond.1; | ||
.for.end.1: | ||
v15: float = id e; | ||
ret v15; | ||
} | ||
|
||
# The Typescript file that generated the above code: | ||
# ts2bril euler.ts | bril2txt > euler.bril | ||
|
||
# function main(n: number) { | ||
# var e: number = taylor_series_euler(n); | ||
# console.log(e); | ||
# } | ||
# | ||
# function factorial(n: number): number { | ||
# if n <= 1 { | ||
# return 1; | ||
# } | ||
# return factorial(n-1)*n; | ||
# } | ||
# | ||
# function taylor_series_euler(n: number): number { | ||
# var e: number = 0; | ||
# var i: number; | ||
# for(let i = 0; i < n; i=i+1) { | ||
# e = 1 / factorial(i) + e; | ||
# } | ||
# return e; | ||
# } |
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 @@ | ||
2.71828182845904553 |
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 @@ | ||
total_dyn_inst: 1908 |
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