mirror of
https://github.com/Mercury-Language/mercury.git
synced 2025-12-19 15:54:18 +00:00
Estimated hours taken: 2 Branches: main compiler/*.m: Import only one compiler module per line. Sort the blocks of imports. This makes it easier to merge in changes. In a couple of places, remove unnecessary imports.
74 lines
2.5 KiB
ObjectPascal
74 lines
2.5 KiB
ObjectPascal
%-----------------------------------------------------------------------------%
|
|
% Copyright (C) 2001, 2003 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.
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
% maybe_mlds_to_gcc - Convert MLDS to the GCC back-end representation,
|
|
% if the GCC back-end interface has been enabled.
|
|
% Main author: fjh.
|
|
|
|
% This is just a wrapper around mlds_to_gcc.m to enable that
|
|
% file to be included iff we were configured with the
|
|
% gcc back-end interface enabled.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- module ml_backend__maybe_mlds_to_gcc.
|
|
:- interface.
|
|
|
|
:- import_module ml_backend__mlds.
|
|
|
|
:- import_module bool.
|
|
:- use_module io.
|
|
|
|
:- type frontend_callback(T) == pred(T, io__state, io__state).
|
|
:- inst frontend_callback == (pred(out, di, uo) is det).
|
|
|
|
% Invoke the callback either via gcc__run_backend, or directly,
|
|
% depending on whether the gcc back-end interface has
|
|
% been enabled.
|
|
:- pred maybe_mlds_to_gcc__run_gcc_backend(mercury_module_name,
|
|
frontend_callback(T), T, io__state, io__state).
|
|
:- mode maybe_mlds_to_gcc__run_gcc_backend(in, in(frontend_callback), out,
|
|
di, uo) is det.
|
|
|
|
% Either invoke mlds_to_gcc__compile_to_asm, or report an error
|
|
% message, depending on whether the gcc back-end interface has
|
|
% been enabled. In the former case,
|
|
% the bool returned is `yes' iff the module contained C code.
|
|
:- pred maybe_mlds_to_gcc__compile_to_asm(mlds__mlds, bool,
|
|
io__state, io__state).
|
|
:- mode maybe_mlds_to_gcc__compile_to_asm(in, out, di, uo) is det.
|
|
|
|
%-----------------------------------------------------------------------------%
|
|
|
|
:- implementation.
|
|
|
|
#if ENABLE_GCC_BACK_END
|
|
|
|
:- use_module mlds_to_gcc.
|
|
|
|
maybe_mlds_to_gcc__run_gcc_backend(ModuleName, CallBack, CallBackOutput) -->
|
|
mlds_to_gcc__run_gcc_backend(ModuleName, CallBack, CallBackOutput).
|
|
|
|
maybe_mlds_to_gcc__compile_to_asm(MLDS, ContainsCCode) -->
|
|
mlds_to_gcc__compile_to_asm(MLDS, ContainsCCode).
|
|
|
|
#else
|
|
|
|
:- import_module hlds__passes_aux.
|
|
:- import_module string.
|
|
|
|
maybe_mlds_to_gcc__run_gcc_backend(_ModuleName, CallBack, CallBackOutput) -->
|
|
CallBack(CallBackOutput).
|
|
|
|
maybe_mlds_to_gcc__compile_to_asm(_MLDS, no) -->
|
|
report_error(
|
|
"Sorry, `--target asm' not supported: this installation of the Mercury\n" ++
|
|
"compiler was built without support for the GCC back-end interface.").
|
|
|
|
#endif
|
|
|
|
%-----------------------------------------------------------------------------%
|