futhark-0.19.4: An optimising compiler for a functional, array-oriented language.
Safe HaskellNone
LanguageHaskell2010

Futhark.Optimise.InliningDeadFun

Description

This module implements a compiler pass for inlining functions, then removing those that have become dead.

Synopsis

Documentation

inlineFunctions :: Pass SOACS SOACS Source #

Inline all functions and remove the resulting dead functions.

removeDeadFunctions :: Pass SOACS SOACS Source #

removeDeadFunctions prog removes the functions that are unreachable from the main function from the program.