summaryrefslogtreecommitdiff
path: root/examples/gfcc/ImperJVM.gf
diff options
context:
space:
mode:
authoraarne <unknown>2004-09-19 20:27:01 +0000
committeraarne <unknown>2004-09-19 20:27:01 +0000
commitdf4cbb482f0546b884eb210d825c794d14f82712 (patch)
treecc8ecc187cdd2ce07926308ee1656a1fa3a213b7 /examples/gfcc/ImperJVM.gf
parent3a1f403a0146f4717b210373167640a07f0248dd (diff)
report
Diffstat (limited to 'examples/gfcc/ImperJVM.gf')
-rw-r--r--examples/gfcc/ImperJVM.gf74
1 files changed, 57 insertions, 17 deletions
diff --git a/examples/gfcc/ImperJVM.gf b/examples/gfcc/ImperJVM.gf
index 9acbfa263..59506c47b 100644
--- a/examples/gfcc/ImperJVM.gf
+++ b/examples/gfcc/ImperJVM.gf
@@ -1,17 +1,27 @@
---# -path=.:../prelude
-
-concrete ImperJVM of Imper = open Prelude, Precedence, ResImper in {
+concrete ImperJVM of Imper = open ResImper in {
flags lexer=codevars ; unlexer=code ; startcat=Stm ;
+
lincat
+ Body = {s,s2 : Str} ; -- code, storage for locals
Stm = Instr ;
- Typ = SS ;
- Exp = SS ;
- Var = SS ;
lin
- Decl typ cont = instrc (
- "alloc_" ++ typ.s ++ cont.$0
+ Empty = ss [] ;
+ Funct args val body rest = ss (
+ ".method" ++ rest.$0 ++ paren args.s ++ val.s ++ ";" ++
+ ".limit" ++ "locals" ++ body.s2 ++ ";" ++
+ ".limit" ++ "stack" ++ "1000" ++ ";" ++
+ body.s ++
+ ".end" ++ "method" ++ ";" ++
+ rest.s
+ ) ;
+ BodyNil stm = stm ;
+ BodyCons a as body = instrb a.s (
+ "alloc" ++ a.s ++ body.$0 ++ body.s2) (body ** {s3 = []});
+
+ Decl typ cont = instrb typ.s (
+ "alloc" ++ typ.s ++ cont.$0
) cont ;
Assign t x exp = instrc (
exp.s ++
@@ -20,26 +30,56 @@ flags lexer=codevars ; unlexer=code ; startcat=Stm ;
Return t exp = instr (
exp.s ++
t.s ++ "_return") ;
- While exp loop = instrc (
- "TEST:" ++ exp.s ++
- "ifzero_goto" ++ "END" ++ ";" ++
- loop.s ++
- "END"
- ) ;
+ While exp loop =
+ let
+ test = "TEST_" ++ loop.s2 ;
+ end = "END_" ++ loop.s2
+ in instrl (
+ test ++ ";" ++
+ exp.s ++
+ "ifzero" ++ end ++ ";" ++
+ loop.s ++
+ "goto" ++ test ++ ";" ++
+ end
+ ) ;
+ IfElse exp t f =
+ let
+ false = "FALSE_" ++ t.s2 ++ f.s2 ;
+ true = "TRUE_" ++ t.s2 ++ f.s2
+ in instrl (
+ exp.s ++
+ "ifzero" ++ false ++ ";" ++
+ t.s ++
+ "goto" ++ true ++ ";" ++
+ false ++ ";" ++
+ f.s ++
+ true
+ ) ;
Block stm = instrc stm.s ;
- End = ss [] ** {s3 = []} ;
+ End = ss [] ** {s2,s3 = []} ;
EVar t x = instr (t.s ++ "_load" ++ x.s) ;
EInt n = instr ("ipush" ++ n.s) ;
EFloat a b = instr ("fpush" ++ a.s ++ "." ++ b.s) ;
EAddI = binop "iadd" ;
EAddF = binop "fadd" ;
+ ESubI = binop "isub" ;
+ ESubF = binop "fsub" ;
EMulI = binop "imul" ;
EMulF = binop "fmul" ;
ELtI = binop ("call" ++ "ilt") ;
ELtF = binop ("call" ++ "flt") ;
+ EApp args val f exps = instr (
+ exps.s ++
+ "invoke" ++ f.s ++ paren args.s ++ val.s
+ ) ;
+
+ TInt = ss "i" ;
+ TFloat = ss "f" ;
- TInt = ss "i" ;
- TFloat = ss "f" ;
+ NilTyp = ss [] ;
+ ConsTyp = cc2 ;
+ NilExp = ss [] ;
+ ConsExp _ _ = cc2 ;
}