1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196
|
(**************************************************************************)
(* *)
(* The Why platform for program certification *)
(* *)
(* Copyright (C) 2002-2011 *)
(* *)
(* Jean-Christophe FILLIATRE, CNRS & Univ. Paris-sud 11 *)
(* Claude MARCHE, INRIA & Univ. Paris-sud 11 *)
(* Yannick MOY, Univ. Paris-sud 11 *)
(* Romain BARDOU, Univ. Paris-sud 11 *)
(* *)
(* Secondary contributors: *)
(* *)
(* Thierry HUBERT, Univ. Paris-sud 11 (former Caduceus front-end) *)
(* Nicolas ROUSSET, Univ. Paris-sud 11 (on Jessie & Krakatoa) *)
(* Ali AYAD, CNRS & CEA Saclay (floating-point support) *)
(* Sylvie BOLDO, INRIA (floating-point support) *)
(* Jean-Francois COUCHOT, INRIA (sort encodings, hyps pruning) *)
(* Mehdi DOGGUY, Univ. Paris-sud 11 (Why GUI) *)
(* *)
(* This software is free software; you can redistribute it and/or *)
(* modify it under the terms of the GNU Lesser General Public *)
(* License version 2.1, with the special exception on linking *)
(* described in file LICENSE. *)
(* *)
(* This software is distributed in the hope that it will be useful, *)
(* but WITHOUT ANY WARRANTY; without even the implied warranty of *)
(* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *)
(* *)
(**************************************************************************)
open Java_ast
open Format
open Lexing
let parse_annot loc s f =
let lb = Lexing.from_string s in
(*
eprintf "lb.pos_fname = %s@." lb.lex_curr_p.pos_fname;
eprintf "lb.pos_lnum = %d@." lb.lex_curr_p.pos_lnum;
eprintf "lb.pos_bol = %d@." lb.lex_curr_p.pos_bol;
eprintf "lb.pos_cnum = %d@." lb.lex_curr_p.pos_cnum;
*)
lb.lex_curr_p <- {loc with pos_bol = loc.pos_bol - loc.pos_cnum - 3};
(*
eprintf "lb.pos_fname = %s@." lb.lex_curr_p.pos_fname;
eprintf "lb.pos_lnum = %d@." lb.lex_curr_p.pos_lnum;
eprintf "lb.pos_bol = %d@." lb.lex_curr_p.pos_bol;
eprintf "lb.pos_cnum = %d@." lb.lex_curr_p.pos_cnum;
*)
try
f Java_lexer.next_token lb
with
| Parsing.Parse_error ->
Java_options.parsing_error (Java_lexer.loc lb) "parse error in annotation"
| Java_options.Java_error (_,msg) ->
Java_options.parsing_error (Java_lexer.loc lb) "%s" msg
let rec statement s =
{ s with java_pstatement_node = match s.java_pstatement_node with
| JPSannot (loc, s) -> parse_annot loc s Java_parser.kml_statement_annot
| JPSstatement_spec _
| JPSghost_local_decls _ | JPSghost_statement _ | JPSloop_annot _
| JPSassert _ -> assert false
| JPSsynchronized (e, s') -> JPSsynchronized(e, statements s')
| JPSblock b -> JPSblock(statements b)
| JPSswitch(e, l) ->
JPSswitch(e, List.map (fun (labs,b) -> (labs,statements b)) l)
| JPStry (s, l, f) ->
let l = List.map (fun (p,s) -> (p,statements s)) l in
JPStry(statements s,l,Option_misc.map (statements) f)
| JPSfor_decl (d, e, sl, s) -> JPSfor_decl(d, e, sl, statement s)
| JPSfor (el1, e, el2, s) -> JPSfor (el1, e, el2, statement s)
| JPSdo (s', e) -> JPSdo (statement s',e)
| JPSwhile (e, s') -> JPSwhile(e, statement s')
| JPSif (e, s1, s2) -> JPSif(e, statement s1, statement s2)
| JPSlabel (l, s') -> JPSlabel(l,statement s')
| JPScontinue _
| JPSbreak _
| JPSreturn _
| JPSthrow _
| JPSvar_decl _
| JPSexpr _
| JPSskip -> s.java_pstatement_node }
and statements b = List.map statement b
let modifier m =
match m with
| Annot_modifier (loc, s) -> parse_annot loc s Java_parser.kml_modifier
| _ -> m
let variable_declaration vd =
{ vd with variable_modifiers = List.map modifier vd.variable_modifiers }
let rec parameter p =
match p with
| Simple_parameter (mo, ty, id) ->
Simple_parameter (Option_misc.map modifier mo, ty, id)
| Array_parameter p ->
Array_parameter (parameter p)
let rec method_declarator md =
match md with
| Simple_method_declarator (id, pl) ->
Simple_method_declarator (id, List.map parameter pl)
| Array_method_declarator md ->
Array_method_declarator (method_declarator md)
let method_declaration md =
{ md with
method_modifiers = List.map modifier md.method_modifiers;
method_declarator = method_declarator md.method_declarator; }
let rec field_decl f =
match f with
| JPFmethod (md, None) -> JPFmethod (method_declaration md, None)
| JPFmethod (md, Some b) -> JPFmethod (method_declaration md, Some (statements b))
| JPFconstructor(c,eci,b) -> JPFconstructor(c,eci,statements b)
| JPFvariable vd -> JPFvariable (variable_declaration vd)
| JPFstatic_initializer b -> JPFstatic_initializer (statements b)
| JPFannot (loc,s) -> parse_annot loc s Java_parser.kml_field_decl
| JPFinvariant _ | JPFstatic_invariant _
| JPFmethod_spec _ -> assert false
| JPFclass c -> JPFclass (class_decl c)
| JPFinterface i -> JPFinterface (interface_decl i)
and class_decl c =
{ c with class_fields = List.map field_decl c.class_fields }
and interface_decl i =
{ i with interface_members = List.map field_decl i.interface_members }
let type_decl d =
match d with
| JPTclass c -> JPTclass (class_decl c)
| JPTinterface i -> JPTinterface (interface_decl i)
| JPTannot (loc, s) -> parse_annot loc s Java_parser.kml_global_def_eof
| JPTlemma _
| JPTlogic_type_decl _
| JPTlogic_reads _
| JPTlogic_def _ -> assert false
| JPTinductive _ -> assert false
| JPTaxiomatic _ -> assert false
| JPTimport _ -> assert false
let compilation_unit cu =
{ cu with cu_type_decls = List.map type_decl cu.cu_type_decls }
let spec_file f =
try
let c = open_in f in
(* we parse the file as a spec file *)
let d = Java_lexer.parse_spec f c in
close_in c;
printf "Parsing of spec file %s was OK.@." f;
match d with
| JPTtheory(PolyTheoryId(qid,_params),body) ->
printf "It contains theory '%s'@."
(Java_pervasives.qualified_ident2string
qid ".");
body
with
| Java_lexer.Lexical_error(l,s) ->
eprintf "%a: lexical error: %s@." Loc.gen_report_position l s;
exit 1
let file f =
try
let c = open_in f in
if Filename.check_suffix f ".spec" then
(* we parse the file as a spec file *)
let d = Java_lexer.parse_spec f c in
close_in c;
printf "Parsing of spec file %s was OK.@." f;
match d with
| JPTtheory(PolyTheoryId(qid,_params),_) ->
printf "It contains theory '%s'@."
(Java_pervasives.qualified_ident2string qid ".");
exit 0
else
(* we parse the file as an annotated java file *)
let d = Java_lexer.parse f c in
close_in c;
compilation_unit d
with
| Java_lexer.Lexical_error(l,s) ->
eprintf "%a: lexical error: %s@." Loc.gen_report_position l s;
exit 1
(*
Local Variables:
compile-command: "make -C .. bin/krakatoa.byte"
End:
*)
|