2025-04-03 21:41 AEDT

View Issue Details Jump to Notes ]
IDProjectCategoryView StatusLast Update
0000231mercuryBugpublic2014-10-09 12:48
Reportercolanderman 
Assigned To 
PrioritynormalSeveritytrivialReproducibilityalways
StatusnewResolutionopen 
Product Version 
Target VersionFixed in Version 
Summary0000231: No way to specify instantiatedness of char type
DescriptionThere is currently no way to specify the instantiatedness of a char type, e.g.:

:- inst whitespace ---> ' '; '\t'; '\n'.

The above instantiatednesses are represented as atoms, but since instantiatednesses of character values are internally represented as type char_const(), this leads to mode errors such as:

Final instantiatedness of `HeadVar__1' was `bound('\t' ; '\n' ; ' ')',
expected final instantiatedness was `bound('\t' ; '\n' ; ' ')'.

Attached is a patch which fixes this bug.
TagsNo tags attached.
Attached Files
  • ? file icon char_inst.m (222 bytes) 2011-11-22 16:30
  • patch file icon mercury-compiler-char-inst.patch (1,974 bytes) 2011-11-22 16:31 +

-Relationships

-Notes

~0000795

wangp (developer)

Applying the patch as-is would be unsafe. If you try to switch on the variable following the call to is_whitespace, e.g.

is_whitespace(C),
( C = (' '), ...
; C = ('\t'), ...
; C = ('\n'), ...
)

The inst of C is represented as a list of cons/3 functors and the cases as `char_const' functors. Switch detection does not see them as equivalent so replaces the disjunction by `fail'. I assume other parts of the compiler may have similar problems.

-Issue History
Date Modified Username Field Change
2011-11-22 16:30 colanderman New Issue
2011-11-22 16:30 colanderman File Added: char_inst.m
2011-11-22 16:31 colanderman File Added: mercury-compiler-char-inst.patch
2014-10-09 12:48 wangp Note Added: 0000795