package jasmin

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Linter.RDDomain

Reaching definition domain. For more informations see :

  • https://en.wikipedia.org/wiki/Reaching_definition
  • Principles of Program Analysis - Nielson, Nielson & Hankin (2006) (chapter 2.1.2)

This module implements a reaching definition domain for Jasmin programs. Domain are represented as a map that associate a set of instructions to each variable.

val empty : t

empty domain

val join : t -> t -> t
val included : t -> t -> bool
val forget : Jasmin.Prog.var -> t -> t
val pp : Format.formatter -> (Jasmin.Location.i_loc * t) -> unit