Bug 7310 – pure function results should implicitly cast to mutable, shared, and inout
Status
RESOLVED
Resolution
INVALID
Severity
enhancement
Priority
P2
Component
dmd
Product
D
Version
D2
Platform
All
OS
All
Creation time
2012-01-18T10:51:00Z
Last change time
2012-01-18T17:09:48Z
Assigned to
nobody
Creator
timon.gehr
Comments
Comment #0 by timon.gehr — 2012-01-18T10:51:02Z
The following code should compile
immutable(int)[] foo()pure{return new int[1];}
void main(){int[] x = foo();}
as should this (alternatively it should error out on the first line, not on the second):
const(int)[] foo()pure{return new int[1];}
void main(){int[] x = foo();}
Comment #1 by timon.gehr — 2012-01-18T11:55:27Z
On second thought, this should be the case for all type qualifiers.
The following code should compile too:
inout(int)[] foo(inout int)pure{return new int[1];}
shared(int)[] foo()pure{return new int[1];}
int[] bar()pure{return new int[1];}
inout(int)[] bar(inout int){inout r = bar(); return r;}
void main(){shared(int)[] a = bar();}
Comment #2 by timon.gehr — 2012-01-18T12:01:45Z
Of course, there have to be some additional constraints: Namely, if the return value should implicitly convert to <qualifier>, the function parameters all have to implicitly convert to <qualifier>. This could even be checked at call site:
const(int)[] foo(const(int)[] x)pure{return x;}
void main(){
int[] x = new int[1];
int[] y = foo(x); // perfectly fine
}
Comment #3 by smjg — 2012-01-18T15:32:54Z
I'm not sure about this. If a function is pure, then multiple calls with the same arguments (or even that return the same value) can potentially be optimised to all use the same copy of the data. Implicit cast to mutable would mess this up, unless we define the implicit conversion to .dup the result.
Comment #4 by timon.gehr — 2012-01-18T15:40:51Z
The analysis would just have to detect whether or not such an implicit conversion has happened. The compiler has all the information, I don't think it is an issue.
Comment #5 by timon.gehr — 2012-01-18T15:42:35Z
Furthermore, the optimization also applies when it is the other way round (mutable return value implicitly converted to immutable), so the analysis would consider implicit conversions of the return value anyway.
Comment #6 by clugdbug — 2012-01-18T16:57:39Z
(In reply to comment #5)
> Furthermore, the optimization also applies when it is the other way round
> (mutable return value implicitly converted to immutable), so the analysis would
> consider implicit conversions of the return value anyway.
No. The only way an immutably pure function can return a mutable value, is if it created it itself -- so we know it's unique. No analysis of the body of the function is required.
But, if an immutable pure function returns an immutable value, we know nothing. It could be a parameter, or an immutable global variable, or a variable created inside the function.
Comment #7 by timon.gehr — 2012-01-18T17:09:48Z
(In reply to comment #6)
> (In reply to comment #5)
> > Furthermore, the optimization also applies when it is the other way round
> > (mutable return value implicitly converted to immutable), so the analysis would
> > consider implicit conversions of the return value anyway.
>
> No. The only way an immutably pure function can return a mutable value, is if
> it created it itself -- so we know it's unique. No analysis of the body of the
> function is required.
This is not what I was suggesting. I am only reasoning about the call-site here.
>
> But, if an immutable pure function returns an immutable value, we know nothing.
> It could be a parameter, or an immutable global variable, or a variable created
> inside the function.
For parameter, see comment #2. immutable global variables are a deal-breaker. Implicitly casting between shared and unshared should still be possible at strongly pure function border. I am opening a separate issue for it.