Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Variables
Type
Visibility
Attributes
Name
Initial
integer(kind=default_int),
private
::
i
integer(kind=default_int),
private
::
j
Source Code
subroutine remove_from_stack(idx)!! Remove a region index from the stack (helper for explicit stop)integer(default_int),intent(in)::idxinteger(default_int)::i,jdo i=state%stack_depth,1,-1if(state%stack(i)==idx)then! Shift remaining elements downdo j=i,state%stack_depth-1state%stack(j)=state%stack(j+1)end dostate%stack_depth=state%stack_depth-1return end if end do end subroutine remove_from_stack