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
|
(*
Title: Source level debugger for Poly/ML
Author: David Matthews
Copyright (c) David Matthews 2000, 2014, 2015
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License version 2.1 as published by the Free Software Foundation.
This library 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. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*)
functor DEBUGGER_ (
structure STRUCTVALS : STRUCTVALSIG
structure VALUEOPS : VALUEOPSSIG
structure CODETREE : CODETREESIG
structure TYPETREE: TYPETREESIG
structure ADDRESS : AddressSig
structure COPIER: COPIERSIG
structure TYPEIDCODE: TYPEIDCODESIG
structure LEX : LEXSIG
structure DEBUG: DEBUGSIG
structure UTILITIES :
sig
val splitString: string -> { first:string,second:string }
end
sharing STRUCTVALS.Sharing = VALUEOPS.Sharing = TYPETREE.Sharing = COPIER.Sharing =
TYPEIDCODE.Sharing = CODETREE.Sharing = ADDRESS = LEX.Sharing
)
: DEBUGGERSIG
=
struct
open STRUCTVALS VALUEOPS CODETREE COPIER TYPETREE DEBUG
(* The static environment contains these kinds of entries. *)
datatype environEntry =
EnvValue of string * types * locationProp list
| EnvException of string * types * locationProp list
| EnvVConstr of string * types * bool * int * locationProp list
| EnvTypeid of { original: typeId, freeId: typeId }
| EnvStructure of string * signatures * locationProp list
| EnvTConstr of string * typeConstrSet
| EnvStartFunction of string * location * types
| EnvEndFunction of string * location * types
local
open ADDRESS
in
(* Entries in the thread data. The RTS allocates enough space for this.
The first entry is 5 because earlier entries are used by Thread.Thread. *)
val threadIdStack = mkConst(toMachineWord 0w5) (* The static/dynamic/location entries for calling fns *)
and threadIdCurrentStatic = mkConst(toMachineWord 0w6) (* The static info for bindings i.e. name/type. *)
and threadIdCurrentDynamic = mkConst(toMachineWord 0w7) (* Dynamic infor for bindings i.e. actual run-time value. *)
and threadIdCurrentLocation = mkConst(toMachineWord 0w8) (* Location in code: line number/offset etc. *)
(* Global function entries. These could be in storage allocated by the RTS. *)
(* Specialised option type here. Because a function is always boxed this
avoids the need for an extra level of indirection. *)
datatype ('a, 'b) functionOpt = NoFunction | AFunction of 'a -> 'b
val globalOnEntry = ref NoFunction
and globalOnExit = ref NoFunction
and globalOnExitExc = ref NoFunction
and globalOnBreakPoint = ref NoFunction
val onEntryCode =
mkLoadOperation(LoadStoreMLWord{isImmutable=false}, mkConst(toMachineWord globalOnEntry), CodeZero)
and onExitCode =
mkLoadOperation(LoadStoreMLWord{isImmutable=false}, mkConst(toMachineWord globalOnExit), CodeZero)
and onExitExcCode =
mkLoadOperation(LoadStoreMLWord{isImmutable=false}, mkConst(toMachineWord globalOnExitExc), CodeZero)
and onBreakPointCode =
mkLoadOperation(LoadStoreMLWord{isImmutable=false}, mkConst(toMachineWord globalOnBreakPoint), CodeZero)
(* We need to ensure that any break-point code preserves the state. It could be modified
if we hit a break-point and run the interactive debugger with PolyML.Compiler.debug true. *)
fun wrap (f:'a -> unit) (x: 'a) : unit =
let
val threadId: address = RunCall.unsafeCast(Thread.Thread.self())
val stack = loadWord(threadId, 0w5)
and static = loadWord(threadId, 0w6)
and dynamic = loadWord(threadId, 0w7)
and location = loadWord(threadId, 0w8)
fun restore () =
(
assignWord(threadId, 0w5, stack);
assignWord(threadId, 0w6, static);
assignWord(threadId, 0w7, dynamic);
assignWord(threadId, 0w8, location)
)
in
f x handle exn => (restore(); PolyML.Exception.reraise exn);
restore()
end
fun setOnEntry NONE = globalOnEntry := NoFunction
| setOnEntry (SOME(f: string * PolyML.location -> unit)) = globalOnEntry := AFunction (wrap f)
and setOnExit NONE = globalOnExit := NoFunction
| setOnExit (SOME(f: string * PolyML.location -> unit)) = globalOnExit := AFunction (wrap f)
and setOnExitException NONE = globalOnExitExc := NoFunction
| setOnExitException (SOME(f: string * PolyML.location -> exn -> unit)) =
globalOnExitExc := AFunction (fn x => wrap (f x))
and setOnBreakPoint NONE = globalOnBreakPoint := NoFunction
| setOnBreakPoint (SOME(f: PolyML.location * bool ref -> unit)) = globalOnBreakPoint := AFunction (wrap f)
end
(* When stopped at a break-point any Bound ids must be replaced by Free ids.
We make new Free ids at this point. *)
fun envTypeId (id as TypeId{ description, idKind = Bound{arity, ...}, ...}) =
EnvTypeid { original = id, freeId = makeFreeId(arity, Global CodeZero, isEquality id, description) }
| envTypeId id = EnvTypeid { original = id, freeId = id }
fun searchEnvs match (staticEntry :: statics, dlist as dynamicEntry :: dynamics) =
(
case (match (staticEntry, dynamicEntry), staticEntry) of
(SOME result, _) => SOME result
| (NONE, EnvTypeid _) => searchEnvs match (statics, dynamics)
| (NONE, EnvVConstr _) => searchEnvs match (statics, dynamics)
| (NONE, EnvValue _) => searchEnvs match (statics, dynamics)
| (NONE, EnvException _) => searchEnvs match (statics, dynamics)
| (NONE, EnvStructure _) => searchEnvs match (statics, dynamics)
| (NONE, EnvStartFunction _) => searchEnvs match (statics, dynamics)
| (NONE, EnvEndFunction _) => searchEnvs match (statics, dynamics)
(* EnvTConstr doesn't have an entry in the dynamic list *)
| (NONE, EnvTConstr _) => searchEnvs match (statics, dlist)
)
| searchEnvs _ _ = NONE
(* N.B. It is possible to have ([EnvTConstr ...], []) in the arguments so we can't treat
that if either the static or dynamic list is nil and the other non-nil as an error. *)
(* Exported functions that appear in PolyML.DebuggerInterface. *)
type debugState = environEntry list * machineWord list * location
fun searchType ((clist, rlist, _): debugState) typeid =
let
fun match (EnvTypeid{original, freeId }, valu) =
if sameTypeId(original, typeid)
then
case freeId of
TypeId{description, idKind as Free _, ...} =>
(* This can occur for datatypes inside functions. *)
SOME(TypeId { access= Global(mkConst valu), idKind=idKind, description=description})
| _ => raise Misc.InternalError "searchType: TypeFunction"
else NONE
| match _ = NONE
in
case (searchEnvs match (clist, rlist), typeid) of
(SOME t, _) => t
| (NONE, TypeId{description, idKind = TypeFn typeFn, ...}) => makeTypeFunction(description, typeFn)
| (NONE, typeid as TypeId{description, idKind = Bound{arity, ...}, ...}) =>
(* The type ID is missing. Make a new temporary ID. *)
makeFreeId(arity, Global(TYPEIDCODE.codeForUniqueId()), isEquality typeid, description)
| (NONE, typeid as TypeId{description, idKind = Free{arity, ...}, ...}) =>
(* The type ID is missing. Make a new temporary ID. *)
makeFreeId(arity, Global(TYPEIDCODE.codeForUniqueId()), isEquality typeid, description)
end
(* Values must be copied so that compile-time type IDs are replaced by their run-time values. *)
fun makeTypeConstr (state: debugState) (TypeConstrSet(tcons, (*tcConstructors*) _)) =
let
val typeID = searchType state (tcIdentifier tcons)
val newTypeCons =
makeTypeConstructor(tcName tcons, tcTypeVars tcons, typeID, tcLocations tcons)
val newValConstrs = (*map copyAConstructor tcConstructors*) []
in
TypeConstrSet(newTypeCons, newValConstrs)
end
(* When creating a structure we have to add a type map that will look up the bound Ids. *)
fun makeStructure state (name, rSig, locations, valu) =
let
local
val Signatures{ name = sigName, tab, typeIdMap, firstBoundIndex, locations=sigLocs, ... } = rSig
fun getFreeId n = searchType state (makeBoundId(0 (* ??? *), Global CodeZero, n, false, false, basisDescription ""))
in
val newSig = makeSignature(sigName, tab, firstBoundIndex, sigLocs, composeMaps(typeIdMap, getFreeId), [])
end
in
makeGlobalStruct (name, newSig, mkConst valu, locations)
end
local
fun runTimeType (state: debugState) ty =
let
fun copyId(TypeId{idKind=Free _, access=Global _ , ...}) = NONE (* Use original *)
| copyId id = SOME(searchType state id)
in
copyType (ty, fn x => x,
fn tcon => copyTypeConstr (tcon, copyId, fn x => x, fn s => s))
end
in
fun makeValue state (name, ty, location, valu) =
mkGvar(name, runTimeType state ty, mkConst valu, location)
and makeException state (name, ty, location, valu) =
mkGex(name, runTimeType state ty, mkConst valu, location)
and makeConstructor state (name, ty, nullary, count, location, valu) =
makeValueConstr(name, runTimeType state ty, nullary, count, Global(mkConst valu), location)
and makeAnonymousValue state (ty, valu) =
makeValue state ("", ty, [], valu)
end
(* Functions to make the debug entries. These are needed both in CODEGEN_PARSETREE for
the core language and STRUCTURES for the module language. *)
(* Debugger status within the compiler.
During compilation the environment is built up as a pair
consisting of the static data and code to compute the run-time data.
The static data, a constant at run-time, holds the
variable names and types. The run-time code, when executed at
run-time, returns the address of a list holding the actual values
of the variables. "dynEnv" is always a "load" from a (codetree)
variable. It has type level->codetree rather than codetree
because the next reference could be inside an inner function.
"lastLoc" is the last location that was *)
type debuggerStatus =
{staticEnv: environEntry list, dynEnv: level->codetree, lastLoc: location}
val initialDebuggerStatus: debuggerStatus =
{staticEnv = [], dynEnv = fn _ => CodeZero, lastLoc = LEX.nullLocation }
(* Set the current state in the thread data. *)
fun updateState (level, mkAddr) (decs, debugEnv: debuggerStatus as {staticEnv, dynEnv, ...}) =
let
open ADDRESS
val threadId = multipleUses(getCurrentThreadId, fn () => mkAddr 1, level)
fun assignItem(offset, value) =
mkNullDec(mkStoreOperation(LoadStoreMLWord{isImmutable=false}, #load threadId level, offset, value))
val newDecs =
decs @ #dec threadId @
[assignItem(threadIdCurrentStatic, mkConst(toMachineWord staticEnv)),
assignItem(threadIdCurrentDynamic, dynEnv level)]
in
(newDecs, debugEnv)
end
fun makeValDebugEntries (vars: values list, debugEnv: debuggerStatus, level, lex, mkAddr, typeVarMap) =
if getParameter debugTag (LEX.debugParams lex)
then
let
fun loadVar (var, (decs, {staticEnv, dynEnv, lastLoc, ...})) =
let
val loadVal =
codeVal (var, level, typeVarMap, [], lex, LEX.nullLocation)
val newEnv =
(* Create a new entry in the environment. *)
mkDatatype [ loadVal (* Value. *), dynEnv level ]
val { dec, load } = multipleUses (newEnv, fn () => mkAddr 1, level)
val ctEntry =
case var of
Value{class=Exception, name, typeOf, locations, ...} =>
EnvException(name, typeOf, locations)
| Value{class=Constructor{nullary, ofConstrs, ...}, name, typeOf, locations, ...} =>
EnvVConstr(name, typeOf, nullary, ofConstrs, locations)
| Value{name, typeOf, locations, ...} =>
EnvValue(name, typeOf, locations)
in
(decs @ dec, {staticEnv = ctEntry :: staticEnv, dynEnv = load, lastLoc = lastLoc})
end
in
updateState (level, mkAddr) (List.foldl loadVar ([], debugEnv) vars)
end
else ([], debugEnv)
fun makeTypeConstrDebugEntries(typeCons, debugEnv, level, lex, mkAddr) =
if not (getParameter debugTag (LEX.debugParams lex))
then ([], debugEnv)
else
let
fun foldIds(tc :: tcs, {staticEnv, dynEnv, lastLoc, ...}) =
let
val cons = tsConstr tc
val id = tcIdentifier cons
val {second = typeName, ...} = UTILITIES.splitString(tcName cons)
in
if tcIsAbbreviation (tsConstr tc)
then foldIds(tcs, {staticEnv=EnvTConstr(typeName, tc) :: staticEnv, dynEnv=dynEnv, lastLoc = lastLoc})
else
let
(* This code will build a cons cell containing the run-time value
associated with the type Id as the hd and the rest of the run-time
environment as the tl. *)
val loadTypeId = TYPEIDCODE.codeId(id, level)
val newEnv = mkDatatype [ loadTypeId, dynEnv level ]
val { dec, load } = multipleUses (newEnv, fn () => mkAddr 1, level)
(* Make an entry for the type constructor itself as well as the new type id.
The type Id is used both for the type constructor and also for any values
of the type. *)
val (decs, newEnv) =
foldIds(tcs, {staticEnv=EnvTConstr(typeName, tc) :: envTypeId id :: staticEnv, dynEnv=load, lastLoc = lastLoc})
in
(dec @ decs, newEnv)
end
end
| foldIds([], debugEnv) = ([], debugEnv)
in
updateState (level, mkAddr) (foldIds(typeCons, debugEnv))
end
fun makeStructDebugEntries (strs: structVals list, debugEnv, level, lex, mkAddr) =
if getParameter debugTag (LEX.debugParams lex)
then
let
fun loadStruct (str as Struct { name, signat, locations, ...}, (decs, {staticEnv, dynEnv, lastLoc, ...})) =
let
val loadStruct = codeStruct (str, level)
val newEnv = mkDatatype [ loadStruct (* Structure. *), dynEnv level ]
val { dec, load } = multipleUses (newEnv, fn () => mkAddr 1, level)
val ctEntry = EnvStructure(name, signat, locations)
in
(decs @ dec, {staticEnv=ctEntry :: staticEnv, dynEnv=load, lastLoc = lastLoc})
end
in
updateState (level, mkAddr) (List.foldl loadStruct ([], debugEnv) strs)
end
else ([], debugEnv)
(* Create debug entries for typeIDs. The idea is that if we stop in the debugger we
can access the type ID, particularly for printing values of the type.
"envTypeId" creates a free id for each bound id but the print and equality
functions are extracted when we are stopped in the debugger. *)
fun makeTypeIdDebugEntries(typeIds, debugEnv, level, lex, mkAddr) =
if not (getParameter debugTag (LEX.debugParams lex))
then ([], debugEnv)
else
let
fun foldIds(id :: ids, {staticEnv, dynEnv, lastLoc, ...}) =
let
(* This code will build a cons cell containing the run-time value
associated with the type Id as the hd and the rest of the run-time
environment as the tl. *)
val loadTypeId =
case id of TypeId { access = Formal addr, ... } =>
(* If we are processing functor arguments we will have a Formal here. *)
mkInd(addr, mkLoadArgument 0)
| _ => TYPEIDCODE.codeId(id, level)
val newEnv = mkDatatype [ loadTypeId, dynEnv level ]
val { dec, load } = multipleUses (newEnv, fn () => mkAddr 1, level)
val (decs, newEnv) =
foldIds(ids, {staticEnv=envTypeId id :: staticEnv, dynEnv=load, lastLoc = lastLoc})
in
(dec @ decs, newEnv)
end
| foldIds([], debugEnv) = ([], debugEnv)
in
updateState (level, mkAddr) (foldIds(typeIds, debugEnv))
end
(* Update the location info in the thread data if we want debugging info.
If the location has not changed don't do anything. Whether it has changed
could depend on whether we're only counting line numbers or whether we
have more precise location info with the IDE. *)
fun updateDebugLocation(debuggerStatus as {staticEnv, dynEnv, lastLoc, ...}, location, lex) =
if not (getParameter debugTag (LEX.debugParams lex)) orelse lastLoc = location
then ([], debuggerStatus)
else
let
open ADDRESS
val setLocation =
mkStoreOperation(LoadStoreMLWord{isImmutable=false},
getCurrentThreadId, threadIdCurrentLocation, mkConst(toMachineWord location))
in
([mkNullDec setLocation], {staticEnv=staticEnv, dynEnv=dynEnv, lastLoc=location})
end
(* Add debugging calls on entry and exit to a function. *)
fun wrapFunctionInDebug(codeBody: debuggerStatus -> codetree, name: string, argCode, argType, resType: types, location,
entryEnv: debuggerStatus, level, lex, mkAddr) =
if not (getParameter debugTag (LEX.debugParams lex))
then codeBody entryEnv (* Code-generate the body without any wrapping. *)
else
let
open ADDRESS
val functionName = name (* TODO: munge this to get the root. *)
fun addStartExitEntry({staticEnv, dynEnv, lastLoc, ...}, code, ty, startExit) =
let
val newEnv = mkDatatype [ code, dynEnv level ]
val { dec, load } = multipleUses (newEnv, fn () => mkAddr 1, level)
val ctEntry = startExit(functionName, location, ty)
in
(dec, {staticEnv=ctEntry :: staticEnv, dynEnv=load, lastLoc = lastLoc})
end
(* All the "on" functions take this as an argument. *)
val onArgs = [mkConst(toMachineWord(functionName, location))]
val threadId = multipleUses(getCurrentThreadId, fn () => mkAddr 1, level)
fun loadIdEntry offset =
multipleUses(mkLoadOperation(LoadStoreMLWord{isImmutable=false}, #load threadId level, offset), fn () => mkAddr 1, level)
val currStatic = loadIdEntry threadIdCurrentStatic
and currDynamic = loadIdEntry threadIdCurrentDynamic
and currLocation = loadIdEntry threadIdCurrentLocation
and currStack = loadIdEntry threadIdStack
(* At the start of the function:
1. Push the previous state to the stack.
2. Create a debugging entry for the arguments
3. Update the state to the state on entry, including the args
4. Call the global onEntry function if it's set
5. Call the local onEntry function if it's set *)
(* Save the previous state. *)
val assignStack =
mkStoreOperation(LoadStoreMLWord{isImmutable=false}, #load threadId level, threadIdStack,
mkDatatype[
#load currStatic level, #load currDynamic level,
#load currLocation level, #load currStack level])
val prefixCode =
#dec threadId @ #dec currStatic @ #dec currDynamic @ #dec currLocation @ #dec currStack @ [mkNullDec assignStack]
(* Make a debugging entry for the arguments. This needs to be set
before we call onEntry so we can produce tracing info. It also needs
to be passed to the body of the function so that it is included in the
debug status of the rest of the body. *)
local
val {staticEnv, dynEnv, lastLoc, ...} = entryEnv
val newEnv = mkDatatype [ argCode, dynEnv level ]
val { dec, load } = multipleUses (newEnv, fn () => mkAddr 1, level)
val ctEntry = EnvStartFunction(functionName, location, argType)
in
val debuggerDecs = dec
val bodyDebugEnv = {staticEnv = ctEntry :: staticEnv, dynEnv = load, lastLoc = lastLoc}
end
local
val {staticEnv, dynEnv, ...} = bodyDebugEnv
val assignStatic =
mkStoreOperation(LoadStoreMLWord{isImmutable=false}, #load threadId level, threadIdCurrentStatic,
mkConst(toMachineWord staticEnv))
val assignDynamic =
mkStoreOperation(LoadStoreMLWord{isImmutable=false}, #load threadId level, threadIdCurrentDynamic,
dynEnv level)
val assignLocation =
mkStoreOperation(LoadStoreMLWord{isImmutable=false}, #load threadId level, threadIdCurrentLocation,
mkConst(toMachineWord location))
val onEntryFn = multipleUses(onEntryCode, fn () => mkAddr 1, level)
val optCallOnEntry =
mkIf(mkTagTest(#load onEntryFn level, 0w0, 0w0), CodeZero, mkEval(#load onEntryFn level, onArgs))
in
val entryCode = debuggerDecs @
[mkNullDec assignStatic, mkNullDec assignDynamic, mkNullDec assignLocation] @
#dec onEntryFn @ [mkNullDec optCallOnEntry]
end
(* Restore the state. Used both if the function returns normally or if
it raises an exception. We use the old state rather than popping the stack
because that is more reliable if we have an asynchronous exception. *)
local
(* Set the entry in the thread vector to an entry from the top-of-stack. *)
fun restoreEntry(offset, value) =
mkNullDec(
mkStoreOperation(LoadStoreMLWord{isImmutable=false}, #load threadId level, offset, value))
in
val restoreState =
[restoreEntry(threadIdCurrentStatic, #load currStatic level),
restoreEntry(threadIdCurrentDynamic, #load currDynamic level),
restoreEntry(threadIdCurrentLocation, #load currLocation level),
restoreEntry(threadIdStack, #load currStack level)]
end
local
(* If an exception is raised we need to call the onExitException entry, restore the state
and reraise the exception. *)
(* There are potential race conditions here if we have asynchronous exceptions. *)
val exPacketAddr = mkAddr 1
val onExitExcFn = multipleUses(onExitExcCode, fn () => mkAddr 1, level)
(* OnExitException has an extra curried argument - the exception packet. *)
val optCallOnExitExc =
mkIf(mkTagTest(#load onExitExcFn level, 0w0, 0w0), CodeZero,
mkEval(mkEval(#load onExitExcFn level, onArgs), [mkLoadLocal exPacketAddr]))
in
val exPacketAddr = exPacketAddr
val exceptionCase =
mkEnv(#dec onExitExcFn @ [mkNullDec optCallOnExitExc] @ restoreState,
mkRaise(mkLoadLocal exPacketAddr))
end
(* Code for the body and the exception. *)
val bodyCode =
multipleUses(mkHandle(codeBody bodyDebugEnv, exceptionCase, exPacketAddr), fn () => mkAddr 1, level)
(* Code for normal exit. *)
local
val endFn = addStartExitEntry(entryEnv, #load bodyCode level, resType, EnvEndFunction)
val (rtEnvDec, _) = updateState (level, mkAddr) endFn
val onExitFn = multipleUses(onExitCode, fn () => mkAddr 1, level)
val optCallOnExit =
mkIf(mkTagTest(#load onExitFn level, 0w0, 0w0), CodeZero, mkEval(#load onExitFn level, onArgs))
in
val exitCode = rtEnvDec @ #dec onExitFn @ [mkNullDec optCallOnExit]
end
in
mkEnv(prefixCode @ entryCode @ #dec bodyCode @ exitCode @ restoreState, #load bodyCode level)
end
type breakPoint = bool ref
(* Create a local break point and check the global and local break points. *)
fun breakPointCode(breakPoint, location, level, lex, mkAddr) =
if not (getParameter debugTag (LEX.debugParams lex)) then []
else
let
open ADDRESS
(* Create a new local breakpoint and assign it to the ref.
It is possible for the ref to be already assigned a local breakpoint
value if we are compiling a match. In that case the same expression
may be code-generated more than once but we only want one local
break-point. *)
val localBreakPoint =
case breakPoint of
ref (SOME bpt) => bpt
| r as ref NONE =>
let val b = ref false in r := SOME b; b end;
(* Call the breakpoint function if it's defined. *)
val globalBpt = multipleUses(onBreakPointCode, fn () => mkAddr 1, level)
val testCode =
mkIf(
mkNot(mkTagTest(#load globalBpt level, 0w0, 0w0)),
mkEval(#load globalBpt level,
[mkTuple[mkConst(toMachineWord location), mkConst(toMachineWord localBreakPoint)]]),
CodeZero
)
in
#dec globalBpt @ [mkNullDec testCode]
end
structure Sharing =
struct
type types = types
type values = values
type machineWord = machineWord
type fixStatus = fixStatus
type structVals = structVals
type typeConstrSet = typeConstrSet
type signatures = signatures
type functors = functors
type locationProp = locationProp
type environEntry = environEntry
type typeId = typeId
type level = level
type lexan = lexan
type codeBinding = codeBinding
type codetree = codetree
type typeVarMap = typeVarMap
type debuggerStatus = debuggerStatus
end
end;
|