Skip to content

Commit

Permalink
Merge branch 'maint'
Browse files Browse the repository at this point in the history
* maint:
  Update primary bootstrap
  erl_lint: Disallow call to is_record/3 if there is a local is_record/3
  Fix crash in trace_info({M,F,A}, Flags) when M:F/A has native code
  Ensure that generated record operations don't call local functions
  • Loading branch information
bjorng committed Jan 26, 2012
2 parents 716f6e4 + 9d2a2e3 commit 0ea66a3
Show file tree
Hide file tree
Showing 7 changed files with 55 additions and 15 deletions.
Binary file modified bootstrap/lib/stdlib/ebin/erl_expand_records.beam
Binary file not shown.
Binary file modified bootstrap/lib/stdlib/ebin/erl_lint.beam
Binary file not shown.
6 changes: 5 additions & 1 deletion erts/emulator/beam/beam_bp.c
Expand Up @@ -1329,10 +1329,14 @@ static BpData *get_break(Process *p, BeamInstr *pc, BeamInstr break_op) {
}

static BpData *is_break(BeamInstr *pc, BeamInstr break_op) {
BpData **rs = (BpData **) pc[-4];
BpData **rs;
BpData *bd = NULL, *ebd = NULL;
ASSERT(pc[-5] == (BeamInstr) BeamOp(op_i_func_info_IaaI));

if (erts_is_native_break(pc)) {
return NULL;
}
rs = (BpData **) pc[-4];
if (! rs) {
return NULL;
}
Expand Down
17 changes: 12 additions & 5 deletions lib/stdlib/src/erl_expand_records.erl
Expand Up @@ -452,8 +452,10 @@ conj([], _E) ->
conj([{{Name,_Rp},L,R,Sz} | AL], E) ->
NL = neg_line(L),
T1 = {op,NL,'orelse',
{call,NL,{atom,NL,is_record},[R,{atom,NL,Name},{integer,NL,Sz}]},
{atom,NL,fail}},
{call,NL,
{remote,NL,{atom,NL,erlang},{atom,NL,is_record}},
[R,{atom,NL,Name},{integer,NL,Sz}]},
{atom,NL,fail}},
T2 = case conj(AL, none) of
empty -> T1;
C -> {op,NL,'and',C,T1}
Expand Down Expand Up @@ -581,7 +583,9 @@ strict_get_record_field(Line, R, {atom,_,F}=Index, Name, St0) ->
ExpRp = erl_lint:modify_line(ExpR, fun(_L) -> 0 end),
RA = {{Name,ExpRp},Line,ExpR,length(Fs)+1},
St2 = St1#exprec{strict_ra = [RA | St1#exprec.strict_ra]},
{{call,Line,{atom,Line,element},[I,ExpR]},St2}
{{call,Line,
{remote,Line,{atom,Line,erlang},{atom,Line,element}},
[I,ExpR]},St2}
end.

record_pattern(I, I, Var, Sz, Line, Acc) ->
Expand All @@ -593,7 +597,9 @@ record_pattern(_, _, _, _, _, Acc) -> reverse(Acc).
sloppy_get_record_field(Line, R, Index, Name, St) ->
Fs = record_fields(Name, St),
I = index_expr(Line, Index, Name, Fs),
expr({call,Line,{atom,Line,element},[I,R]}, St).
expr({call,Line,
{remote,Line,{atom,Line,erlang},{atom,Line,element}},
[I,R]}, St).

