-
Notifications
You must be signed in to change notification settings - Fork 13.2k
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: rust-lang/rust
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: pnkfelix/rust
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: experiment-future-growth-89213
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
Can’t automatically merge.
Don’t worry, you can still create the pull request.
- 14 commits
- 18 files changed
- 1 contributor
Commits on Nov 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0f7aa7a - Browse repository at this point
Copy the full SHA 0f7aa7aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 3293fab - Browse repository at this point
Copy the full SHA 3293fabView commit details
Commits on Dec 1, 2022
-
start establishing the path working backwards from the MIR local back…
… up to the experimental attribute.
Configuration menu - View commit details
-
Copy full SHA for e816665 - Browse repository at this point
Copy the full SHA e816665View commit details
Commits on Dec 2, 2022
-
REVISEME some very hacky code to start threading reuse_slot from the …
…`hir::Local` down.
Configuration menu - View commit details
-
Copy full SHA for c38f239 - Browse repository at this point
Copy the full SHA c38f239View commit details -
Configuration menu - View commit details
-
Copy full SHA for 04c80d1 - Browse repository at this point
Copy the full SHA 04c80d1View commit details
Commits on Dec 3, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 79fc6d6 - Browse repository at this point
Copy the full SHA 79fc6d6View commit details -
1. Changed the reuse-upvar state to hold a Place rather than the former (placeholder) raw index. 2. Attempted to connect the THIR state up to the MIR state. (I am not yet certain how successful the wiring was. We will see; I just wanted to checkpoint my current state.)
Configuration menu - View commit details
-
Copy full SHA for cdf1204 - Browse repository at this point
Copy the full SHA cdf1204View commit details -
Configuration menu - View commit details
-
Copy full SHA for 190a9d6 - Browse repository at this point
Copy the full SHA 190a9d6View commit details -
experiment: try treating reuse_upvar-marked local as always live.
(does not work yet; looks like reuse_upvar state is not yet threaded through completely.)
Configuration menu - View commit details
-
Copy full SHA for d5ddea7 - Browse repository at this point
Copy the full SHA d5ddea7View commit details
Commits on Dec 6, 2022
-
Empty commit to mark current state.
An example input file, example-89213-c.rs: ```rust pub const LEN: usize = 100000; pub fn wait(an_upvar: [u8; LEN]) -> impl core::future::Future<Output = ()> { async move { #[rustc_reuse_upvar_slot] let a_let_local = an_upvar; no_op().await; drop(a_let_local); } } async fn no_op() { } fn drop<T>(_x: T) { } ``` A compilation-buffer invocation (will need to be updated for other non Apple arch): KKEEP_STAGE="--keep-stage=1" ; time ../x.py build library $KEEP_STAGE && RUSTC_LOG=rustc_ast_lowering,rustc_middle::hir,rustc_parse::parser,rustc_hir,rustc_mir_build,rustc_mir_transform::generator,rustc_mir_dataflow ./build/aarch64-apple-darwin/stage1/bin/rustc --edition 2021 example-89213-c.rs > rustc_log.log 2>&1 Some Elisp code (defun some-highlights () (interactive) (highlight-regexp "a_let_local") (highlight-regexp "an_upvar" 'hi-pink) (highlight-regexp "reuse_slot" 'hi-green))
Configuration menu - View commit details
-
Copy full SHA for ed227a6 - Browse repository at this point
Copy the full SHA ed227a6View commit details
Commits on Dec 7, 2022
-
Update static asserts to accommodate the (hopefully temporary) size b…
…loat pnkfelix has injected.
Configuration menu - View commit details
-
Copy full SHA for 8804534 - Browse repository at this point
Copy the full SHA 8804534View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4131e16 - Browse repository at this point
Copy the full SHA 4131e16View commit details -
expanded debug instrumentation to include the local key for the Local…
…Decl under inspection.
Configuration menu - View commit details
-
Copy full SHA for 3e5abc1 - Browse repository at this point
Copy the full SHA 3e5abc1View commit details
Commits on Dec 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for c23b2c8 - Browse repository at this point
Copy the full SHA c23b2c8View commit details
There are no files selected for viewing