1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
%% -*- erlang-indent-level: 2 -*-
%%
%% %CopyrightBegin%
%%
%% Copyright Ericsson AB 2001-2009. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
%%
%% %CopyrightEnd%
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Copyright (c) 2001 by Erik Johansson. All Rights Reserved
%% Time-stamp: <2008-04-20 14:55:35 richard>
%% ====================================================================
%% Module : hipe_rtl_varmap
%% Purpose :
%% Notes :
%% History : * 2001-04-10 Erik Johansson (happi@it.uu.se): Created.
%% ====================================================================
%% Exports :
%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-module(hipe_rtl_varmap).
-export([init/1,
ivs2rvs/2,
icode_var2rtl_var/2,
icode_label2rtl_label/2]).
%-------------------------------------------------------------------------
-include("../main/hipe.hrl").
-include("../icode/hipe_icode.hrl").
%-------------------------------------------------------------------------
%% @spec init(IcodeRecord::#icode{}) -> {Args, VarMap}
%%
%% @doc Initializes gensym for RTL.
-spec init(#icode{}) -> {[_], _}. % XXX: fix me please
init(IcodeRecord) ->
hipe_gensym:init(rtl),
hipe_gensym:set_var(rtl, hipe_rtl_arch:first_virtual_reg()),
hipe_gensym:set_label(rtl, 0),
VarMap = new_var_map(),
{_Args, _VarMap1} = ivs2rvs(hipe_icode:icode_params(IcodeRecord), VarMap).
%%------------------------------------------------------------------------
%%
%% Mapping of labels and variables from Icode to RTL.
%%
%%------------------------------------------------------------------------
%% @spec icode_label2rtl_label(Icode_Label::term(), LabelMap::term()) ->
%% {RTL_Label, NewLabelMap}
%%
%% @doc Converts an Icode label to an RTL label.
icode_label2rtl_label(LabelName, Map) ->
case lookup(LabelName, Map) of
{value, NewLabel} ->
{NewLabel, Map};
none ->
NewLabel = hipe_rtl:mk_new_label(),
{NewLabel, insert(LabelName, NewLabel, Map)}
end.
%% @spec ivs2rvs(Icode_Vars::[term()], VarMap::term()) -> {[RTL_Var],NewVarMap}
%%
%% @doc Converts a list of Icode variables to a list of RTL variables.
ivs2rvs([], VarMap) ->
{[], VarMap};
ivs2rvs([V|Vs], VarMap) ->
{NewV, VarMap0} = icode_var2rtl_var(V, VarMap),
{NewVs, VarMap1} = ivs2rvs(Vs, VarMap0),
{[NewV|NewVs], VarMap1}.
%% @spec icode_var2rtl_var(Icode_Var::term(), VarMap::term()) ->
%% {RTL_Var, NewVarMap}
%%
%% @doc Converts an Icode variable to an RTL variable.
icode_var2rtl_var(Var, Map) ->
Value = lookup(Var, Map),
case Value of
none ->
case type_of_var(Var) of
fvar ->
NewVar = hipe_rtl:mk_new_fpreg(),
{NewVar, insert(Var, NewVar, Map)};
var ->
NewVar = hipe_rtl:mk_new_var(),
{NewVar, insert(Var, NewVar, Map)};
{reg, IsGcSafe} ->
NewVar =
case IsGcSafe of
%% true -> hipe_rtl:mk_new_reg_gcsafe();
false -> hipe_rtl:mk_new_reg()
end,
{NewVar, insert(Var, NewVar, Map)}
end;
{value, NewVar} ->
{NewVar, Map}
end.
%%
%% Simple type test
%%
type_of_var(X) ->
case hipe_icode:is_fvar(X) of
true ->
fvar;
false ->
case hipe_icode:is_var(X) of
true ->
var;
false ->
case hipe_icode:is_reg(X) of
true ->
{reg, hipe_icode:reg_is_gcsafe(X)};
false ->
%% Sanity check
case hipe_icode:is_const(X) of
true -> const;
false ->
exit({"Unknown Icode variable", X})
end
end
end
end.
%%
%% Helping utilities
%%
new_var_map() ->
gb_trees:empty().
lookup(V, Map) ->
gb_trees:lookup(V, Map).
insert(Key, Val, Map) ->
gb_trees:insert(Key, Val, Map).
|