strict_record_tests([strict_record_tests | _]) -> true;
strict_record_tests([no_strict_record_tests | _]) -> false;
Expand Down Expand Up @@ -710,7 +716,8 @@ record_setel(R, Name, Fs, Us0) ->
{'case',Lr,R,
[{clause,Lr,[{tuple,Lr,[{atom,Lr,Name} | Wildcards]}],[],
[foldr(fun ({I,Lf,Val}, Acc) ->
{call,Lf,{atom,Lf,setelement},[I,Acc,Val]} end,
{call,Lf,{remote,Lf,{atom,Lf,erlang},
{atom,Lf,setelement}},[I,Acc,Val]} end,
R, Us)]},
{clause,NLr,[{var,NLr,'_'}],[],
[call_error(NLr, {tuple,NLr,[{atom,NLr,badrecord},{atom,NLr,Name}]})]}]}.
Expand Down
12 changes: 9 additions & 3 deletions lib/stdlib/src/erl_lint.erl
Expand Up @@ -1808,7 +1808,7 @@ guard_test2({call,Line,{atom,_La,F},As}=G, Vt, St0) ->
{Asvt,St1} = gexpr_list(As, Vt, St0), %Always check this.
A = length(As),
case erl_internal:type_test(F, A) of
true when F =/= is_record ->
true when F =/= is_record, A =/= 2 ->
case no_guard_bif_clash(St1, {F,A}) of
false ->
{Asvt,add_error(Line, {illegal_guard_local_call,{F,A}}, St1)};
Expand Down Expand Up @@ -1872,9 +1872,15 @@ gexpr({call,Line,{atom,_Lr,is_record},[E,R]}, Vt, St0) ->
gexpr({call,Line,{remote,_Lr,{atom,_Lm,erlang},{atom,Lf,is_record}},[E,A]},
Vt, St0) ->
gexpr({call,Line,{atom,Lf,is_record},[E,A]}, Vt, St0);
gexpr({call,_Line,{atom,_Lr,is_record},[E,{atom,_,_Name},{integer,_,_}]},
gexpr({call,Line,{atom,_Lr,is_record},[E0,{atom,_,_Name},{integer,_,_}]},
Vt, St0) ->
gexpr(E, Vt, St0);
{E,St1} = gexpr(E0, Vt, St0),
case no_guard_bif_clash(St0, {is_record,3}) of
true ->
{E,St1};
false ->
{E,add_error(Line, {illegal_guard_local_call,{is_record,3}}, St1)}
end;
gexpr({call,Line,{atom,_Lr,is_record},[_,_,_]=Asvt0}, Vt, St0) ->
{Asvt,St1} = gexpr_list(Asvt0, Vt, St0),
{Asvt,add_error(Line, illegal_guard_expr, St1)};
Expand Down
12 changes: 12 additions & 0 deletions lib/stdlib/test/erl_expand_records_SUITE.erl
Expand Up @@ -178,6 +178,9 @@ expr(Config) when is_list(Config) ->
true ->
not_ok
end.
is_record(_, _, _) ->
error(wrong_is_record).
">>
],

Expand Down Expand Up @@ -366,6 +369,8 @@ strict(Config) when is_list(Config) ->
end
catch error:_ -> ok
end.
element(_, _) ->
error(wrong_element).
">>
],
?line run(Config, Ts1, [strict_record_tests]),
Expand All @@ -380,6 +385,8 @@ strict(Config) when is_list(Config) ->
case foo of
_ when A#r2.a =:= 1 -> ok
end.
element(_, _) ->
error(wrong_element).
">>
],
?line run(Config, Ts2, [no_strict_record_tests]),
Expand Down Expand Up @@ -415,6 +422,11 @@ update(Config) when is_list(Config) ->
t2() ->
R0 = #r{},
#r{_ = R0#r{a = ok}}.
%% Implicit calls to setelement/3 must go to the BIF,
%% not to this function.
setelement(_, _, _) ->
erlang:error(wrong_setelement_called).
">>
],
?line run(Config, Ts),
Expand Down
23 changes: 17 additions & 6 deletions lib/stdlib/test/erl_lint_SUITE.erl
Expand Up @@ -2633,22 +2633,33 @@ bif_clash(Config) when is_list(Config) ->
[warn_unused_import],
{warnings,[{2,erl_lint,{redefine_bif_import,{binary_part,3}}}]}},
%% Don't accept call to a guard BIF if there is a local definition
%% or an import with the same name.
%% or an import with the same name. Note: is_record/2 is an
%% exception, since it is more of syntatic sugar than a real BIF.
{clash21,
<<"-export([is_list/1]).
-import(x, [is_tuple/1]).
-record(r, {a,b}).
x(T) when is_tuple(T) -> ok;
x(T) when is_list(T) -> ok.
y(T) when is_tuple(T) =:= true -> ok;
y(T) when is_list(T) =:= true -> ok.
y(T) when is_list(T) =:= true -> ok;
y(T) when is_record(T, r, 3) -> ok;
y(T) when is_record(T, r, 3) =:= true -> ok;
y(T) when is_record(T, r) =:= true -> ok.
is_list(_) ->
ok.
is_record(_, _) ->
ok.
is_record(_, _, _) ->
ok.
">>,
[{no_auto_import,[{is_tuple,1}]}],
{errors,[{3,erl_lint,{illegal_guard_local_call,{is_tuple,1}}},
{4,erl_lint,{illegal_guard_local_call,{is_list,1}}},
{5,erl_lint,{illegal_guard_local_call,{is_tuple,1}}},
{6,erl_lint,{illegal_guard_local_call,{is_list,1}}}],[]}}
{errors,[{4,erl_lint,{illegal_guard_local_call,{is_tuple,1}}},
{5,erl_lint,{illegal_guard_local_call,{is_list,1}}},
{6,erl_lint,{illegal_guard_local_call,{is_tuple,1}}},
{7,erl_lint,{illegal_guard_local_call,{is_list,1}}},
{8,erl_lint,{illegal_guard_local_call,{is_record,3}}},
{9,erl_lint,{illegal_guard_local_call,{is_record,3}}}],[]}}
],

?line [] = run(Config, Ts),
Expand Down

0 comments on commit 0ea66a3

Please sign in to comment.