Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

implement RFCs 147 and 155, fix #141, etc. #176

Merged
merged 11 commits into from
May 1, 2019
Merged

implement RFCs 147 and 155, fix #141, etc. #176

merged 11 commits into from
May 1, 2019

Conversation

japaric
Copy link
Collaborator

@japaric japaric commented Apr 21, 2019

This PR:

  • Implements RFC 147: "all functions must be safe"

  • Implements RFC 155: "explicit Context parameter"

  • Implements the pending breaking change reject fn init() syntax when late resources are used #141: reject assign syntax in init
    (which was used to initialize late resources)

  • Refactors code generation to make it more readable -- there are no more random
    identifiers in the output -- and align it with the book description of RTFM
    internals (see PR document internals #175).

  • Makes the framework hard depend on core::mem::MaybeUninit and thus will
    require nightly until that API is stabilized.

  • Fixes a ceiling analysis bug where the priority of the system timer was not
    considered in the analysis (TODO backport this into the v0.4.x branch).

  • Shrinks the size of all the internal queues by turning AtomicUsize indices
    into AtomicU8s.

  • Removes the integration with owned_singleton.

closes #141
closes #147
closes #155

Additionally:

  • This changes CI to push v0.5.x docs to
    https://japaric.github.io/rtfm5/book/en/ -- we need to do this because our
    official docs are hosted on https://japaric.github.io/cortex-m-rtfm and we
    need to keep them on v0.4.x until we release v0.5.0

  • I propose that we use the master branch to develop the upcoming v0.5.0.

  • I have created a branch v0.4.x for backports; new v0.4.x releases will come
    from that branch.

r? @korken89 @TeXitoi, sorry for doing all the impl work in a single commit --
I know that makes things harder to review for you.

Suggestions for compile-pass and compile-fail tests are welcome

let x = P::alloc().unwrap().freeze();

// .. send it to the `foo` task
c.spawn.foo(x).ok().unwrap();
Copy link
Collaborator

Choose a reason for hiding this comment

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

Why .ok().unwrap() and not just .unwrap()?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Copy link
Collaborator

@TeXitoi TeXitoi left a comment

Choose a reason for hiding this comment

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

Just lightly read the example and the code.

Copy link
Collaborator

@korken89 korken89 left a comment

Choose a reason for hiding this comment

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

I gave the code a look and the the updated docs, LTGM

@korken89
Copy link
Collaborator

And great work!

japaric added 11 commits May 1, 2019 20:49
This commit:

- Implements RFC 147: "all functions must be safe"

- Implements RFC 155: "explicit Context parameter"

- Implements the pending breaking change #141: reject assign syntax in `init`
  (which was used to initialize late resources)

- Refactors code generation to make it more readable -- there are no more random
  identifiers in the output -- and align it with the book description of RTFM
  internals.

- Makes the framework hard depend on `core::mem::MaybeUninit` and thus will
  require nightly until that API is stabilized.

- Fixes a ceiling analysis bug where the priority of the system timer was not
  considered in the analysis.

- Shrinks the size of all the internal queues by turning `AtomicUsize` indices
  into `AtomicU8`s.

- Removes the integration with `owned_singleton`.
@japaric
Copy link
Collaborator Author

japaric commented May 1, 2019

bors r+

bors bot added a commit that referenced this pull request May 1, 2019
176:  implement RFCs 147 and 155, fix #141, etc. r=japaric a=japaric

This PR:

- Implements RFC 147: "all functions must be safe"

- Implements RFC 155: "explicit Context parameter"

- Implements the pending breaking change #141: reject assign syntax in `init`
  (which was used to initialize late resources)

- Refactors code generation to make it more readable -- there are no more random
  identifiers in the output -- and align it with the book description of RTFM
  internals (see PR #175).

- Makes the framework hard depend on `core::mem::MaybeUninit` and thus will
  require nightly until that API is stabilized.

- Fixes a ceiling analysis bug where the priority of the system timer was not
  considered in the analysis (TODO backport this into the v0.4.x branch).

- Shrinks the size of all the internal queues by turning `AtomicUsize` indices
  into `AtomicU8`s.

- Removes the integration with `owned_singleton`.

closes #141
closes #147
closes #155

Additionally:

- This changes CI to push v0.5.x docs to
  https://japaric.github.io/rtfm5/book/en/ -- we need to do this because our
  official docs are hosted on https://japaric.github.io/cortex-m-rtfm and we
  need to keep them on v0.4.x until we release v0.5.0

- I propose that we use the master branch to develop the upcoming v0.5.0.

- I have created a branch v0.4.x for backports; new v0.4.x releases will come
  from that branch.

r? @korken89 @TeXitoi, sorry for doing all the impl work in a single commit --
I know that makes things harder to review for you.

Suggestions for compile-pass and compile-fail tests are welcome


Co-authored-by: Jorge Aparicio <jorge@japaric.io>
@bors
Copy link
Contributor

bors bot commented May 1, 2019

Build succeeded

@bors bors bot merged commit ccd7f45 into master May 1, 2019
@bors bors bot deleted the v5 branch May 1, 2019 20:08
bors bot added a commit that referenced this pull request May 9, 2019
175: document internals r=japaric a=japaric

note that this assumes that RFC #155 has been implemented

[Rendered text](https://japaric.github.io/rtfm5/book/en/internals.html)

Do not merge this before PR #176

Co-authored-by: Jorge Aparicio <jorge@japaric.io>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants