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 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605
|
(**************************************************************************)
(* *)
(* 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. *)
(* *)
(**************************************************************************)
(**************************************************************************
Lexer for JavaCard source files
VerifiCard Project - Dmons research team - LRI - Universit Paris XI
$Id: java_lexer.mll,v 1.42 2009-12-08 16:38:49 marche Exp $
***************************************************************************)
{
open Java_parser
open Lexing
open Java_ast
type location = position * position
let loc lexbuf : location =
(lexeme_start_p lexbuf, lexeme_end_p lexbuf)
exception Lexical_error of location * string
exception Syntax_error of location
exception Dotdot of string
let lex_error lexbuf s = raise (Lexical_error(loc lexbuf,s))
let buf = Buffer.create 97
let kw_table =
let table = Hashtbl.create 17 in
let _ =
List.iter
(fun (s,t) -> Hashtbl.add table s t)
[ "abstract", ABSTRACT;
"assert", ASSERT;
"assigns", ASSIGNS;
"assumes", ASSUMES;
"axiom", AXIOM;
"axiomatic", AXIOMATIC;
"behavior", BEHAVIOR;
"boolean", BOOLEAN;
"break", BREAK;
"byte", BYTE;
(* "byvalue", BYVALUE; ??? *)
"case", CASE;
(* "cast", CAST; ??? *)
"catch", CATCH;
"char", CHAR;
"class", CLASS;
"const", CONST;
"continue", CONTINUE;
"decreases", DECREASES;
"default", DEFAULT;
"do", DO;
"double", DOUBLE;
"else", ELSE;
"ensures", ENSURES;
"extends", EXTENDS;
"false", FALSE;
"final", FINAL;
"finally", FINALLY;
"float", FLOAT;
"for", FOR;
(* "future", FUTURE; ?? *)
(* "generic", GENERIC; ?? *)
"ghost", GHOST;
"goto", GOTO;
"if", IF;
"implements", IMPLEMENTS;
"import", IMPORT;
"inductive", INDUCTIVE;
(* "inner", INNER; ?? *)
"instanceof", INSTANCEOF;
"int", INT;
"integer", INTEGER;
"interface", INTERFACE;
"invariant", INVARIANT;
"lemma", LEMMA;
"logic", LOGIC;
"long", LONG;
"loop_invariant", LOOP_INVARIANT;
"loop_variant", LOOP_VARIANT;
"model", MODEL;
"native", NATIVE;
"new", NEW;
"non_null", NON_NULL;
"null", NULL;
"nullable", NULLABLE;
(* "operator", OPERATOR; ?? *)
(* "outer", OUTER; ?? *)
"package", PACKAGE;
"predicate", PREDICATE;
"private", PRIVATE;
"protected", PROTECTED;
"public", PUBLIC;
"reads", READS;
"real", REAL;
"requires", REQUIRES;
(* "rest", REST; ?? *)
"return", RETURN;
"short", SHORT;
"signals", SIGNALS;
"static", STATIC;
"strictfp", STRICTFP;
"super", SUPER;
"switch", SWITCH;
"synchronized", SYNCHRONIZED;
"theory", THEORY;
"this", THIS;
(* "threadsafe" ? *)
"throw", THROW;
"throws", THROWS;
"transient", TRANSIENT;
"true", TRUE;
"try", TRY;
"type", TYPE;
(* "var", VAR; ??? *)
"void", VOID;
"volatile", VOLATILE;
"while", WHILE;
]
in table
let id_or_kw s =
try
let k = Hashtbl.find kw_table s in
(*i
prerr_string "Keyword ";
prerr_endline s;
i*)
k
with
Not_found ->
(*i
prerr_string "Ident ";
prerr_endline s;
i*)
(ID s)
let special_kw_table =
let table = Hashtbl.create 17 in
let _ =
List.iter
(fun (s,t) -> Hashtbl.add table s t)
[ "\\at", BSAT;
"\\exists", BSEXISTS ;
(* "fresh", BSFRESH ; *)
"\\forall", BSFORALL ;
"\\nothing", BSNOTHING;
(*
"fields_of", BSFIELDSOF;
"not_conditionally_updated", BSNOTCONDITIONALLYUPDATED;
*)
"\\old", BSOLD;
"\\result", BSRESULT;
(*"type", BSTYPE;
"typeof", BSTYPEOF;
"fpi", BSFPI; *)
]
in table
let builtins_table =
let table = Hashtbl.create 17 in
let _ =
List.iter
(fun (_ty,id,_params) -> Hashtbl.add table id ())
Java_pervasives.builtin_logic_symbols
in table
let special_id lexbuf s =
try
Hashtbl.find special_kw_table s
with
Not_found ->
try
let () = Hashtbl.find builtins_table s in
ID s
with
Not_found ->
lex_error lexbuf ("unknown special keyword "^s)
(*
let jml_spec_token base jml_string =
(*i
Format.fprintf Config.log "In file %s, parsing JML Spec: %s@."
(Location.base_filename base) jml_string;
i*)
match Jml_syntax.parse_jml_specification base jml_string with
| Ast_types.Jml_declaration d -> JML_DECLARATIONS(d)
| Ast_types.Jml_method_specification s -> JML_METHOD_SPECIFICATION(s)
| Ast_types.Jml_loop_annotation la -> JML_LOOP_ANNOTATION(la)
| Ast_types.Jml_assertion a -> JML_ASSERTION(a)
| Ast_types.Jml_annotation_statement Ast_types.Set_statement s -> JML_ANNOTATION_STATEMENT(Ast_types.Set_statement(s))
| Ast_types.Jml_axiom(id,e) -> JML_AXIOM(id,e)
| Ast_types.Jml_type(id) -> JML_TYPE(id)
| Ast_types.Jml_logic_reads(id,t,p,r) -> JML_LOGIC_READS(id,t,p,r)
| Ast_types.Jml_logic_def(id,t,p,e) -> JML_LOGIC_DEF(id,t,p,e)
assert false
*)
let newline lexbuf =
let pos = lexbuf.lex_curr_p in
lexbuf.lex_curr_p <-
{ pos with pos_lnum = pos.pos_lnum + 1;
pos_bol = pos.pos_cnum }
let pragma lexbuf id v =
match id with
| "TerminationPolicy" ->
begin
Java_options.termination_policy :=
match v with
| "always" -> Jc_env.TPalways
| "user" -> Jc_env.TPuser
| "never" -> Jc_env.TPnever
| _ -> lex_error lexbuf ("unknown termination policy " ^ v)
end
| "AbstractDomain" ->
begin
Java_options.ai_domain :=
match v with
| "None" -> Jc_env.AbsNone
| "Box" -> Jc_env.AbsBox
| "Oct" -> Jc_env.AbsOct
| "Pol" -> Jc_env.AbsPol
| _ -> lex_error lexbuf ("unknown abstract domain " ^ v)
end
| "AnnotationPolicy" ->
begin
Java_options.annotation_sem :=
match v with
| "None" -> Jc_env.AnnotNone
| "Invariants" -> Jc_env.AnnotInvariants
| "WeakPre" -> Jc_env.AnnotWeakPre
| "StrongPre" -> Jc_env.AnnotStrongPre
| _ -> lex_error lexbuf ("unknown annotation policy " ^ v)
end
| "CheckArithOverflow" ->
begin
match String.lowercase v with
| "yes" -> Java_options.ignore_overflow := false
| "no" -> Java_options.ignore_overflow := true
| _ -> lex_error lexbuf "yes or no expected"
end
| "InvariantPolicy" ->
begin
Java_options.inv_sem :=
match v with
| "None" -> Jc_env.InvNone
| "Arguments" -> Jc_env.InvArguments
| "Ownership" -> Jc_env.InvOwnership
| _ -> lex_error lexbuf ("unknown invariant policy " ^ v)
end
| "SeparationPolicy" ->
begin
Java_options.separation_policy :=
match v with
| "None" -> Jc_env.SepNone
| "Regions" -> Jc_env.SepRegions
| _ -> lex_error lexbuf ("unknown separation policy " ^ v)
end
| "NonNullByDefault" ->
begin
Java_options.nonnull_sem :=
match v with
| "none" -> Java_env.NonNullNone
| "fields" -> Java_env.NonNullFields
| "all" -> Java_env.NonNullAll
| "alllocal" -> Java_env.NonNullAllLocal
| _ -> lex_error lexbuf ("unknown nonnull policy " ^ v)
end
| "MinimalClassHierarchy" ->
begin
match String.lowercase v with
| "yes" -> Java_options.minimal_class_hierarchy := true
| "no" -> Java_options.minimal_class_hierarchy := false
| _ -> lex_error lexbuf "yes or no expected"
end
| _ -> lex_error lexbuf ("unknown pragma " ^ id)
}
let space = [' ' '\t' '\r' '']
let backslash_escapes =
['\\' '"' '\'' 'n' 't' 'b' 'r' 'f' ]
let rD = ['0'-'9']
let rL = ['a'-'z' 'A'-'Z' '_']
let rH = ['a'-'f' 'A'-'F' '0'-'9']
let rE = ['E''e']['+''-']? rD+
let rFS = ('f'|'F'|'l'|'L')
let rIS = ('u'|'U'|'l'|'L')*
rule token = parse
| space+
{ token lexbuf }
| '\n'
{ newline lexbuf; token lexbuf }
| ("/*" | "//") space+ "@"
{ lex_error lexbuf "no space allowed between /* and @" }
| "//@+" space* ((rL | rD)+ as id) space* "="
space* ((rL | rD)+ as v) space* '\n'
{ pragma lexbuf id v; newline lexbuf; token lexbuf }
| "/*@"
{ let loc = lexeme_start_p lexbuf in
Buffer.clear buf; ANNOT(loc, annot lexbuf) }
| "//@" ([^ '\n']* as a) '\n'
{ let loc = lexeme_start_p lexbuf in
newline lexbuf; ANNOT(loc,a) }
| "/*"
{ comment lexbuf; token lexbuf }
| "//" ([^'\n''@'][^'\n']*)? '\n'
{ newline lexbuf; token lexbuf }
| "\\" rL (rL | rD)* as id
{ special_id lexbuf id }
| rL (rL | rD)* as id
{ id_or_kw id }
| ';'
{ SEMICOLON }
| ','
{ COMMA }
| '.'
{ DOT }
| ".."
{ DOTDOT }
| '+'
{ PLUS }
| '-'
{ MINUS }
| "++"
{ PLUSPLUS }
| "--"
{ MINUSMINUS }
| '*'
{ STAR }
| '/'
{ SLASH }
| '%'
{ PERCENT }
| "&"
{ AMPERSAND }
| "|"
{ VERTICALBAR }
| "&&"
{ AMPERSANDAMPERSAND }
| "||"
{ VERTICALBARVERTICALBAR }
| "==>"
{ EQEQGT }
| "<==>"
{ LTEQEQGT }
| "!"
{ BANG }
| "~"
{ TILDA }
| "^"
{ CARET }
| "?"
{ QUESTIONMARK }
| ":"
{ COLON }
| "<<"
{ SHIFT Blsl }
| ">>"
{ SHIFT Blsr }
| ">>>"
{ SHIFT Basr }
| "="
{ EQ }
| "*="
{ ASSIGNOP Bmul }
| "/="
{ ASSIGNOP Bdiv }
| "%="
{ ASSIGNOP Bmod }
| "+="
{ ASSIGNOP Badd }
| "-="
{ ASSIGNOP Bsub }
| "<<="
{ ASSIGNOP Blsl }
| ">>="
{ ASSIGNOP Blsr }
| ">>>="
{ ASSIGNOP Basr }
| "&="
{ ASSIGNOP Bbwand }
| "^="
{ ASSIGNOP Bbwxor }
| "|="
{ ASSIGNOP Bbwor }
| ">"
{ GT }
| "<"
{ LT }
| "<="
{ LE }
| ">="
{ GE }
| "=="
{ EQOP Beq }
| "!="
{ EQOP Bne }
(* decimal constants *)
| ('0' | ['1'-'9']rD*) ['l''L']? as n
{ INTCONSTANT n }
(* octal constants *)
| '0'['0'-'7']+ ['l''L']? as n
{ INTCONSTANT n }
(* hexadecimal constants *)
| '0'['x''X']rH+['l''L']? as n
{ INTCONSTANT n }
(* trick to deal with intervals like 0..10 *)
| (rD+ as n) ".." { raise (Dotdot n) }
(* floating-point constants *)
| (rD+ '.' rD* (['e''E']['-''+']?rD+)?) as pre (['f''F''d''D'] as suf) ?
{ REALCONSTANT (pre,suf) }
| ('.' rD+ (['e''E']['-''+']?rD+)?) as pre (['f''F''d''D'] as suf) ?
{ REALCONSTANT (pre,suf) }
| (rD+ ['e''E'] ['-''+']?rD+) as pre (['f''F''d''D'] as suf) ?
{ REALCONSTANT (pre,suf) }
(* character constants *)
| "'" _ "'" as s
{ CHARACTER s }
| "'\\" backslash_escapes "'" as s
{ CHARACTER s }
| "'\\" ['0'-'3'] ['0'-'7'] ['0'-'7'] "'" as s
{ CHARACTER s }
| "'\\" ['0'-'7'] ['0'-'7'] "'" as s
{ CHARACTER s }
| "'\\" ['0'-'7'] "'" as s
{ CHARACTER s }
| "'\\u" rH rH rH rH "'" as s
{ CHARACTER s }
| '('
{ LEFTPAR }
| ')'
{ RIGHTPAR }
| '{'
{ LEFTBRACE }
| '}'
{ RIGHTBRACE }
| '['
{ LEFTBRACKET }
| ']'
{ RIGHTBRACKET }
| '"'
{ Buffer.clear buf; STRING(string lexbuf) }
| _
{ lex_error lexbuf ("unexpected char `" ^ lexeme lexbuf ^ "'") }
| eof
{ EOF }
and string = parse
| '"'
{ Buffer.contents buf }
| '\\' backslash_escapes
{ Buffer.add_string buf (lexeme lexbuf);
string lexbuf }
| '\\' _
{ lex_error lexbuf "unknown escape sequence in string" }
| ['\n' '\r']
{ (* no \n anymore in strings since java 1.4 *)
lex_error lexbuf "string not terminated"; }
| [^ '\n' '\\' '"']+
{ Buffer.add_string buf (lexeme lexbuf); string lexbuf }
| eof
{ lex_error lexbuf "string not terminated" }
and comment = parse
| "*/"
{ () }
| '\n'
{ newline lexbuf; comment lexbuf }
| [^'*''\n']+
{ comment lexbuf }
| _
{ comment lexbuf }
| eof
{ lex_error lexbuf "comment not terminated" }
and annot = parse
| "*/"
{ Buffer.contents buf }
| '\n'
{ newline lexbuf;
Buffer.add_string buf (lexeme lexbuf);
annot lexbuf }
| ('\n' space* as s) '@'
{ newline lexbuf;
Buffer.add_string buf s;
Buffer.add_char buf ' ';
annot lexbuf }
| [^'@''*''\n''/']+
{ Buffer.add_string buf (lexeme lexbuf);
annot lexbuf }
| '@'
{ annot lexbuf }
| _
{ Buffer.add_string buf (lexeme lexbuf);
annot lexbuf }
| eof
{ lex_error lexbuf "annotation not terminated" }
{
let dotdot_mem = ref false
let next_token lexbuf =
if !dotdot_mem then
begin
dotdot_mem := false;
Format.eprintf "DOTDOT@.";
DOTDOT
end
else
begin
try
token lexbuf
with
Dotdot(n) ->
dotdot_mem := true;
INTCONSTANT n
end
let parse f c =
let lb = from_channel c in
lb.lex_curr_p <- { lb.lex_curr_p with pos_fname = f };
try
Java_parser.compilation_unit next_token lb
with Parsing.Parse_error ->
Java_options.parsing_error (loc lb) ""
let parse_spec f c =
let lb = from_channel c in
lb.lex_curr_p <- { lb.lex_curr_p with pos_fname = f };
try
Java_parser.kml_spec_eof next_token lb
with Parsing.Parse_error ->
Java_options.parsing_error (loc lb) ""
}
(*
Local Variables:
compile-command: "make -j -C .. bin/krakatoa.byte"
End:
*)
|