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

rustc: Add a debug_assertions #[cfg] directive #22980

Merged
merged 1 commit into from
Mar 7, 2015

Conversation

alexcrichton
Copy link
Member

This commit is an implementation of RFC 563 which adds a new
cfg(debug_assertions) directive which is specially recognized and calculated
by the compiler. The flag is turned off at any optimization level greater than 1
and may also be explicitly controlled through the -C debug-assertions
flag.

The debug_assert! and debug_assert_eq! macros now respect this instead of
the ndebug variable and ndebug no longer holds any meaning to the standard
library.

Code which was previously relying on not(ndebug) to gate expensive code should
be updated to rely on debug_assertions instead.

Closes #22492
[breaking-change]

@rust-highfive
Copy link
Contributor

r? @eddyb

(rust_highfive has picked a reviewer for you, use r? to override)

@alexcrichton
Copy link
Member Author

Note that this does not currently modify mk/main.mk due to bootstrapping concerns and that this will also imply that the next build of the standard library will omit all debug assertions (due to it being optimized). We do not currently ship a build of the standard library which would have debug assertions enabled.

cc @Aatch @nikomatsakis @brson @huonw

$(RUSTC) debug.rs -O
$(call RUN,debug)
$(RUSTC) debug.rs
$(call RUN,debug) && exit 1 || exit 0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Does ! $(call RUN,debug) work reliably cross-platform?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah turns out there's already a FAIL macro, I'll use that.

@alexcrichton
Copy link
Member Author

Addressed @huonw's comments

@bors
Copy link
Collaborator

bors commented Mar 3, 2015

☔ The latest upstream changes (presumably #22971) made this pull request unmergeable. Please resolve the merge conflicts.

@alexcrichton alexcrichton force-pushed the debug-assertions branch 3 times, most recently from 230e64e to 1358c2c Compare March 3, 2015 20:45
@alexcrichton
Copy link
Member Author

I have also hooked up the now-landed overflow checking to this as well. If -Z force-overflow-checks is not provided then the value of debug_assertions will dictate whether overflow checks are emitted.

I haven't finished running the full suite of tests yet but I will update them as they come in.

r? @pnkfelix

@rust-highfive rust-highfive assigned pnkfelix and unassigned eddyb Mar 3, 2015
assert!(!hit1);
assert!(!hit2);
let mut hit = false;
debug_assert!({ hit = true; false });
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hmm, how will you ever reach this line? If debug-assertion are on, won't the earlier debug_assert_eq fail? (And even if it were changed to succeed, wouldn't the subsequent non-debug asserts then fail?)

If your intent is to test the correct behavior of side-effects (or lack thereof) that occur within debug_assert and debug_assert_eq, I think you need to make separate tests.

@pnkfelix
Copy link
Member

pnkfelix commented Mar 3, 2015

@alexcrichton can you add a configure switch or something for turning on -C debug-assertions globally for the build? I often make an --enable-debug --enable-optimize build of rust for my own development work (since I have found that unoptimized rust builds are simply too slow at the moment to be usable, even for just make rustc-stage1), and I would want an easy way via configure for that build to turn on -C debug-assertions?

