1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
%%% -*- erlang-indent-level: 2 -*-
%%% $Id$
-module(hipe_sparc_liveness_fpr).
-export([analyse/1]).
-export([liveout/2]).
-include("hipe_sparc.hrl").
-include("../flow/liveness.inc").
analyse(CFG) -> analyze(CFG).
cfg_bb(CFG, L) -> hipe_sparc_cfg:bb(CFG, L).
cfg_postorder(CFG) -> hipe_sparc_cfg:postorder(CFG).
cfg_succ(CFG, L) -> hipe_sparc_cfg:succ(CFG, L).
uses(Insn) -> hipe_sparc_defuse:insn_use_fpr(Insn).
defines(Insn) -> hipe_sparc_defuse:insn_def_fpr(Insn).
liveout_no_succ() -> [].
|