January 28, 2020
On Sunday, 26 January 2020 at 14:14:20 UTC, Adam D. Ruppe wrote:
> On Sunday, 26 January 2020 at 13:01:58 UTC, Guillaume Piolat wrote:
>
>
> Cuz I just think if we are explicitly specifying a particular smaller type throughout it indicates a pretty clear intent already.

Would a truncated assign operator be feasible? Something like...

byte b := a*b-c;
February 01, 2020
On 26/01/2020 01:46, Evan wrote:
> I am writing an 8 bit emulator that uses a lot of small numbers and running into a problem where the compiler will automatically promote smaller operands up to an int which causes the result of math calculations to not fit into smaller types.
> 
> //compiled with dmd 2.090.0
> void main()
> {
>     ubyte a = 0x01;
>     ubyte b = 0x01;
>     ubyte c = a + b; //Error: cannot implicitly convert expression
> cast(int)a + cast(int)b of type int to ubyte
>     writeln(c);
> }
> 
> Is there a way to stop the compiler from up casting automatically? or have it down cast it back once it's done?

It was a recurring pet-peeve for me while working with D, and for pretty much the same reason as you (for me it was writing the RAID algorithm for Weka.io).

I have since decided to write my own programming language, and, predictably, this was a problem I decided to tackle.

I am posting this here in the hope that someone will be able to steal any good ideas I have. I am working on it, but I do so alone, and in my spare time (such that there is). I would much rather have good ideas be used than be given credit for them, but see them go unused.

So if there is anything you think is worth stealing, please do. I don't think it is possible, as Practical's integer promotion rules are _very_ different, and I don't see retrofitting them as plausible, but on the off chance I'm wrong:

https://github.com/Practical/practical-sa/wiki/Implicit-casts
February 05, 2020
n Saturday, February 1, 2020 5:50:21 AM MST Shachar Shemesh via Digitalmars- d wrote:
> On 26/01/2020 01:46, Evan wrote:
> > I am writing an 8 bit emulator that uses a lot of small numbers and running into a problem where the compiler will automatically promote smaller operands up to an int which causes the result of math calculations to not fit into smaller types.
> >
> > //compiled with dmd 2.090.0
> > void main()
> > {
> >     ubyte a = 0x01;
> >     ubyte b = 0x01;
> >     ubyte c = a + b; //Error: cannot implicitly convert expression
> > cast(int)a + cast(int)b of type int to ubyte
> >     writeln(c);
> > }
> >
> > Is there a way to stop the compiler from up casting automatically? or have it down cast it back once it's done?
>
> It was a recurring pet-peeve for me while working with D, and for pretty much the same reason as you (for me it was writing the RAID algorithm for Weka.io).
>
> I have since decided to write my own programming language, and, predictably, this was a problem I decided to tackle.
>
> I am posting this here in the hope that someone will be able to steal any good ideas I have. I am working on it, but I do so alone, and in my spare time (such that there is). I would much rather have good ideas be used than be given credit for them, but see them go unused.
>
> So if there is anything you think is worth stealing, please do. I don't think it is possible, as Practical's integer promotion rules are _very_ different, and I don't see retrofitting them as plausible, but on the off chance I'm wrong:
>
> https://github.com/Practical/practical-sa/wiki/Implicit-casts

So, basically, narrowing conversions are stricter in that converting between signed and unsigned types is treated as a narrowing conversion when it isn't guaranteed that the target type can hold the original value, and integer types smaller than int don't get changed to int when doing arinthmetic. It seems like a better approach to me, though I don't know how easy it would be to change D to function that way at this point even if we wanted to. Either way, for a language starting from scratch, I'm inclined to think that it's a more sensible approach than what we have in D.

- Jonathan M Davis



September 08, 2021
On Sunday, 26 January 2020 at 23:16:40 UTC, Walter Bright wrote:
> On 1/26/2020 5:01 AM, Guillaume Piolat wrote:
>> Pretty sure a LOT of code would break if C++ or D would abandon this rule
>
> Worst of all, the breakage would be silent.

Could this be added as a compiler flag?
This would probably fix a lot of annoyances, without causing issues in older codebases.
September 08, 2021
On 9/8/2021 5:19 AM, HuskyNator wrote:
> On Sunday, 26 January 2020 at 23:16:40 UTC, Walter Bright wrote:
>> On 1/26/2020 5:01 AM, Guillaume Piolat wrote:
>>> Pretty sure a LOT of code would break if C++ or D would abandon this rule
>>
>> Worst of all, the breakage would be silent.
> 
> Could this be added as a compiler flag?
> This would probably fix a lot of annoyances, without causing issues in older codebases.

Every such flag doubles the amount of testing required. And global behavior flags like this will have essentially unpredictable results on the code.
September 09, 2021
On Wednesday, 8 September 2021 at 12:19:11 UTC, HuskyNator wrote:
> On Sunday, 26 January 2020 at 23:16:40 UTC, Walter Bright wrote:
>> On 1/26/2020 5:01 AM, Guillaume Piolat wrote:
>>> Pretty sure a LOT of code would break if C++ or D would abandon this rule
>>
>> Worst of all, the breakage would be silent.
>
> Could this be added as a compiler flag?
> This would probably fix a lot of annoyances, without causing issues in older codebases.

A lot of tests would fail because they rely on the current implementation, which means a lot of tests would have to be changed.

You'll essentially have to do double tests where you have all tests without the flag and all tests with the flag.

The annoyance isn't that much if you just understand it in the first place.

Personally I've never had to deal with it more than maybe once or twice.
September 09, 2021

On Wednesday, 8 September 2021 at 20:15:36 UTC, Walter Bright wrote:

>

Every such flag doubles the amount of testing required. And global behavior flags like this will have essentially unpredictable results on the code.

such flags could hypothetically be created in the source code at the local scope and be included in the compiler Scope. But unfortuanatly this is not the D way

void v()
{
   /* code here does not obey to FLAG*/
   {$PUSH FLAG} // in dmd : sc = sc.push(...)
   /* code here obey to FLAG*/
   {$POP} // in dmd : sc = sc.pop()
   /* code here does not obey to FLAG*/
}

as this looks much as preprocessor things (also they are not).
This also solves the problem of reusing small samples without knowing that a special compiler flag is required.

1 2
Next ›   Last »