(I would not mind if --enable-debug in the configure script turned on -C debug-assertions, but I know this was not exactly what the RFC proposed, so I'm happy if it is instead a separate configure switch.)

@pnkfelix
Copy link
Member

pnkfelix commented Mar 3, 2015

Overall the PR looks fine; r=me if you:

  • fix the testing as noted above and
  • add some way to control this via configure, or at least document what I am expected to do ... (perhaps you intend for the developer to use RUSTFLAGS="-C debug-assertions ? But I would prefer if we had something self-documenting when one runs configure --help)

@alexcrichton
Copy link
Member Author

I'm going to punt on the configure bits for now as I'd like to change this area but it would require making a snapshot to avoid weird stuff with RUSTFLAGS_STAGEN and friends. I'll try to kick off a snapshot as soon as this lands.

@alexcrichton
Copy link
Member Author

@bors: r=pnkfelix 3b59058

@alexcrichton
Copy link
Member Author

@bors: r=pnkfelix eca6dac

@bors
Copy link
Collaborator

bors commented Mar 4, 2015

⌛ Testing commit eca6dac with merge 07e853c...

@bors
Copy link
Collaborator

bors commented Mar 4, 2015

⌛ Testing commit eca6dac with merge 34693d5...

@bors
Copy link
Collaborator

bors commented Mar 4, 2015

💔 Test failed - auto-linux-64-x-android-t

@alexcrichton
Copy link
Member Author

@bors: retry

On Tue, Mar 3, 2015 at 7:19 PM, bors notifications@github.com wrote:

[image: 💔] Test failed - auto-linux-64-x-android-t
http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/3891


Reply to this email directly or view it on GitHub
#22980 (comment).

@bors
Copy link
Collaborator

bors commented Mar 4, 2015

@bors
Copy link
Collaborator

bors commented Mar 4, 2015

@bors
Copy link
Collaborator

bors commented Mar 4, 2015

💔 Test failed - auto-win-32-nopt-t

@alexcrichton
Copy link
Member Author

@bors: retry

Manishearth added a commit to Manishearth/rust that referenced this pull request Mar 4, 2015
…kfelix

 This commit is an implementation of [RFC 563][rfc] which adds a new
`cfg(debug_assertions)` directive which is specially recognized and calculated
by the compiler. The flag is turned off at any optimization level greater than 1
and may also be explicitly controlled through the `-C debug-assertions`
flag.

[rfc]: rust-lang/rfcs#563

The `debug_assert!` and `debug_assert_eq!` macros now respect this instead of
the `ndebug` variable and `ndebug` no longer holds any meaning to the standard
library.

Code which was previously relying on `not(ndebug)` to gate expensive code should
be updated to rely on `debug_assertions` instead.

Closes rust-lang#22492
[breaking-change]
@bors
Copy link
Collaborator

bors commented Mar 5, 2015

⌛ Testing commit eca6dac with merge eb0a2a6...

@bors
Copy link
Collaborator

bors commented Mar 5, 2015

💔 Test failed - auto-mac-32-opt

@alexcrichton
Copy link
Member Author

@bors: r=pnkfelix 5571d40

This commit is an implementation of [RFC 563][rfc] which adds a new
`cfg(debug_assertions)` directive which is specially recognized and calculated
by the compiler. The flag is turned off at any optimization level greater than 1
and may also be explicitly controlled through the `-C debug-assertions`
flag.

[rfc]: rust-lang/rfcs#563

The `debug_assert!` and `debug_assert_eq!` macros now respect this instead of
the `ndebug` variable and `ndebug` no longer holds any meaning to the standard
library.

Code which was previously relying on `not(ndebug)` to gate expensive code should
be updated to rely on `debug_assertions` instead.

Closes rust-lang#22492
[breaking-change]
@alexcrichton
Copy link
Member Author

@bors: r=pnkfelix d5d8345

Manishearth added a commit to Manishearth/rust that referenced this pull request Mar 6, 2015
…kfelix

 This commit is an implementation of [RFC 563][rfc] which adds a new
`cfg(debug_assertions)` directive which is specially recognized and calculated
by the compiler. The flag is turned off at any optimization level greater than 1
and may also be explicitly controlled through the `-C debug-assertions`
flag.

[rfc]: rust-lang/rfcs#563

The `debug_assert!` and `debug_assert_eq!` macros now respect this instead of
the `ndebug` variable and `ndebug` no longer holds any meaning to the standard
library.

Code which was previously relying on `not(ndebug)` to gate expensive code should
be updated to rely on `debug_assertions` instead.

Closes rust-lang#22492
[breaking-change]
@bors bors merged commit d5d8345 into rust-lang:master Mar 7, 2015
@alexcrichton alexcrichton deleted the debug-assertions branch March 7, 2015 06:13
mbrubeck added a commit to mbrubeck/servo that referenced this pull request Jun 1, 2015
The name of this directive changed in rust-lang/rust#22980.
bors-servo pushed a commit to servo/servo that referenced this pull request Jun 1, 2015
The name of this directive changed in rust-lang/rust#22980.

<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6245)
<!-- Reviewable:end -->
mbrubeck added a commit to mbrubeck/rust that referenced this pull request Jun 1, 2015
As of rust-lang#22980 only `cfg(debug_assertions)` is used in the
standard library and rustc code.
Manishearth added a commit to Manishearth/rust that referenced this pull request Jun 2, 2015
As of rust-lang#22980 only `cfg(debug_assertions)` is used in the
standard library and rustc code.
jrmuizel pushed a commit to jrmuizel/gecko-cinnabar that referenced this pull request Jun 12, 2017
…ubeck:ndebug); r=SimonSapin

The name of this directive changed in rust-lang/rust#22980.

Source-Repo: https://github.com/servo/servo
Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f
gecko-dev-updater pushed a commit to marco-c/gecko-dev-comments-removed that referenced this pull request Sep 30, 2019
…ubeck:ndebug); r=SimonSapin

The name of this directive changed in rust-lang/rust#22980.

Source-Repo: https://github.com/servo/servo
Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f

UltraBlame original commit: 3a8011945dea13f95829d2b1721f3a2a85e73392
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified that referenced this pull request Oct 1, 2019
…ubeck:ndebug); r=SimonSapin

The name of this directive changed in rust-lang/rust#22980.

Source-Repo: https://github.com/servo/servo
Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f

UltraBlame original commit: 3a8011945dea13f95829d2b1721f3a2a85e73392
gecko-dev-updater pushed a commit to marco-c/gecko-dev-wordified-and-comments-removed that referenced this pull request Oct 1, 2019
…ubeck:ndebug); r=SimonSapin

The name of this directive changed in rust-lang/rust#22980.

Source-Repo: https://github.com/servo/servo
Source-Revision: c724444ccb85551b5a0a581d673875ec9bce3d1f

UltraBlame original commit: 3a8011945dea13f95829d2b1721f3a2a85e73392
# 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.

Remove ndebug and replace with compiler flags (RFC 563)
6 participants