[m-dev.] for review: add support for dumping the MLDS

Fergus Henderson fjh at cs.mu.OZ.AU
Wed May 10 00:23:39 AEST 2000


On 09-May-2000, Ralph Becket <rbeck at microsoft.com> wrote:
> How important is this right now?

Not very, since mlds_to_c.m already provides reasonably good way
of dumping the MLDS.  But sometimes it's helpful to know exactly
what the MLDS was.

For now, I'll just use io__print.
Here's the new log message.
I'll go ahead and commit this now.

----------

Estimated hours taken: 1

Add support for dumping the MLDS.
XXX Currently the formatting is extremely primitive.

compiler/options.m:
	Add a new option `--dump-mlds'.
	Also delete the unused `--verbose_hlds_dump' option,
	and allow `-H' as an alias for `--high-level-code'.

compiler/mercury_compile.m:
	Implement the new `--dump-mlds' option, using `io__print'.
	(I wanted to use the pretty printer in library/pprint.m,
	but that has a performance problem when printing large
	structures such as the MLDS.)

The diff is the same as last time, except that instead of

               %       pprint__write(80, pprint__to_doc(MLDS)),

in my original diff, I've now got

               % XXX the following doesn't work, due to performance bugs
               % in pprint:
               %       pprint__write(80, pprint__to_doc(MLDS)),
               io__print(MLDS), io__nl,
               io__told,

and I don't import the `pprint' module.

-- 
Fergus Henderson <fjh at cs.mu.oz.au>  |  "I have always known that the pursuit
WWW: <http://www.cs.mu.oz.au/~fjh>  |  of excellence is a lethal habit"
PGP: finger fjh at 128.250.37.3        |     -- the last words of T. S. Garp.
--------------------------------------------------------------------------
mercury-developers mailing list
Post messages to:       mercury-developers at cs.mu.oz.au
Administrative Queries: owner-mercury-developers at cs.mu.oz.au
Subscriptions:          mercury-developers-request at cs.mu.oz.au
--------------------------------------------------------------------------



More information about the developers mailing list