- Describe the new freeze instruction
- Make it explicit that branch on undef/poison is UB
Details
Diff Detail
Event Timeline
LangRef.rst | ||
---|---|---|
8589 ↗ | (On Diff #85724) | All uses of a '``freeze``' instruction are ... would probably be less ambiguous. (uses of the same freeze instruction vs two freeze instructions on the same value) |
LangRef.rst | ||
---|---|---|
5408 ↗ | (On Diff #85724) | Does "switch" need a similar amendment? |
LangRef.rst | ||
---|---|---|
5408 ↗ | (On Diff #85724) | I think indirectbr would need it too. |
LangRef.rst | ||
---|---|---|
5408 ↗ | (On Diff #85724) | indirectbr already says "All possible destination blocks must be listed in the label list, otherwise this instruction has undefined behavior", which implies that "indirectbr undef" is UB. Could be a bit more explicit, I guess. |
Please check the inconsistent quoting of keywords (which we already have in LangRef, but no need adding to it). Otherwise, no more nitpicking on my side :-)
Thanks.
LangRef.rst | ||
---|---|---|
5420 ↗ | (On Diff #85871) | '``cond``' ```? And maybe quote both undef and poison. |
5472 ↗ | (On Diff #85871) | Inconsistent quoting here too. |
5539 ↗ | (On Diff #85871) | And here. |
LangRef.rst | ||
---|---|---|
8598 ↗ | (On Diff #85871) | Should probably say scalar integer type. It would also be a good idea to explain why this restriction is in place. |
I'd think it would make sense to start with this patch in the series.
Needs rebasing, comments are not addressed.
LangRef.rst | ||
---|---|---|
8598 ↗ | (On Diff #85871) | Not done. |
Looks good! Some thoughts.
llvm/docs/LangRef.rst | ||
---|---|---|
3111–3112 | Should this section have something similar to the poison section, referencing freeze? | |
3307–3311 | Should this mention freeze? | |
10191 | I can see that the scalar restriction was lifter (good)
|
llvm/docs/LangRef.rst | ||
---|---|---|
10169–10184 | Either in Overview or in Semantics the undef and poison should be links to those langref sections. | |
10191 | To clarify why i think there should be an example for All uses of a 'freeze' instruction are guaranteed to always observe the same value. - elsewhere it is specified that undef can 'evaluate' to a different value each time, and here we are contradicting that. | |
10193–10196 | Could be as simple as: diff +%x2 = freeze i32 %w +%z2 = add i32 %x, %x2 ; even number because all uses of %x and %x2 observe same value |
llvm/docs/LangRef.rst | ||
---|---|---|
3319 | I'm not sure what the statement means. It doesn't seem to add extra useful information. | |
10193–10196 | That is not correct. Only all uses of a given freeze instruction are guaranteed to have the same value. |
llvm/docs/LangRef.rst | ||
---|---|---|
10183–10184 | Can/should this be reworded then to avoid that misreading i just did? All uses of a value returned from the same '``freeze``' instruction are guaranteed to always observe the same value, but different '``freeze``' instructions may yield different values. | |
10193–10196 | Oh |
llvm/docs/LangRef.rst | ||
---|---|---|
3319 | > I'm not sure what the statement means. It doesn't seem to add extra useful information.
|
llvm/docs/LangRef.rst | ||
---|---|---|
3319 | The statement as written is incorrect. That's the reason for removing a few lines from the example below as well. It is important to cleanup the definition of poison so that people know when freeze is needed or not. The two concepts are very intermingled. |
LGTM, see my comment below.
llvm/docs/LangRef.rst | ||
---|---|---|
3319 | I tried to find a case where it was not covered but failed, thus I agree with your assessment. I would (have) prefer(red) these cleanup changes to be in a separate commit because they are not directly related to freeze. |
Should there be a constantexpr version of freeze?
Also, @nlopes, just to put a bold stop to this question - in the end,
we want freeze to be fully agnostic, it should not care *at all* what the type is, right?
we want freeze to be fully agnostic, it should not care *at all* what the type is, right?
Well, it has to be some value which actually has bits that can be frozen. So integers, floats, pointers, vectors, arrays, and structs. Maybe worth listing out explicitly.
For pointers, we should probably mention the aliasing rules explicitly. It should be similar to null: the result can't be dereferenced. (See http://llvm.org/docs/LangRef.html#pointer-aliasing-rules .)
LGTM w/minor entirely optional comments.
Personally, I'd prefer to see the addition of freeze land, then the optimizer fixes, then the changing of the branch being full UB wording, but I won't insist on that.
llvm/docs/LangRef.rst | ||
---|---|---|
3323 | Suggested minor tweak to wording: integrate this as a bullet item into the previous list. (i.e. something like "* The condition operand to a branch, select. * The callee operand of a call or invoke.") | |
10187 | I think this paragraph could be dropped. It's implied by the previous definition and oddly specific. Why does this particular implication deserve spelling out and not others? |
I'm just waiting on SelDAG->MIR patch to be done (https://reviews.llvm.org/D29014).
Then we have docs, SelDAG & MIR support. That seems the minimal to me (so the compiler won't crash when freeze is used). I agree the optimizer patches can land later.
Can I suggest that we add a stub* ISEL implementation, land this, and then build on top of it?
- By which I mean a knowingly incorrect lowering to a simple COPY. It wouldn't fix *all* of our poison/undef problems, but it would allow us to make progress on some of the most painful IR ones while waiting for that patch to land.
Makes sense. We are trying to get commit access to Juneyoung, but we were caught in the middle of the GitHub transition :) It's unclear what the procedure is now -- working on it.
Updated developer policy is at https://github.com/llvm/llvm-project/blob/master/llvm/docs/DeveloperPolicy.rst . (Updating the website is currently broken.)
@nlopes This is failing on the llvm-sphinx-docs buildbot, please can you take a look? http://lab.llvm.org:8011/builders/llvm-sphinx-docs/builds/37793/steps/docs-llvm-html/logs/stdio
Warning, treated as error: /home/buildbot/llvm-build-dir/llvm-sphinx-docs/llvm/src/llvm/docs/LangRef.rst:10243: WARNING: Could not lex literal_block as "llvm". Highlighting skipped.
I noticed, but when I run locally there were so many warnings that I couldn't get to this one.
I guess I'll just remove the code highlighting.
Thanks!
Should this section have something similar to the poison section, referencing freeze?