~ubuntu-branches/debian/squeeze/erlang/squeeze

« back to all changes in this revision

Viewing changes to lib/hipe/ppc/hipe_ppc_liveness_fpr.erl

  • Committer: Bazaar Package Importer
  • Author(s): Erlang Packagers, Sergei Golovan
  • Date: 2006-12-03 17:07:44 UTC
  • mfrom: (2.1.11 feisty)
  • Revision ID: james.westby@ubuntu.com-20061203170744-rghjwupacqlzs6kv
Tags: 1:11.b.2-4
[ Sergei Golovan ]
Fixed erlang-base and erlang-base-hipe prerm scripts.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
%%% -*- erlang-indent-level: 2 -*-
 
2
%%% $Id$
 
3
 
 
4
-module(hipe_ppc_liveness_fpr).
 
5
-export([analyse/1]).
 
6
-export([liveout/2]).
 
7
-include("../flow/liveness.inc").
 
8
 
 
9
analyse(CFG) -> analyze(CFG).
 
10
cfg_bb(CFG, L) -> hipe_ppc_cfg:bb(CFG, L).
 
11
cfg_postorder(CFG) -> hipe_ppc_cfg:postorder(CFG).
 
12
cfg_succ_map(CFG) -> hipe_ppc_cfg:succ_map(CFG).
 
13
cfg_succ(CFG, L) -> hipe_ppc_cfg:succ(CFG, L).
 
14
uses(Insn) -> hipe_ppc_defuse:insn_use_fpr(Insn).
 
15
defines(Insn) -> hipe_ppc_defuse:insn_def_fpr(Insn).
 
16
liveout_no_succ() -> [].