mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-21 12:23:44 +00:00
Fix a test failure in spf grades.
tests/hard_coded/backend_external.m:
tests/hard_coded/from_int_uint32.m:
tests/hard_coded/parse_number_from_io.m:
tests/hard_coded/remove_file.m:
tests/hard_coded/uint_arith.m:
As above.
tests/hard_coded/parse_number_from_io.exp4:
Alternative expected output for spf grades.
130 lines
3.2 KiB
Mathematica
130 lines
3.2 KiB
Mathematica
%---------------------------------------------------------------------------%
|
|
% vim: ts=4 sw=4 et ft=mercury
|
|
%---------------------------------------------------------------------------%
|
|
%
|
|
% The .exp file is for the low-level C backend.
|
|
% The .exp2 file is for the high-level C backend.
|
|
%
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- module backend_external.
|
|
|
|
:- interface.
|
|
|
|
:- import_module io.
|
|
|
|
:- pred main(io::di, io::uo) is det.
|
|
|
|
:- implementation.
|
|
|
|
main(!IO) :-
|
|
p(1, !IO),
|
|
q(2, !IO).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
% in llds grades: external
|
|
% in mlds grades: foreign_proc
|
|
:- pred p(int::in, io::di, io::uo) is det.
|
|
:- pragma external_pred(p/3, [low_level_backend]).
|
|
|
|
% in llds grades: foreign_proc
|
|
% in mlds grades: external
|
|
:- pred q(int::in, io::di, io::uo) is det.
|
|
:- pragma external_pred(q/3, [high_level_backend]).
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pragma foreign_proc("C",
|
|
p(N::in, IO0::di, IO::uo),
|
|
[will_not_call_mercury, promise_pure, high_level_backend],
|
|
"
|
|
#ifdef MR_HIGHLEVEL_CODE
|
|
printf(""p(%"" MR_INTEGER_LENGTH_MODIFIER ""d): "", N);
|
|
printf(""expected highlevel, found highlevel, OK\\n"");
|
|
#else
|
|
printf(""p(%"" MR_INTEGER_LENGTH_MODIFIER ""d): "", N);
|
|
printf(""expected highlevel, found lowlevel, BUG\\n"");
|
|
#endif
|
|
|
|
IO = IO0;
|
|
").
|
|
|
|
:- pragma foreign_proc("C",
|
|
q(N::in, IO0::di, IO::uo),
|
|
[will_not_call_mercury, promise_pure, low_level_backend],
|
|
"
|
|
#ifdef MR_HIGHLEVEL_CODE
|
|
printf(""q(%"" MR_INTEGER_LENGTH_MODIFIER ""d): "", N);
|
|
printf(""expected lowlevel, found highlevel, BUG\\n"");
|
|
#else
|
|
printf(""q(%"" MR_INTEGER_LENGTH_MODIFIER ""d): "", N);
|
|
printf(""expected lowlevel, found lowlevel, OK\\n"");
|
|
#endif
|
|
|
|
IO = IO0;
|
|
").
|
|
|
|
%---------------------------------------------------------------------------%
|
|
|
|
:- pragma foreign_code("C",
|
|
"
|
|
#ifdef MR_HIGHLEVEL_CODE
|
|
|
|
void MR_CALL
|
|
backend_external__q_3_p_0(MR_Integer n)
|
|
{
|
|
printf(""q(%"" MR_INTEGER_LENGTH_MODIFIER ""d): "", n);
|
|
printf(""expected highlevel, found highlevel, OK\\n"");
|
|
}
|
|
|
|
#else
|
|
|
|
MR_define_extern_entry(mercury__backend_external__p_3_0);
|
|
|
|
MR_BEGIN_MODULE(backend_external_module)
|
|
MR_init_entry(mercury__backend_external__p_3_0);
|
|
MR_BEGIN_CODE
|
|
MR_define_entry(mercury__backend_external__p_3_0);
|
|
printf(""p(%"" MR_INTEGER_LENGTH_MODIFIER ""d): "", MR_r1);
|
|
printf(""expected lowlevel, found lowlevel, OK\\n"");
|
|
MR_proceed();
|
|
MR_END_MODULE
|
|
#endif
|
|
|
|
/* Ensure that the initialization code for the above module gets run. */
|
|
/*
|
|
INIT mercury_sys_init_backend_external_module
|
|
*/
|
|
|
|
extern void
|
|
mercury_sys_init_backend_external_module_init(void);
|
|
|
|
extern void
|
|
mercury_sys_init_backend_external_module_init_type_tables(void);
|
|
|
|
extern void
|
|
mercury_sys_init_backend_external_module_write_out_proc_statics(FILE *fp);
|
|
|
|
void
|
|
mercury_sys_init_backend_external_module_init(void)
|
|
{
|
|
#ifndef MR_HIGHLEVEL_CODE
|
|
backend_external_module();
|
|
#endif
|
|
}
|
|
|
|
void
|
|
mercury_sys_init_backend_external_module_write_out_proc_statics(FILE *fp)
|
|
{
|
|
}
|
|
|
|
void
|
|
mercury_sys_init_backend_external_module_init_type_tables(void)
|
|
{
|
|
/* no types to register */
|
|
}
|
|
").
|
|
|
|
%---------------------------------------------------------------------------%
|