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
|
(******************************************************************************)
(* ASLRef *)
(******************************************************************************)
(*
* SPDX-FileCopyrightText: Copyright 2022-2023 Arm Limited and/or its affiliates <open-source-office@arm.com>
* SPDX-License-Identifier: BSD-3-Clause
*)
(******************************************************************************)
(* Disclaimer: *)
(* This material covers both ASLv0 (viz, the existing ASL pseudocode language *)
(* which appears in the Arm Architecture Reference Manual) and ASLv1, a new, *)
(* experimental, and as yet unreleased version of ASL. *)
(* This material is work in progress, more precisely at pre-Alpha quality as *)
(* per Arm’s quality standards. *)
(* In particular, this means that it would be premature to base any *)
(* production tool development on this material. *)
(* However, any feedback, question, query and feature request would be most *)
(* welcome; those can be sent to Arm’s Architecture Formal Team Lead *)
(* Jade Alglave <jade.alglave@arm.com>, or by raising issues or PRs to the *)
(* herdtools7 github repository. *)
(******************************************************************************)
open AST
(** Error handling for {!Asllib}. *)
type error_handling_time = Static | Dynamic
type error_desc =
| ReservedIdentifier of string
| BadField of string * ty
| MissingField of string list * ty
| BadSlices of error_handling_time * slice list * int
| BadSlice of slice
| EmptySlice
| TypeInferenceNeeded
| UndefinedIdentifier of identifier
| MismatchedReturnValue of string
| BadArity of error_handling_time * identifier * int * int
| BadParameterArity of error_handling_time * version * identifier * int * int
| UnsupportedBinop of error_handling_time * binop * literal * literal
| UnsupportedUnop of error_handling_time * unop * literal
| UnsupportedExpr of error_handling_time * expr
| UnsupportedTy of error_handling_time * ty
| InvalidExpr of expr
| MismatchType of string * type_desc list
| NotYetImplemented of string
| ObsoleteSyntax of string
| ConflictingTypes of type_desc list * ty
| AssertionFailed of expr
| CannotParse
| UnknownSymbol
| NoCallCandidate of string * ty list
| TooManyCallCandidates of string * ty list
| BadTypesForBinop of binop * ty * ty
| CircularDeclarations of string
| ImpureExpression of expr * SideEffect.SES.t
| UnreconciliableTypes of ty * ty
| AssignToImmutable of string
| AlreadyDeclaredIdentifier of string
| BadReturnStmt of ty option
| UnexpectedSideEffect of string
| UncaughtException of string
| OverlappingSlices of slice list * error_handling_time
| BadLDI of AST.local_decl_item
| BadRecursiveDecls of identifier list
| UnrespectedParserInvariant
| BadATC of ty * ty (** asserting, asserted *)
| BadPattern of pattern * ty
| ConstrainedIntegerExpected of ty
| ParameterWithoutDecl of identifier
| BadParameterDecl of identifier * identifier list * identifier list
(** name, expected, actual *)
| BaseValueEmptyType of ty
| ArbitraryEmptyType of ty
| BaseValueNonStatic of ty * expr
| SettingIntersectingSlices of bitfield list
| SetterWithoutCorrespondingGetter of func
| NonReturningFunction of identifier
| ConflictingSideEffects of SideEffect.t * SideEffect.t
| UnexpectedATC
| UnreachableReached
| LoopLimitReached
| RecursionLimitReached
| EmptyConstraints
| UnexpectedPendingConstrained
| BitfieldsDontAlign of {
field1_absname : string;
field2_absname : string;
field1_absslices : string;
field2_absslices : string;
}
| BadPrintType of ty
| ConfigTimeBroken of expr * SideEffect.SES.t
| ConstantTimeBroken of expr * SideEffect.SES.t
| MultipleWrites of identifier
| UnexpectedInitialisationThrow of
ty * identifier (* Exception type and global storage element name. *)
type error = error_desc annotated
exception ASLException of error
type 'a result = ('a, error) Result.t
let fatal e = raise (ASLException e)
let fatal_from pos e = fatal (ASTUtils.add_pos_from pos e)
let fatal_here pos_start pos_end e =
fatal (ASTUtils.annotated e pos_start pos_end ASTUtils.default_version)
let fatal_unknown_pos e = fatal (ASTUtils.add_dummy_annotation e)
let intercept f () = try Ok (f ()) with ASLException e -> Error e
let error_handling_time_to_string = function
| Static -> "Static"
| Dynamic -> "Dynamic"
type warning_desc =
| NoRecursionLimit of identifier list
| NoLoopLimit
| IntervalTooBigToBeExploded of Z.t * Z.t
| ConstraintSetPairToBigToBeExploded of {
op : binop;
left : int_constraint list;
right : int_constraint list;
log_max : int; (** Maximum size breached by this constraint set pair. *)
}
| RemovingValuesFromConstraints of {
op : binop;
prev : int_constraint list;
after : int_constraint list;
}
| PragmaUse of identifier
type warning = warning_desc annotated
let error_label = function
| ReservedIdentifier _ -> "ReservedIdentifier"
| BadField _ -> "BadField"
| BadPattern _ -> "BadPattern"
| MissingField _ -> "MissingField"
| BadSlices _ -> "BadSlices"
| BadSlice _ -> "BadSlice"
| EmptySlice -> "EmptySlice"
| TypeInferenceNeeded -> "TypeInferenceNeeded"
| UndefinedIdentifier _ -> "UndefinedIdentifier"
| MismatchedReturnValue _ -> "MismatchedReturnValue"
| BadArity _ -> "BadArity"
| BadParameterArity _ -> "BadParameterArity"
| UnsupportedBinop _ -> "UnsupportedBinop"
| UnsupportedUnop _ -> "UnsupportedUnop"
| UnsupportedExpr _ -> "UnsupportedExpr"
| UnsupportedTy _ -> "UnsupportedTy"
| InvalidExpr _ -> "InvalidExpr"
| MismatchType _ -> "MismatchType"
| NotYetImplemented _ -> "NotYetImplemented"
| ObsoleteSyntax _ -> "ObsoleteSyntax"
| ConflictingTypes _ -> "ConflictingTypes"
| AssertionFailed _ -> "AssertionFailed"
| CannotParse -> "CannotParse"
| UnknownSymbol -> "UnknownSymbol"
| NoCallCandidate _ -> "NoCallCandidate"
| TooManyCallCandidates _ -> "TooManyCallCandidates"
| BadTypesForBinop _ -> "BadTypesForBinop"
| CircularDeclarations _ -> "CircularDeclarations"
| ImpureExpression _ -> "ImpureExpression"
| UnreconciliableTypes _ -> "UnreconciliableTypes"
| AssignToImmutable _ -> "AssignToImmutable"
| AlreadyDeclaredIdentifier _ -> "AlreadyDeclaredIdentifier"
| BadReturnStmt _ -> "BadReturnStmt"
| UnexpectedSideEffect _ -> "UnexpectedSideEffect"
| UncaughtException _ -> "UncaughtException"
| OverlappingSlices _ -> "OverlappingSlices"
| BadLDI _ -> "BadLDI"
| BadRecursiveDecls _ -> "BadRecursiveDecls"
| UnrespectedParserInvariant -> "UnrespectedParserInvariant"
| BadATC _ -> "BadATC"
| ConstrainedIntegerExpected _ -> "ConstrainedIntegerExpected"
| ParameterWithoutDecl _ -> "ParameterWithoutDecl"
| BadParameterDecl _ -> "BadParameterDecl"
| BaseValueEmptyType _ -> "BaseValueEmptyType"
| ArbitraryEmptyType _ -> "ArbitraryEmptyType"
| BaseValueNonStatic _ -> "BaseValueNonStatic"
| SettingIntersectingSlices _ -> "SettingIntersectingSlices"
| SetterWithoutCorrespondingGetter _ -> "SetterWithoutCorrespondingGetter"
| NonReturningFunction _ -> "NonReturningFunction"
| UnexpectedATC -> "UnexpectedATC"
| UnreachableReached -> "UnreachableReached"
| LoopLimitReached -> "LoopLimitReached"
| RecursionLimitReached -> "RecursionLimitReached"
| EmptyConstraints -> "EmptyConstraints"
| UnexpectedPendingConstrained -> "UnexpectedPendingConstrained"
| BitfieldsDontAlign _ -> "BitfieldsDontAlign"
| BadPrintType _ -> "BadPrintType"
| ConflictingSideEffects _ -> "ConflictingSideEffects"
| ConfigTimeBroken _ -> "ConfigTimeBroken"
| ConstantTimeBroken _ -> "ConstantTimeBroken"
| MultipleWrites _ -> "MultipleWrites"
| UnexpectedInitialisationThrow _ -> "UnexpectedInitialisationThrow"
let warning_label = function
| NoLoopLimit -> "NoLoopLimit"
| IntervalTooBigToBeExploded _ -> "IntervalTooBigToBeExploded"
| ConstraintSetPairToBigToBeExploded _ -> "ConstraintSetPairToBigToBeExploded"
| RemovingValuesFromConstraints _ -> "RemovingValuesFromConstraints"
| NoRecursionLimit _ -> "NoRecursionLimit"
| PragmaUse _ -> "PragmaUse"
module PPrint = struct
open Format
open PP
let pp_comma_list pp_elt f li =
pp_print_list ~pp_sep:(fun f () -> fprintf f ",@ ") pp_elt f li
let pp_type_desc f ty = pp_ty f (ASTUtils.add_dummy_annotation ty)
let pp_error_desc f e =
pp_open_hovbox f 2;
(match e.desc with
| ReservedIdentifier id ->
fprintf f "ASL Lexical error: %S is a reserved keyword." id
| UnsupportedBinop (t, op, v1, v2) ->
fprintf f
"ASL %s error: Illegal application of operator %s for values@ %a@ \
and %a."
(error_handling_time_to_string t)
(binop_to_string op) pp_literal v1 pp_literal v2
| UnsupportedUnop (t, op, v) ->
fprintf f
"ASL %s error: Illegal application of operator %s for value@ %a."
(error_handling_time_to_string t)
(unop_to_string op) pp_literal v
| UnsupportedExpr (t, e) ->
fprintf f "ASL %s Error: Unsupported expression %a."
(error_handling_time_to_string t)
pp_expr e
| UnsupportedTy (t, ty) ->
fprintf f "ASL %s Error: Unsupported type %a."
(error_handling_time_to_string t)
pp_ty ty
| InvalidExpr e -> fprintf f "ASL Error: invalid expression %a." pp_expr e
| MismatchType (v, [ ty ]) ->
fprintf f
"ASL Execution error: Mismatch type:@ value %s does not belong to \
type %a."
v pp_type_desc ty
| MismatchType (v, li) ->
fprintf f
"ASL Execution error: Mismatch type:@ value %s@ does not subtype any \
of those types:@ %a"
v
(pp_comma_list pp_type_desc)
li
| BadField (s, ty) ->
fprintf f "ASL Error: There is no field '%s'@ on type %a." s pp_ty ty
| MissingField (fields, ty) ->
fprintf f
"ASL Error: Fields mismatch for creating a value of type %a@ -- \
Passed fields are:@ %a"
pp_ty ty
(pp_print_list ~pp_sep:pp_print_space pp_print_string)
fields
| EmptySlice ->
assert (e.version = V0);
pp_print_text f
"ASL Static Error: cannot slice with empty slicing operator. This \
might also be due to an incorrect getter/setter invocation."
| BadSlices (t, slices, length) ->
fprintf f
"ASL %s error: Cannot extract from bitvector of length %d slice %a."
(error_handling_time_to_string t)
length pp_slice_list slices
| BadSlice slice ->
fprintf f "ASL Static error: invalid slice %a." pp_slice slice
| TypeInferenceNeeded ->
pp_print_text f
"ASL Internal error: Interpreter blocked. Type inference needed."
| UndefinedIdentifier s ->
fprintf f "ASL Error: Undefined identifier:@ '%s'" s
| MismatchedReturnValue s ->
fprintf f "ASL Error: Mismatched use of return value from call to '%s'."
s
| BadArity (t, name, expected, provided) ->
fprintf f
"ASL %s Error: Arity error while calling '%s':@ %d arguments \
expected and %d provided."
(error_handling_time_to_string t)
name expected provided
| BadParameterArity (t, version, name, expected, provided) -> (
match (t, version) with
| Static, V0 ->
fprintf f
"ASL %s Error: Could not infer all parameters while calling \
'%s':@ %d parameters expected and %d inferred"
(error_handling_time_to_string t)
name expected provided
| _ ->
fprintf f
"ASL %s Error: Arity error while calling '%s':@ %d parameters \
expected and %d provided"
(error_handling_time_to_string t)
name expected provided)
| NotYetImplemented s ->
pp_print_text f @@ "ASL Internal error: Not yet implemented: " ^ s
| ObsoleteSyntax s ->
fprintf f "%a@ %s" pp_print_text "ASL Grammar error: Obsolete syntax:" s
| ConflictingTypes ([ expected ], provided) ->
fprintf f
"ASL Typing error:@ a subtype of@ %a@ was expected,@ provided %a."
pp_type_desc expected pp_ty provided
| ConflictingTypes (expected, provided) ->
fprintf f "ASL Typing error:@ %a does@ not@ subtype@ any@ of:@ %a."
pp_ty provided
(pp_comma_list pp_type_desc)
expected
| AssertionFailed e ->
fprintf f "ASL Execution error: Assertion failed:@ %a." pp_expr e
| CannotParse -> pp_print_string f "ASL Error: Cannot parse."
| UnknownSymbol -> pp_print_string f "ASL Error: Unknown symbol."
| NoCallCandidate (name, types) ->
fprintf f
"ASL Typing error: No subprogram declaration matches the \
invocation:@ %s(%a)."
name (pp_comma_list pp_ty) types
| TooManyCallCandidates (name, types) ->
fprintf f
"ASL Typing error: Too many subprogram declaration match the \
invocation:@ %s(%a)."
name (pp_comma_list pp_ty) types
| BadTypesForBinop (op, t1, t2) ->
fprintf f
"ASL Typing error: Illegal application of operator %s on types@ %a@ \
and %a."
(binop_to_string op) pp_ty t1 pp_ty t2
| CircularDeclarations x ->
fprintf f
"ASL Evaluation error: circular definition of constants, including \
%S."
x
| ImpureExpression (e, ses) ->
fprintf f
"ASL Typing error:@ a pure expression was expected,@ found %a,@ \
which@ produces@ the@ following@ side-effects:@ %a."
pp_expr e SideEffect.SES.pp_print ses
| UnreconciliableTypes (t1, t2) ->
fprintf f
"ASL Typing error:@ cannot@ find@ a@ common@ ancestor@ to@ those@ \
two@ types@ %a@ and@ %a."
pp_ty t1 pp_ty t2
| AssignToImmutable x ->
fprintf f
"ASL Typing error:@ cannot@ assign@ to@ immutable@ storage@ %S." x
| AlreadyDeclaredIdentifier x ->
fprintf f
"ASL Typing error:@ cannot@ declare@ already@ declared@ element@ %S."
x
| BadReturnStmt None ->
pp_print_text f
"ASL Typing error: cannot return something from a procedure."
| UnexpectedSideEffect s -> fprintf f "Unexpected side-effect: %s." s
| UncaughtException s -> fprintf f "Uncaught exception: %s." s
| OverlappingSlices (slices, t) ->
fprintf f "ASL %s error:@ overlapping slices@ @[%a@]."
(error_handling_time_to_string t)
pp_slice_list slices
| BadLDI ldi ->
fprintf f "Unsupported declaration:@ @[%a@]." pp_local_decl_item ldi
| BadRecursiveDecls decls ->
fprintf f "ASL Typing error:@ multiple recursive declarations:@ @[%a@]."
(pp_comma_list (fun f -> fprintf f "%S"))
decls
| UnrespectedParserInvariant -> fprintf f "Parser invariant broke."
| ConstrainedIntegerExpected t ->
fprintf f
"ASL Typing error:@ constrained@ integer@ expected,@ provided@ %a."
pp_ty t
| ParameterWithoutDecl s ->
fprintf f
"ASL Typing error:@ explicit@ parameter@ %S@ does@ not@ have@ a@ \
corresponding@ defining@ argument."
s
| BadParameterDecl (name, expected, actual) ->
fprintf f
"ASL Typing error:@ incorrect@ parameter@ declaration@ for@ %S,@ \
expected@ @[{%a}@]@ but@ @[{%a}@]@ provided"
name
(pp_comma_list pp_print_string)
expected
(pp_comma_list pp_print_string)
actual
| ArbitraryEmptyType t ->
fprintf f "ASL Execution error: ARBITRARY of empty type %a." pp_ty t
| BaseValueEmptyType t ->
fprintf f "ASL Typing error: base value of empty type %a." pp_ty t
| BaseValueNonStatic (t, e) ->
fprintf f
"ASL Typing error:@ base@ value@ of@ type@ %a@ cannot@ be@ \
statically@ determined@ since@ it@ consists@ of@ %a."
pp_ty t pp_expr e
| BadATC (t1, t2) ->
fprintf f
"ASL Typing error:@ cannot@ perform@ Asserted@ Type@ Conversion@ on@ \
%a@ by@ %a."
pp_ty t1 pp_ty t2
| SettingIntersectingSlices bitfields ->
fprintf f "ASL Typing error:@ setting@ intersecting@ bitfields@ [%a]."
pp_bitfields bitfields
| SetterWithoutCorrespondingGetter func ->
let ret, args =
match func.args with
| (_, ret) :: args -> (ret, List.map snd args)
| _ -> assert false
in
fprintf f
"ASL Typing error:@ setter@ \"%s\"@ does@ not@ have@ a@ \
corresponding@ getter@ of@ signature@ @[@[%a@]@ ->@ %a@]."
func.name (pp_comma_list pp_ty) args pp_ty ret
| UnexpectedATC -> pp_print_text f "ASL Typing error: unexpected ATC."
| BadPattern (p, t) ->
fprintf f
"ASL Typing error:@ Erroneous@ pattern@ %a@ for@ expression@ of@ \
type@ %a."
pp_pattern p pp_ty t
| UnreachableReached ->
pp_print_text f "ASL Dynamic error: Unreachable reached."
| NonReturningFunction name ->
fprintf f "ASL Typing error:@ the@ function %S@ %a." name pp_print_text
"may not terminate by returning a value or raising an exception."
| RecursionLimitReached ->
pp_print_text f "ASL Dynamic error: recursion limit reached."
| LoopLimitReached ->
pp_print_text f "ASL Dynamic error: loop limit reached."
| ConflictingSideEffects (s1, s2) ->
fprintf f "ASL Typing error: conflicting side effects %a and %a"
SideEffect.pp_print s1 SideEffect.pp_print s2
| ConfigTimeBroken (e, ses) ->
fprintf f
"ASL Typing error:@ expected@ config-time@ expression,@ got@ %a,@ \
which@ produces@ the@ following@ side-effects:@ %a."
pp_expr e SideEffect.SES.pp_print ses
| ConstantTimeBroken (e, ses) ->
fprintf f
"ASL Typing error:@ expected@ constant-time@ expression,@ got@ %a,@ \
which@ produces@ the@ following@ side-effects:@ %a."
pp_expr e SideEffect.SES.pp_print ses
| BadReturnStmt (Some t) ->
fprintf f
"ASL Typing error:@ cannot@ return@ nothing@ from@ a@ function,@ an@ \
expression@ of@ type@ %a@ is@ expected."
pp_ty t
| EmptyConstraints ->
pp_print_text f
"ASL Typing error: a well-constrained integer cannot have empty \
constraints."
| BadPrintType t ->
fprintf f "ASL Typing error:@ %a@ %a." pp_print_text
"print and println only accept singular types, found" pp_ty t
| UnexpectedPendingConstrained ->
pp_print_text f
"ASL Typing error: a pending constrained integer is illegal here."
| BitfieldsDontAlign
{ field1_absname; field2_absname; field1_absslices; field2_absslices }
->
fprintf f
"ASL Typing error:@ bitfields `%s` and `%s` are in the same scope \
but define different slices of the containing bitvector type: %s \
and %s, respectively."
field1_absname field2_absname field1_absslices field2_absslices
| UnexpectedInitialisationThrow (exception_ty, global_storage_element_name)
->
fprintf f
"ASL Execution error:@ unexpected@ exception@ %a@ thrown@ during@ \
the@ evaluation@ of@ the@ initialisation@ of@ the global@ storage@ \
element@ %S."
pp_ty exception_ty global_storage_element_name
| MultipleWrites id ->
fprintf f "ASL Typing error:@ multiple@ writes@ to@ %S." id);
pp_close_box f ()
let pp_warning_desc f w =
match w.desc with
| NoRecursionLimit [ name ] ->
fprintf f "@[ASL Warning:@ the recursive function %s%a@]" name
pp_print_text " has no recursive limit annotation."
| NoRecursionLimit li ->
fprintf f "@[ASL Warning:@ the mutually-recursive functions @[%a@]%a@]"
(pp_comma_list pp_print_string)
li pp_print_text " have no recursive limit annotation."
| NoLoopLimit ->
fprintf f "@[%a@]" pp_print_text
"ASL Warning: Loop does not have a limit."
| ConstraintSetPairToBigToBeExploded { op; left; right; log_max } ->
fprintf f "@[%a@ %s@ %a%d@ with@ constraints@ %a@ and@ %a.@ %a@]"
pp_print_text "Exploding sets for the binary operation"
(binop_to_string op) pp_print_text
"could result in a constraint set bigger than 2^" log_max
PP.pp_int_constraints left PP.pp_int_constraints right pp_print_text
"Continuing with the non-expanded constraints."
| IntervalTooBigToBeExploded (za, zb) ->
fprintf f
"@[Interval too large: @[<h>[ %a .. %a ]@].@ Keeping it as an \
interval.@]"
Z.pp_print za Z.pp_print zb
| RemovingValuesFromConstraints { op; prev; after } ->
fprintf f
"@[Warning:@ Removing@ some@ values@ that@ would@ fail@ with@ op %s@ \
from@ constraint@ set@ @[<h>{%a}@]@ gave@ @[<h>{%a}@].@ Continuing@ \
with@ this@ constraint@ set.@]"
(binop_to_string op) PP.pp_int_constraints prev PP.pp_int_constraints
after
| PragmaUse id ->
fprintf f "@[ASL Warning:@ pragma %s%a@]" id pp_print_text
" will be ignored."
let pp_pos_begin f pos =
if pos.pos_end != Lexing.dummy_pos && pos.pos_start != Lexing.dummy_pos then
fprintf f "@[<h>%a:@]@ " pp_pos pos
let pp_error f e = fprintf f "@[<v 0>%a%a@]" pp_pos_begin e pp_error_desc e
let pp_warning f e =
fprintf f "@[<v 0>%a%a@]" pp_pos_begin e pp_warning_desc e
let error_desc_to_string = asprintf "%a" pp_error_desc
let desc_to_string_inf pp_desc =
asprintf "%a" @@ fun f e ->
pp_set_margin f 1_000_000_000;
pp_desc f e
let error_to_string = asprintf "%a" pp_error
end
include PPrint
let escape s =
let b = Buffer.create (String.length s) in
String.iter
(function
| '"' ->
Buffer.add_char b '"';
Buffer.add_char b '"'
| c -> Buffer.add_char b c)
s;
Buffer.contents b
let pp_csv pp_desc label =
let pos_in_line pos = Lexing.(pos.pos_cnum - pos.pos_bol) in
fun f pos ->
Printf.fprintf f "\"%s\",%d,%d,%d,%d,%s,\"%s\""
(escape pos.pos_start.pos_fname)
pos.pos_start.pos_lnum
(pos_in_line pos.pos_start)
pos.pos_end.pos_lnum (pos_in_line pos.pos_end) (label pos.desc)
(desc_to_string_inf pp_desc pos |> escape)
let pp_error_csv f e = pp_csv pp_error_desc error_label f e
let pp_warning_csv f w = pp_csv pp_warning_desc warning_label f w
type output_format = HumanReadable | CSV
module type ERROR_PRINTER_CONFIG = sig
val output_format : output_format
end
module ErrorPrinter (C : ERROR_PRINTER_CONFIG) = struct
let eprintln e =
match C.output_format with
| HumanReadable -> Format.eprintf "@[<2>%a@]@." pp_error e
| CSV -> Printf.eprintf "%a\n" pp_error_csv e
let warn w =
match C.output_format with
| HumanReadable -> Format.eprintf "@[<2>%a@]@." pp_warning w
| CSV -> Printf.eprintf "%a\n" pp_warning_csv w
let warn_from ~loc w = ASTUtils.add_pos_from loc w |> warn
end
let () =
Printexc.register_printer @@ function
| ASLException e -> Some (error_to_string e)
| _ -> None
|