Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

error 094: division by zero #538

Merged
merged 3 commits into from
Sep 20, 2020
Merged

error 094: division by zero #538

merged 3 commits into from
Sep 20, 2020

Conversation

Daniel-Cortez
Copy link
Contributor

What this PR does / why we need it:

This PR does the following:

  • Adds a distinct error (094) for zero division, instead of reusing error 029 (invalid expression, assumed zero), as first suggested in New warnings/errors? #528.
  • Makes error 094 also work if the left operand (dividend) is not constant.
    Previously the check for zero division was located in function flooreddiv() (file sc3.c) that calculated the result of division when both operands are compile-time constants, which means that the check only worked when the dividend was constant.

Which issue(s) this PR fixes:

Fixes #

What kind of pull this is:

  • A Bug Fix
  • A New Feature
  • Some repository meta (documentation, etc)
  • Other

Additional Documentation:

@Daniel-Cortez Daniel-Cortez requested a review from a team as a code owner June 20, 2020 13:43
@stale
Copy link

stale bot commented Sep 19, 2020

This issue has been automatically marked as stale because it has not had recent activity.

@stale stale bot added the state: stale label Sep 19, 2020
@Daniel-Cortez
Copy link
Contributor Author

Daniel-Cortez commented Sep 20, 2020

Not sure if you noticed, but I force-pushed the commit that adds the tests with var being initialized with 0 instead of 1, as suggested. (For some reason GitHub shows events in a messed up order, as if that commit was pushed before the conversation.)
This PR should be ready now.

@Y-Less
Copy link
Member

Y-Less commented Sep 20, 2020

I did see, yes. Thank you.

@Y-Less Y-Less merged commit 1018c36 into pawn-lang:dev Sep 20, 2020
@Daniel-Cortez
Copy link
Contributor Author

Ah, OK, I was just wondering why you only approved the PR and didn't merge it, that's all.

@Y-Less
Copy link
Member

Y-Less commented Sep 20, 2020

I was doing all the merges locally on my PC, easier to go through conflicts and run tests. I always try building my YSI test suite with new compiler versions, just because it covers so many weird corners of the compiler.

@Daniel-Cortez Daniel-Cortez deleted the error-094 branch October 19, 2020 14:00
@afwn90cj93201nixr2e1re
Copy link

afwn90cj93201nixr2e1re commented Nov 24, 2020

I guess we should provide more info about stuff like that:

    /* If we're handling a division operation, make sure the divisor is not zero. */
    if ((oper == os_div || oper == os_mod)) {
      printf("%s is | %d\n", lval2->sym && lval2->sym->name ? lval2->sym->name : "unknown", lval2->sym ? lval2->sym->usage & uWRITTEN : 0);
      if (lval2->ident == iCONSTEXPR && lval2->constval == 0 || lval2->sym && (lval2->sym->usage & uWRITTEN) == 0 && lval2 value == 0...)
        error(94); /* TODO: implement proper description, 94 */ /* division by zero */
    }

but there's a problem, i guess usage not properly resetted before final parsing, so, this code will never...

func1(&var) {
	var = 1;
}


main()
{
// Case 1: Both operands are compile-time constants
	new a = 1 / 0; // error 094 - ok
	new b = 1 % 0; // error 094 - ok
	new c = 1 / 1; // - ok
	new d = 1 % 1; // - ok

	new var = 0;
	new a1 = 0 / var; // Where's error? - not ok?
	--var; // variable changed
	var++; // variable changed
	var+=-1; // variable changed
	var+=1; // variable changed
	// etc...
	func1(var); // variable changed
	new a2 = 0 % var; // no errors
	new a3 = var / 1; 
	new a4 = var % 1; 

	const var2 = 0;

	new a11 = var2 / 0; // error 094 - ok
	new a22 = var2 % 0; // error 094 - ok
	new a33 = var / 1;
	new a44 = var % 1;

	new a111 = var / var2; // error 094
	new a222 = var % var2; // error 094
	new a333 = var2 / 1;
	new a444 = var2 % 1;

	new a6 = 1 / var; // No error, but should...
	new a7 = 1 % var; // Same here
	#pragma unused a,b,c,d,a1,a2,a3,a4,a6,a7,a11,a22,a33,a44,a111,a222,a333,a444
	
}

@Y-Less is that possible to improve?

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants