package mopsa
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
MOPSA: A Modular and Open Platform for Static Analysis using Abstract Interpretation
Install
dune-project
Dependency
Authors
Maintainers
Sources
mopsa-analyzer-v1.0.tar.gz
md5=9f673f79708b44a7effb3b6bb3618d2c
sha512=cb91cb428e43a22f1abbcb8219710d0c10a5b3756d0da392d4084b3b3a6157350776c596983e63def344f617d39964e91f244f60c07958695ee5c8c809a9f0f4
doc/utils_core/Utils_core/Callstack/index.html
Module Utils_core.CallstackSource
Callstack - representation of the call stack of a program execution
Call sites
**************
Source
type callsite = {call_fun_orig_name : string;(*Original name of the called function
*)call_fun_uniq_name : string;(*Unique name of the called function
*)call_range : Location.range;(*Call location
*)
}Call site is the location of a call in the program
Call stacks
***************
Print a call stack in a short style
push_callstack orig ~uniq range cs adds the call to function orig at location range at the top of the call stack cs. The default unique function name of the function is its original name.
Exception raised when a call stack is empty
pop_callstack cs returns the last call site in cs and the remaining call stack. Raises Empty_callstack if the call stack is empty.
callstack_top cs returns the last call site in cs. Raises Empty_callstack if the call stack is empty.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page