Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
brainfucker
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Taddeüs Kroes
brainfucker
Commits
81955ca5
Commit
81955ca5
authored
Jan 10, 2015
by
Taddeüs Kroes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup
parent
f5c9feb6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
20 deletions
+23
-20
bf.ml
bf.ml
+19
-15
run.sh
run.sh
+4
-5
No files found.
bf.ml
View file @
81955ca5
...
...
@@ -159,22 +159,26 @@ let compile_c memsize program =
let
rec
compile_commands
buf
=
function
|
[]
->
buf
|
cmd
::
tl
->
compile_commands
(
buf
^
compile_command
cmd
^
"
\n
"
)
tl
and
compile_offset
o
=
function
|
Shift
n
->
"p"
^
add
n
|
Add
n
->
ptr
o
^
add
n
|
Goto
0
->
"p = mem"
|
Goto
n
->
"p = mem + "
^
string_of_int
n
|
Set
n
->
ptr
o
^
" = "
^
string_of_int
n
|
Out
->
"putchar("
^
ptr
o
^
")"
|
In
->
ptr
o
^
" = getchar()"
|
Mul
(
x
,
1
)
->
ptr
o
^
" += "
^
ptr
(
o
+
x
)
|
Mul
(
x
,
-
1
)
->
ptr
o
^
" -= "
^
ptr
(
o
+
x
)
|
Mul
(
x
,
y
)
->
ptr
o
^
" += "
^
ptr
(
o
+
x
)
^
" * "
^
string_of_int
y
|
cmd
->
failwith
"cannot offset command: "
^
string_of_command
cmd
and
compile_command
=
function
|
Loop
p
->
"while (*p != 0) {
\n
"
^
indent
(
compile_commands
""
p
)
^
"}"
|
Offset
(
o
,
cmd
)
->
compile_offset
o
cmd
^
";"
|
cmd
->
compile_offset
0
cmd
^
";"
|
Loop
p
->
"while (*p) {
\n
"
^
indent
(
compile_commands
""
p
)
^
"}"
|
Offset
(
o
,
cmd
)
->
begin
match
cmd
with
|
Shift
n
->
"p"
^
add
n
|
Add
n
->
ptr
o
^
add
n
|
Goto
0
->
"p = mem"
|
Goto
n
->
"p = mem + "
^
string_of_int
n
|
Set
n
->
ptr
o
^
" = "
^
string_of_int
n
|
Out
->
"putchar("
^
ptr
o
^
")"
|
In
->
ptr
o
^
" = getchar()"
|
Mul
(
x
,
1
)
->
ptr
o
^
" += "
^
ptr
(
o
+
x
)
|
Mul
(
x
,
-
1
)
->
ptr
o
^
" -= "
^
ptr
(
o
+
x
)
|
Mul
(
x
,
y
)
->
ptr
o
^
" += "
^
ptr
(
o
+
x
)
^
" * "
^
string_of_int
y
|
_
->
failwith
"cannot compile: "
^
string_of_command
cmd
end
^
";"
|
cmd
->
compile_command
(
Offset
(
0
,
cmd
))
in
"#include <stdio.h>
\n
"
^
"#include <stdlib.h>
\n
"
^
...
...
run.sh
View file @
81955ca5
#!/usr/bin/env bash
set
-e
make
-s
bf
./bf | opt
-O3
-o
prog.bc
make
-s
prog
./prog
rm
-f
prog
{
,.bc,.o
}
cat
>
_tmp.b
make
-s
_tmp-opt
./_tmp-opt
rm
-f
_tmp
*
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment