Files
mercury/compiler/middle_rec.m
Zoltan Somogyi 4e6c603d30 Fix two bugs that caused test case failures in deep profiling grades.
Estimated hours taken: 3
Branches: main

compiler/lookup_switch.m:
	Fix two bugs that caused test case failures in deep profiling grades.

	One bug was that an acquired register wasn't being released before
	the creation of a resume point, which rebuilds the code generator state
	(and thus forgets about acquired registers).

	The other bug was that is_lookup_switch wasn't performing the actions
	generate_goal would have when processing goals. In particular, it
	wasn't invoking pre_goal_update and post_goal_update on disjunctions
	inside the switch.

compiler/lookup_util.m:
	Do not standardize goals by removing scopes from around other goals,
	because this could also remove the effects of the code generator
	annotations (e.g. liveness changes such as pre-births) on the scope
	goal.

compiler/simplify.m:
	Eliminate those redundant scopes if asked to do so. Since this is done
	before the code generator annotations are put on goals, this is safe.

compiler/code_gen.m:
compiler/proc_gen.m:
	Divide the old code_gen.m into two modules: the new code_gen.m
	concerned with generating code for goals, and the new module proc_gen.m
	concerned with generating code for procedures. Without this, the code
	for handling goals is lost inside the old code_gen.m module.

compiler/ll_backend.m:
	Include the new module.

compiler/mercury_compile.m:
	Import proc_gen instead of code_gen, and ask simplify to eliminate
	unnecessary scopes before code generation.

compiler/middle_rec.m:
	Update a reference to a predicate now in proc_gen.m.

compiler/notes/compiler_design.html:
	Document the new module.
2006-05-03 06:46:20 +00:00

690 lines
24 KiB
Mathematica

