Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JVM backend #710

Open
wants to merge 35 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
77a3ef4
Adds jvm backend, print and addi support
Feb 16, 2023
4bf4503
Removes jars
Feb 20, 2023
d2df41a
adds shifts and tests
asta12 Mar 14, 2023
e828a0a
Adds comparison instructions and tests
asta12 Mar 14, 2023
e86ca5a
adds float cmp instructions and tests
asta12 Mar 14, 2023
eb81c23
pattern matching integers
asta12 Mar 16, 2023
ea70cf3
adds pattern matching and records
asta12 Mar 20, 2023
6412941
Adds tests for lambdas, let-ins and pattern matching
asta12 Mar 21, 2023
52bbcc7
Adds boolean pattern matching and tests
asta12 Mar 21, 2023
cb76b1b
Adds chars and char intrinsics + tests
asta12 Mar 21, 2023
1a73226
ADT without pattern matching
asta12 Mar 23, 2023
ef8dd07
Adt pattern matching start
asta12 Mar 24, 2023
3dbc056
fixes lambdas
asta12 Mar 24, 2023
7ebb5e0
fixes bug with records and functions
asta12 Mar 24, 2023
f2052aa
ADT pattern matching bug fixes
asta12 Mar 28, 2023
b522306
ADT test + random intrinsics and test
asta12 Mar 31, 2023
778122e
adds some intrinsics
asta12 Apr 26, 2023
6a3b61c
more intrinsics
asta12 Apr 27, 2023
10e2dea
Adds more intrinsics and fixes bug with calling global functions from…
asta12 May 5, 2023
34eca15
some more intrinsics
asta12 May 8, 2023
b093d61
fixes bug with localvars in functions
asta12 May 8, 2023
7cfd4fb
pattern matching for sequences
asta12 May 8, 2023
f62c828
bug fixes and record collecting
asta12 May 9, 2023
d87976d
Bug fixes, adds recordupdate, moves constant sequences to new class
asta12 May 17, 2023
2dcb315
some bugfixes and code reducing
asta12 May 19, 2023
d1095ea
bug fixes
asta12 May 31, 2023
700ca06
record update bug fix
asta12 Jun 2, 2023
bc82ba6
recordupdate bug fix
asta12 Jun 3, 2023
35d7467
backend now generates package and runscript
asta12 Jun 5, 2023
2273506
Removes java tests from stdlib
asta12 Jun 7, 2023
4f690c5
changes names of intrinsics classes
asta12 Jun 8, 2023
020e441
Make file automatic test in progress
asta12 Jun 14, 2023
f515c84
constructorTag implemented
asta12 Aug 25, 2023
c211879
Fixes test script
asta12 Oct 4, 2023
152f68a
Removes some files no longer used.
asta12 Oct 4, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions make.sh
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,32 @@ run_js_web_test() {
./test/js/web/make.sh run-test-quiet $1
}

compile_and_run_jvm_test() {
set +e
binary=$(mktemp -d)
compile="./build/mi compile --to-jvm --test --output $binary"
output="$($compile $1 2>&1)"
exit_code=$?
if [ $exit_code -ne 0 ]
then
echo "ERROR: Java backend could not compile $1 \n"
rm -r $binary
else
runscript=$(basename $1 | cut -d . -f1)
output="$output\n$(cd $binary && java -jar $runscript.jar)"
exit_code=$?
rm -r $binary
if [ $exit_code -ne 0 ]
then
echo "[JVM BACKEND] $1: $output FAIL\n"
echo $output
else
echo "[JVM BACKEND] $1: $output OK"
fi
fi
set -e
}

case $1 in
boot)
build_boot
Expand All @@ -167,6 +193,9 @@ case $1 in
run-js-web-test)
run_js_web_test "$2"
;;
compile-and-run-jvm-test)
compile_and_run_jvm_test "$2"
;;
lint)
lint
;;
Expand Down
2 changes: 1 addition & 1 deletion src/main/compile.mc
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ let compileWithUtests = lam options : Options. lam sourcePath. lam ast.
printLn (expr2str ast) else ());

let res =
if options.toJVM then compileMCoreToJVM ast else
if options.toJVM then compileMCoreToJVM ast sourcePath options else
if options.toJavaScript then compileMCoreToJS
{ compileJSOptionsEmpty with
targetPlatform = parseJSTarget options.jsTarget
Expand Down
18 changes: 0 additions & 18 deletions stdlib/jvm/README.md

This file was deleted.

16 changes: 15 additions & 1 deletion stdlib/jvm/ast.mc
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ lang JVMAst
| BInt {instr: String, nr: Int}
| BFloat {instr: String, nr: Float}
| BLong {instr: String, nr: Int}
| TryCatch {instr: String, try: [Bytecode], catch: [Bytecode]}

syn Field =
| Field {name: String, t: String}
| ConstantFieldInt {name: String, t: String, constant: Int}

syn Function =
| Function {name: String, descriptor: String, bytecode: [Bytecode]}
Expand Down Expand Up @@ -97,6 +99,14 @@ lang JVMAst
sem createField name =
| t -> Field {name = name, t = t}

sem createConstantFieldInt : String -> String -> Int -> Field
sem createConstantFieldInt name t =
| const -> ConstantFieldInt {name = name, t = t, constant = const}

sem createTryCatch : [Bytecode] -> [Bytecode] -> Bytecode
sem createTryCatch try =
| catch -> TryCatch {instr = "trycatch", try = try, catch = catch}

-- toString JSON

sem toStringProg : JVMProgram -> String
Expand All @@ -117,7 +127,9 @@ lang JVMAst
sem toStringField : Field -> String
sem toStringField =
| Field {name = name, t = t} ->
(join ["{", "\"name\":", (stringify name), ",\"type\":", (stringify t), "}"])
(join ["{", "\"kind\":\"none\"", ",\"name\":", (stringify name), ",\"type\":", (stringify t), "}"])
| ConstantFieldInt {name = name, t = t, constant = constant} ->
(join ["{", "\"kind\":\"int\"", ",\"name\":", (stringify name), ",\"type\":", (stringify t), ",\"constant\":", int2string constant, "}"])

sem toStringFunction : Function -> String
sem toStringFunction =
Expand All @@ -138,5 +150,7 @@ lang JVMAst
(join ["{", "\"type\":", "\"arg_long\"", ",\"instr\":", (stringify i), ",\"nr\":", (int2string nr), "}"])
| BEmpty {instr = i} ->
(join ["{", "\"type\":", "\"empty\"", ",\"instr\":", (stringify i), "}"])
| TryCatch {instr = i, try = t, catch = c} ->
(join ["{", "\"type\":", "\"trycatch\"", ",\"instr\":", (stringify i), ",\"try\":[", (commaSeparate (map toStringBytecode t)), "],\"catch\":[", (commaSeparate (map toStringBytecode c)), "]}"])

end
26 changes: 26 additions & 0 deletions stdlib/jvm/codegen/ClassWriterF.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package codegen;

import org.objectweb.asm.ClassWriter;

public class ClassWriterF extends ClassWriter {

public ClassWriterF(int flags) {
super(flags);
}

@Override
protected String getCommonSuperClass(final String type1, final String type2) {
try {
return super.getCommonSuperClass(type1, type2);
} catch (TypeNotPresentException e) {
if (type1 == type2) {
return type1;
} else if (type1.startsWith("pkg/") || type2.startsWith("pkg/")) {
return "java/lang/Object";
} else if (type1.startsWith("scala") || type2.startsWith("scala")) {
return "java/lang/Object";
}
throw new RuntimeException("Unknown superclass: " + type1 + " " + type2);
}
}
}
Loading