Release 0.13.0 - Known Problems

Bug reports should be sent to mercury-bugs@csse.unimelb.edu.au. If you're reporting more than one bug, please use separate emails for each bug. Please include all the relevant information, including which version of Mercury you're using, what operating system you're using, and a complete source file that demonstrates the problem. (If it's something that only shows up in multi-module programs, send a shar archive or uuencoded tar archive containing your source files.) Please try to ensure that bug reports contain all the information that we need to be able to reproduce the problem. Make sure that all bug reports are fully self-contained.

Below is a list of the known outstanding bugs. We'll try to record any other bugs that are discovered on our WWW page . In addition to the bugs mentioned here, some bugs related to the implementation of particular languages features (existential types, nested modules, tabling) are also mentioned in the language reference manual, and some problems related to using Mercury on specific operating systems are described in the README.* files. See also the limitations of the current release.


Subject: bug report - Inf and NaN
Date: 4 Oct 1995

The following module causes an "undefined variable Inf" error in the generated C code, because 1E400 == Infinity, which gets printed as `Inf'.

:- module hello.
:- interface.
:- import_module io.

:- pred main(io::di, io::uo) is det.

:- implementation.

main(!IO) :-
	io.write_float(1E400, !IO).

Subject: bug with PC values on Alpha
Date: 12 Jun 1996

On the alpha, if the Mercury runtime catches a signal, it sometimes prints out the wrong value for the PC.


Subject: inter-module optimization and abstract exported equivalence types.
Date: 19 February 1998

In some cases the compiler reports spurious ambiguity errors when compiling with `--intermodule-optimization'. This is due to the definition of abstract exported equivalence types being made visible by inter-module optimization. In this example, with `--intermodule-optimization' the compiler sees the declaration `:- type var == int' from term.m and then cannot determine whether `Elem' has type `int' or `pair(int)'. The work-around is to add an explicit type qualification.

:- module foo.
:- interface.
:- import_module list, term.
:- pred test(list(var)::in) is det.
:- implementation.
:- import_module int, std_util.

test(Args0) :-
	MakeIndex =
		(pred(Elem0::in, Elem::out, Index0::in, Index::out) is det :-
			Elem = Elem0 - Index0,
			Index = Index0 + 1
	),
	list.map_foldl(MakeIndex, Args0, _, 0, _).

Subject: GCC internal error
Date: 26 June 2001
    random.c: In function `random_module6':
    random.c:412: fixed or forbidden register 3 (bx) was spilled for class
    GENERAL_REGS.
    This may be due to a compiler bug or to impossible asm
    statements or clauses.

    mercury_trace_alias.c:98: Unable to find a register to spill in class
    `SIREG'.
This problem occurs with several different combinations of GCC version and C source file.

This seems to be a bug in GCC's handling of global register variables. The bug seems to be finally fixed in GCC 3.3 or 3.4.

If this problem occurs when compiling the source distribution, install from the binary distribution instead.

If a similar problem occurs when compiling your program, there are a few possible work-arounds:


Subject: NaN behaviour
Date: 21 Oct 2002

The mercury standard library tends to avoid producing NaN (e.g. throwing an exception in many places where libc would return NaN), but it's still possible from arithmetic functions (e.g. 0.0*Inf, Inf - Inf, Inf + -Inf, Inf / Inf), sin,cos,tan when passed infinity, and perhaps other things (I haven't done a full search). Presumably it can also arise from using the foreign language interface.

When NaN does arise, we have a problem that `=' (and unification) aren't reflexive. From a logical point of view, this is a fairly serious problem.

A lesser problem is that `<' doesn't induce a total order on floats.


Subject: mode analysis bug
Date: 1 December 2004

The Mercury compiler sometimes aborts with the following error message:

  	Uncaught Mercury exception:
  	Software Error: inappropriate determinism inside a negation

This bug is due to a limitation in the mode checker. It has only been reported as occurring when inlining is enabled. A workaround is to disable inlining for any affected files. This can be done by using the option `--no-inlining'.


Subject: higher-order specialisation bug
Date: 2 May 2005

The Mercury compiler sometimes aborts at -O3 and higher with an error message similar to the following:

	 Uncaught Mercury exception:
	 Software Error: map__lookup: key not found
		Key Type: term.var(parse_tree.prog_data.prog_var_type)
 		Key Value: var(20)
 		Value Type: ll_backend.var_locn.var_state

This is due to a bug involving higher-order specialisation, type specialisation and typeclasses. A workaround for this bug is to disable higher-order specialisation for any affected files. This can be done by using the option `--no-higher-order'.


Subject: segmentation fault in deep profiler
Date: unknown

The deep profiler may cause a segmentation fault when profiling large programs. There is currently no known workaround for this problem.