%---------------------------------------------------------------------------%
% vim: ft=mercury ts=4 sw=4 et
%---------------------------------------------------------------------------%
% Copyright (C) 1994-2006 The University of Melbourne.
% This file may only be copied under the terms of the GNU General
% Public License - see the file COPYING in the Mercury distribution.
%---------------------------------------------------------------------------%
%
% File: middle_rec.m.
% Main authors: zs, conway.
%
% Code generation - do middle recursion optimization.
%
%---------------------------------------------------------------------------%
:- module ll_backend.middle_rec.
:- interface.
:- import_module hlds.hlds_goal.
:- import_module ll_backend.code_info.
:- import_module ll_backend.llds.
:- pred match_and_generate(hlds_goal::in, code_tree::out,
code_info::in, code_info::out) is semidet.
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- implementation.
:- import_module backend_libs.builtin_ops.
:- import_module hlds.code_model.
:- import_module hlds.goal_form.
:- import_module hlds.hlds_data.
:- import_module hlds.hlds_llds.
:- import_module hlds.hlds_module.
:- import_module libs.compiler_util.
:- import_module libs.tree.
:- import_module ll_backend.code_gen.
:- import_module ll_backend.code_util.
:- import_module ll_backend.llds_out.
:- import_module ll_backend.opt_util.
:- import_module ll_backend.proc_gen.
:- import_module ll_backend.unify_gen.
:- import_module parse_tree.prog_data.
:- import_module parse_tree.prog_out.
:- import_module assoc_list.
:- import_module bool.
:- import_module int.
:- import_module list.
:- import_module maybe.
:- import_module pair.
:- import_module set.
:- import_module string.
%---------------------------------------------------------------------------%
match_and_generate(Goal, Instrs, !CI) :-
Goal = GoalExpr - GoalInfo,
GoalExpr = switch(Var, cannot_fail, [Case1, Case2]),
Case1 = case(ConsId1, Goal1),
Case2 = case(ConsId2, Goal2),
(
contains_only_builtins(Goal1) = yes,
contains_simple_recursive_call(Goal2, !.CI)
->
middle_rec_generate_switch(Var, ConsId1, Goal1, Goal2,
GoalInfo, Instrs, !CI)
;
contains_only_builtins(Goal2) = yes,
contains_simple_recursive_call(Goal1, !.CI)
->
middle_rec_generate_switch(Var, ConsId2, Goal2, Goal1,
GoalInfo, Instrs, !CI)
;
fail
).
%---------------------------------------------------------------------------%
% contains_simple_recursive_call(G, CI, Last, ContainsTakeAddr)
% succeeds if G is a conjunction of goals, exactly one of which is a
% recursive call (CI says what the current procedure is), there are no
% other goals that cause control to leave this procedure, and there are
% no unifications that take the addresses of fields.
%
:- pred contains_simple_recursive_call(hlds_goal::in, code_info::in)
is semidet.
contains_simple_recursive_call(Goal - _, CodeInfo) :-
Goal = conj(plain_conj, Goals),
contains_simple_recursive_call_conj(Goals, CodeInfo).
:- pred contains_simple_recursive_call_conj(list(hlds_goal)::in, code_info::in)
is semidet.
contains_simple_recursive_call_conj([Goal | Goals], CodeInfo) :-
Goal = GoalExpr - _,
( contains_only_builtins_expr(GoalExpr) = yes ->
contains_simple_recursive_call_conj(Goals, CodeInfo)
;
is_recursive_call(GoalExpr, CodeInfo),
contains_only_builtins_list(Goals) = yes
).
:- pred is_recursive_call(hlds_goal_expr::in, code_info::in) is semidet.
is_recursive_call(Goal, CodeInfo) :-
Goal = call(CallPredId, CallProcId, _, BuiltinState, _, _),
BuiltinState = not_builtin,
code_info.get_pred_id(CodeInfo, PredId),
PredId = CallPredId,
code_info.get_proc_id(CodeInfo, ProcId),
ProcId = CallProcId.
% contains_only_builtins(G) returns `yes' if G is a leaf procedure,
% i.e. control does not leave G to call another procedure, even
% if that procedure is a complicated unification. It also does not contain
% unifications that take the addresses of fields.
%
:- func contains_only_builtins(hlds_goal) = bool.
contains_only_builtins(Goal - _GoalInfo) =
contains_only_builtins_expr(Goal).
:- func contains_only_builtins_expr(hlds_goal_expr) = bool.
contains_only_builtins_expr(conj(ConjType, Goals)) = OnlyBuiltins :-
(
ConjType = plain_conj,
OnlyBuiltins = contains_only_builtins_list(Goals)
;
ConjType = parallel_conj,
OnlyBuiltins = no
).
contains_only_builtins_expr(disj(Goals)) =
contains_only_builtins_list(Goals).
contains_only_builtins_expr(switch(_Var, _Category, Cases)) =
contains_only_builtins_cases(Cases).
contains_only_builtins_expr(not(Goal)) =
contains_only_builtins(Goal).
contains_only_builtins_expr(scope(_, Goal)) =
contains_only_builtins(Goal).
contains_only_builtins_expr(if_then_else(_Vars, Cond, Then, Else))
= OnlyBuiltins :-
(
contains_only_builtins(Cond) = yes,
contains_only_builtins(Then) = yes,
contains_only_builtins(Else) = yes
->
OnlyBuiltins = yes
;
OnlyBuiltins = no
).
contains_only_builtins_expr(call(_, _, _, BuiltinState, _, _))
= OnlyBuiltins :-
(
BuiltinState = inline_builtin,
OnlyBuiltins = yes
;
BuiltinState = out_of_line_builtin,
OnlyBuiltins = no
;
BuiltinState = not_builtin,
OnlyBuiltins = no
).
contains_only_builtins_expr(unify(_, _, _, Uni, _)) = OnlyBuiltins :-
% Complicated unifies are _non_builtin_
(
Uni = assign(_, _),
OnlyBuiltins = yes
;
Uni = simple_test(_, _),
OnlyBuiltins = yes
;
Uni = construct(_, _, _, _, _, _, SubInfo),
(
SubInfo = no_construct_sub_info,
OnlyBuiltins = yes
;
SubInfo = construct_sub_info(TakeAddressFields, _),
(
TakeAddressFields = no,
OnlyBuiltins = yes
;
TakeAddressFields = yes(_),
OnlyBuiltins = no
)
)
;
Uni = deconstruct(_, _, _, _, _, _),
OnlyBuiltins = yes
;
Uni = complicated_unify(_, _, _),
OnlyBuiltins = no
).
contains_only_builtins_expr(foreign_proc(_, _, _, _, _, _)) = no.
contains_only_builtins_expr(generic_call(_, _, _, _)) = no.
contains_only_builtins_expr(shorthand(_)) = no.
:- func contains_only_builtins_cases(list(case)) = bool.
contains_only_builtins_cases([]) = yes.
contains_only_builtins_cases([case(_ConsId, Goal) | Cases]) = OnlyBuiltins :-
( contains_only_builtins(Goal) = yes ->
OnlyBuiltins = contains_only_builtins_cases(Cases)
;
OnlyBuiltins = no
).
:- func contains_only_builtins_list(list(hlds_goal)) = bool.
contains_only_builtins_list([]) = yes.
contains_only_builtins_list([Goal | Goals]) = OnlyBuiltins :-
( contains_only_builtins(Goal) = yes ->
OnlyBuiltins = contains_only_builtins_list(Goals)
;
OnlyBuiltins = no
).
%---------------------------------------------------------------------------%
:- pred middle_rec_generate_switch(prog_var::in, cons_id::in, hlds_goal::in,
hlds_goal::in, hlds_goal_info::in, code_tree::out,
code_info::in, code_info::out) is semidet.
middle_rec_generate_switch(Var, BaseConsId, Base, Recursive, SwitchGoalInfo,
Instrs, !CI) :-
code_info.get_stack_slots(!.CI, StackSlots),
code_info.get_varset(!.CI, VarSet),
SlotsComment = explain_stack_slots(StackSlots, VarSet),
code_info.get_module_info(!.CI, ModuleInfo),
code_info.get_pred_id(!.CI, PredId),
code_info.get_proc_id(!.CI, ProcId),
code_util.make_local_entry_label(ModuleInfo, PredId, ProcId, no,
EntryLabel),
code_info.pre_goal_update(SwitchGoalInfo, no, !CI),
unify_gen.generate_tag_test(Var, BaseConsId, branch_on_success,
BaseLabel, EntryTestCode, !CI),
tree.flatten(EntryTestCode, EntryTestListList),
list.condense(EntryTestListList, EntryTestList),
goal_info_get_store_map(SwitchGoalInfo, StoreMap),
code_info.remember_position(!.CI, BranchStart),
code_gen.generate_goal(model_det, Base, BaseGoalCode, !CI),
code_info.generate_branch_end(StoreMap, no, MaybeEnd1,
BaseSaveCode, !CI),
code_info.reset_to_position(BranchStart, !CI),
code_gen.generate_goal(model_det, Recursive, RecGoalCode, !CI),
code_info.generate_branch_end(StoreMap, MaybeEnd1, MaybeEnd,
RecSaveCode, !CI),
code_info.post_goal_update(SwitchGoalInfo, !CI),
code_info.after_all_branches(StoreMap, MaybeEnd, !CI),
ArgModes = code_info.get_arginfo(!.CI),
HeadVars = code_info.get_headvars(!.CI),
assoc_list.from_corresponding_lists(HeadVars, ArgModes, Args),
code_info.setup_return(Args, LiveArgs, EpilogCode, !CI),
BaseCode = tree(BaseGoalCode, tree(BaseSaveCode, EpilogCode)),
RecCode = tree(RecGoalCode, tree(RecSaveCode, EpilogCode)),
LiveValCode = [livevals(LiveArgs) - ""],
tree.flatten(BaseCode, BaseListList),
list.condense(BaseListList, BaseList),
tree.flatten(RecCode, RecListList),
list.condense(RecListList, RecList),
% In the code we generate, the base instruction sequence is executed
% in situations where this procedure has no stack frame. If this
% sequence refers to the stack frame, it will be to some other procedure's
% variables, which is obviously incorrect.
opt_util.block_refers_to_stack(BaseList) = no,
list.append(BaseList, RecList, AvoidList),
find_unused_register(AvoidList, AuxReg),
split_rec_code(RecList, BeforeList0, AfterList),
add_counter_to_livevals(BeforeList0, AuxReg, BeforeList),
code_info.get_next_label(Loop1Label, !CI),
code_info.get_next_label(Loop2Label, !CI),
code_info.get_total_stackslot_count(!.CI, FrameSize),
generate_downloop_test(EntryTestList, Loop1Label, Loop1Test),
( FrameSize = 0 ->
MaybeIncrSp = [],
MaybeDecrSp = [],
InitAuxReg = [
assign(AuxReg, const(int_const(0)))
- "initialize counter register"],
IncrAuxReg = [
assign(AuxReg, binop(int_add, lval(AuxReg), const(int_const(1))))
- "increment loop counter"],
DecrAuxReg = [
assign(AuxReg, binop(int_sub, lval(AuxReg), const(int_const(1))))
- "decrement loop counter"],
TestAuxReg = [
if_val(binop(int_gt, lval(AuxReg), const(int_const(0))),
label(Loop2Label))
- "test on upward loop"]
;
PushMsg = proc_gen.push_msg(ModuleInfo, PredId, ProcId),
MaybeIncrSp = [incr_sp(FrameSize, PushMsg) - ""],
MaybeDecrSp = [decr_sp(FrameSize) - ""],
InitAuxReg = [assign(AuxReg, lval(sp))
- "initialize counter register"],
IncrAuxReg = [],
DecrAuxReg = [],
TestAuxReg = [
if_val(binop(int_gt, lval(sp), lval(AuxReg)), label(Loop2Label))
- "test on upward loop"]
),
% Even though the recursive call is followed by some goals in the HLDS,
% these goals may generate no LLDS code, so it is in fact possible for
% AfterList to be empty. There is no point in testing BeforeList for empty,
% since if it is, the code is an infinite loop anyway.
(
AfterList = [],
list.condense([
[
label(EntryLabel) - "Procedure entry point",
comment(SlotsComment) - ""
],
EntryTestList,
[
label(Loop1Label) - "start of the down loop"
],
BeforeList,
Loop1Test,
[
label(BaseLabel) - "start of base case"
],
BaseList,
LiveValCode,
[
goto(succip) - "exit from base case"
]
], InstrList)
;
AfterList = [_ | _],
% The instruction list we are constructing has two copies of BaseList.
% If this list of instructions defines any labels, we must either not
% apply this version of the optimization, or we must consistently
% substitute the labels (which will be referred to only from within the
% BaseList instructions themselves). We choose the former course.
find_labels(BaseList, BaseLabels),
BaseLabels = [],
list.condense([
[
label(EntryLabel) - "Procedure entry point",
comment(SlotsComment) - ""
],
EntryTestList,
InitAuxReg,
[
label(Loop1Label) - "start of the down loop"
],
MaybeIncrSp,
IncrAuxReg,
BeforeList,
Loop1Test,
BaseList,
[
label(Loop2Label) - ""
],
AfterList,
MaybeDecrSp,
DecrAuxReg,
TestAuxReg,
LiveValCode,
[
goto(succip) - "exit from recursive case",
label(BaseLabel) - "start of base case"
],
BaseList,
LiveValCode,
[
goto(succip) - "exit from base case"
]
], InstrList)
),
Instrs = node(InstrList).
%---------------------------------------------------------------------------%
%---------------------------------------------------------------------------%
:- pred generate_downloop_test(list(instruction)::in, label::in,
list(instruction)::out) is det.
generate_downloop_test([], _, _) :-
unexpected(this_file, "generate_downloop_test on empty list").
generate_downloop_test([Instr0 | Instrs0], Target, Instrs) :-
( Instr0 = if_val(Test, _OldTarget) - _Comment ->
(
Instrs0 = []
;
Instrs0 = [_ | _],
unexpected(this_file,
"generate_downloop_test: " ++
"if_val followed by other instructions")
),
code_util.neg_rval(Test, NewTest),
Instrs = [if_val(NewTest, label(Target)) - "test on downward loop"]
;
generate_downloop_test(Instrs0, Target, Instrs1),
Instrs = [Instr0 | Instrs1]
).
%---------------------------------------------------------------------------%
:- pred split_rec_code(list(instruction)::in,
list(instruction)::out, list(instruction)::out) is det.
split_rec_code([], _, _) :-
unexpected(this_file, "did not find call in split_rec_code").
split_rec_code([Instr0 | Instrs1], Before, After) :-
( Instr0 = call(_, _, _, _, _, _) - _ ->
(
opt_util.skip_comments(Instrs1, Instrs2),
Instrs2 = [Instr2 | Instrs3],
Instr2 = label(_) - _
->
Before = [],
After = Instrs3
;
unexpected(this_file, "split_rec_code: call not followed by label")
)
;
split_rec_code(Instrs1, Before1, After),
Before = [Instr0 | Before1]
).
%---------------------------------------------------------------------------%
:- pred add_counter_to_livevals(list(instruction)::in, lval::in,
list(instruction)::out) is det.
add_counter_to_livevals([], _Lval, []).
add_counter_to_livevals([I0 | Is0], Lval, [I | Is]) :-
( I0 = livevals(Lives0) - Comment ->
set.insert(Lives0, Lval, Lives),
I = livevals(Lives) - Comment
;
I = I0
),
add_counter_to_livevals(Is0, Lval, Is).
%---------------------------------------------------------------------------%
:- pred find_unused_register(list(instruction)::in, lval::out)
is det.
find_unused_register(Instrs, UnusedReg) :-
set.init(Used0),
find_used_registers(Instrs, Used0, Used1),
set.to_sorted_list(Used1, UsedList),
find_unused_register_2(UsedList, 1, UnusedReg).
:- pred find_unused_register_2(list(int)::in, int::in, lval::out) is det.
find_unused_register_2([], N, reg(r, N)).
find_unused_register_2([H | T], N, Reg) :-
( N < H ->
Reg = reg(r, N)
;
N1 = N + 1,
find_unused_register_2(T, N1, Reg)
).
:- pred find_used_registers(list(instruction)::in,
set(int)::in, set(int)::out) is det.
find_used_registers([], !Used).
find_used_registers([Instr - _ | Instrs], !Used) :-
find_used_registers_instr(Instr, !Used),
find_used_registers(Instrs, !Used).
:- pred find_used_registers_instr(instr::in,
set(int)::in, set(int)::out) is det.
find_used_registers_instr(comment(_), !Used).
find_used_registers_instr(livevals(LvalSet), !Used) :-
set.to_sorted_list(LvalSet, LvalList),
find_used_registers_lvals(LvalList, !Used).
find_used_registers_instr(block(_, _, Instrs), !Used) :-
find_used_registers(Instrs, !Used).
find_used_registers_instr(assign(Lval, Rval), !Used) :-
find_used_registers_lval(Lval, !Used),
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(call(_, _, _, _, _, _), !Used).
find_used_registers_instr(mkframe(_, _), !Used).
find_used_registers_instr(label(_), !Used).
find_used_registers_instr(goto(_), !Used).
find_used_registers_instr(computed_goto(Rval, _), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(c_code(_, _), !Used).
find_used_registers_instr(if_val(Rval, _), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(save_maxfr(Lval), !Used) :-
find_used_registers_lval(Lval, !Used).
find_used_registers_instr(restore_maxfr(Lval), !Used) :-
find_used_registers_lval(Lval, !Used).
find_used_registers_instr(incr_hp(Lval, _, _, Rval, _), !Used) :-
find_used_registers_lval(Lval, !Used),
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(mark_hp(Lval), !Used) :-
find_used_registers_lval(Lval, !Used).
find_used_registers_instr(restore_hp(Rval), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(free_heap(Rval), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(store_ticket(Lval), !Used) :-
find_used_registers_lval(Lval, !Used).
find_used_registers_instr(reset_ticket(Rval, _Rsn), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(discard_ticket, !Used).
find_used_registers_instr(prune_ticket, !Used).
find_used_registers_instr(mark_ticket_stack(Lval), !Used) :-
find_used_registers_lval(Lval, !Used).
find_used_registers_instr(prune_tickets_to(Rval), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_instr(incr_sp(_, _), !Used).
find_used_registers_instr(decr_sp(_), !Used).
find_used_registers_instr(decr_sp_and_return(_), !Used).
find_used_registers_instr(pragma_c(_, Components, _, _, _, _, _, _, _),
!Used) :-
find_used_registers_components(Components, !Used).
find_used_registers_instr(init_sync_term(Lval, _), !Used) :-
find_used_registers_lval(Lval, !Used).
find_used_registers_instr(fork(_, _, _), !Used).
find_used_registers_instr(join_and_terminate(Lval), !Used) :-
find_used_registers_lval(Lval, !Used).
find_used_registers_instr(join_and_continue(Lval, _), !Used) :-
find_used_registers_lval(Lval, !Used).
:- pred find_used_registers_components(
list(pragma_c_component)::in,
set(int)::in, set(int)::out) is det.
find_used_registers_components([], !Used).
find_used_registers_components([Comp | Comps], !Used) :-
find_used_registers_component(Comp, !Used),
find_used_registers_components(Comps, !Used).
:- pred find_used_registers_component(pragma_c_component::in,
set(int)::in, set(int)::out) is det.
find_used_registers_component(pragma_c_inputs(In), !Used) :-
insert_pragma_c_input_registers(In, !Used).
find_used_registers_component(pragma_c_outputs(Out), !Used) :-
insert_pragma_c_output_registers(Out, !Used).
find_used_registers_component(pragma_c_user_code(_, _), !Used).
find_used_registers_component(pragma_c_raw_code(_, _, _), !Used).
find_used_registers_component(pragma_c_fail_to(_), !Used).
find_used_registers_component(pragma_c_noop, !Used).
:- pred find_used_registers_lvals(list(lval)::in,
set(int)::in, set(int)::out) is det.
find_used_registers_lvals([], !Used).
find_used_registers_lvals([Lval | Lvals], !Used) :-
find_used_registers_lval(Lval, !Used),
find_used_registers_lvals(Lvals, !Used).
:- pred find_used_registers_lval(lval::in,
set(int)::in, set(int)::out) is det.
find_used_registers_lval(Lval, !Used) :-
( Lval = reg(r, N) ->
copy(N, N1),
set.insert(!.Used, N1, !:Used)
; Lval = field(_, Rval, FieldNum) ->
find_used_registers_rval(Rval, !Used),
find_used_registers_rval(FieldNum, !Used)
; Lval = lvar(_) ->
unexpected(this_file, "lvar found in find_used_registers_lval")
;
true
).
:- pred find_used_registers_rval(rval::in, set(int)::in, set(int)::out) is det.
find_used_registers_rval(Rval, !Used) :-
(
Rval = lval(Lval),
find_used_registers_lval(Lval, !Used)
;
Rval = var(_),
unexpected(this_file, "var found in find_used_registers_rval")
;
Rval = mkword(_, Rval1),
find_used_registers_rval(Rval1, !Used)
;
Rval = const(_)
;
Rval = unop(_, Rval1),
find_used_registers_rval(Rval1, !Used)
;
Rval = binop(_, Rval1, Rval2),
find_used_registers_rval(Rval1, !Used),
find_used_registers_rval(Rval2, !Used)
;
Rval = mem_addr(MemRef),
find_used_registers_mem_ref(MemRef, !Used)
).
:- pred find_used_registers_mem_ref(mem_ref::in,
set(int)::in, set(int)::out) is det.
find_used_registers_mem_ref(stackvar_ref(Rval), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_mem_ref(framevar_ref(Rval), !Used) :-
find_used_registers_rval(Rval, !Used).
find_used_registers_mem_ref(heap_ref(Rval1, _, Rval2), !Used) :-
find_used_registers_rval(Rval1, !Used),
find_used_registers_rval(Rval2, !Used).
:- pred find_used_registers_maybe_rvals(list(maybe(rval))::in,
set(int)::in, set(int)::out) is det.
find_used_registers_maybe_rvals([], !Used).
find_used_registers_maybe_rvals([MaybeRval | MaybeRvals], !Used) :-
(
MaybeRval = no
;
MaybeRval = yes(Rval),
find_used_registers_rval(Rval, !Used)
),
find_used_registers_maybe_rvals(MaybeRvals, !Used).
:- pred insert_pragma_c_input_registers(list(pragma_c_input)::in,
set(int)::in, set(int)::out) is det.
insert_pragma_c_input_registers([], !Used).
insert_pragma_c_input_registers([Input | Inputs], !Used) :-
Input = pragma_c_input(_, _, _, _, Rval, _, _),
find_used_registers_rval(Rval, !Used),
insert_pragma_c_input_registers(Inputs, !Used).
:- pred insert_pragma_c_output_registers(list(pragma_c_output)::in,
set(int)::in, set(int)::out) is det.
insert_pragma_c_output_registers([], !Used).
insert_pragma_c_output_registers([Output | Outputs], !Used) :-
Output = pragma_c_output(Lval, _, _, _, _, _, _),
find_used_registers_lval(Lval, !Used),
insert_pragma_c_output_registers(Outputs, !Used).
%---------------------------------------------------------------------------%
% Find all the labels defined in an instruction sequence.
%
:- pred find_labels(list(instruction)::in, list(label)::out) is det.
find_labels(Instrs, Label2) :-
find_labels_2(Instrs, [], Label2).
:- pred find_labels_2(list(instruction)::in,
list(label)::in, list(label)::out) is det.
find_labels_2([], !Labels).
find_labels_2([Instr - _ | Instrs], !Labels) :-
( Instr = label(Label) ->
!:Labels = [Label | !.Labels]
; Instr = block(_, _, Block) ->
find_labels_2(Block, !Labels)
;
true
),
find_labels_2(Instrs, !Labels).
%---------------------------------------------------------------------------%
:- func this_file = string.
this_file = "middle_rec.m".
%---------------------------------------------------------------------------%
:- end_module middle_rec.
%---------------------------------------------------------------------------%