Index: llvm/docs/LangRef.rst =================================================================== --- llvm/docs/LangRef.rst +++ llvm/docs/LangRef.rst @@ -3314,8 +3314,7 @@ - The divisor operand of a ``udiv``, ``sdiv``, ``urem`` or ``srem`` instruction. -Additionally, undefined behavior occurs if a side effect *depends* on poison. -This includes side effects that are control dependent on a poisoned branch. +Additionally, undefined behavior occurs when branching on a poison value. Here are some examples: @@ -3334,40 +3333,12 @@ %narrowaddr = bitcast i32* @g to i16* %wideaddr = bitcast i32* @g to i64* %poison3 = load i16, i16* %narrowaddr ; Returns a poison value. - %poison4 = load i64, i64* %wideaddr ; Returns a poison value. + %poison4 = load i64, i64* %wideaddr ; Returns a poison value. %cmp = icmp slt i32 %poison, 0 ; Returns a poison value. - br i1 %cmp, label %true, label %end ; Branch to either destination. - - true: - store volatile i32 0, i32* @g ; This is control-dependent on %cmp, so - ; it has undefined behavior. - br label %end + br i1 %cmp, label %end, label %end ; undefined behavior end: - %p = phi i32 [ 0, %entry ], [ 1, %true ] - ; Both edges into this PHI are - ; control-dependent on %cmp, so this - ; always results in a poison value. - - store volatile i32 0, i32* @g ; This would depend on the store in %true - ; if %cmp is true, or the store in %entry - ; otherwise, so this is undefined behavior. - - br i1 %cmp, label %second_true, label %second_end - ; The same branch again, but this time the - ; true block doesn't have side effects. - - second_true: - ; No side effects! - ret void - - second_end: - store volatile i32 0, i32* @g ; This time, the instruction always depends - ; on the store in %end. Also, it is - ; control-equivalent to %end, so this is - ; well-defined (ignoring earlier undefined - ; behavior in this example). .. _blockaddress: @@ -6830,6 +6801,7 @@ argument is evaluated. If the value is ``true``, control flows to the '``iftrue``' ``label`` argument. If "cond" is ``false``, control flows to the '``iffalse``' ``label`` argument. +If '``cond``' is ``poison``, this instruction has undefined behavior. Example: """""""" @@ -6880,6 +6852,7 @@ for the given value. If the value is found, control flow is transferred to the corresponding destination; otherwise, control flow is transferred to the default destination. +If '``value``' is ``poison``, this instruction has undefined behavior. Implementation: """"""""""""""" @@ -6944,6 +6917,7 @@ possible destination blocks must be listed in the label list, otherwise this instruction has undefined behavior. This implies that jumps to labels defined in other functions have undefined behavior as well. +If '``address``' is ``poison``, this instruction has undefined behavior. Implementation: """"""""""""""" @@ -10161,6 +10135,55 @@ %X = select i1 true, i8 17, i8 42 ; yields i8:17 + +.. _i_freeze: + +'``freeze``' Instruction +^^^^^^^^^^^^^^^^^^^^^^^^ + +Syntax: +""""""" + +:: + + = freeze ty ; yields ty:result + +Overview: +""""""""" + +The '``freeze``' instruction is used to stop propagation of ``undef`` +and ``poison`` values. + +Arguments: +"""""""""" + +The '``freeze``' instruction takes a single argument. + +Semantics: +"""""""""" + +If the argument is ``undef`` or ``poison``, '``freeze``' returns an +arbitrary, but fixed, value of type '``ty``'. +Otherwise, this instruction is a no-op and returns the input argument. +All uses of a '``freeze``' instruction are guaranteed to always observe +the same value. + + +Example: +"""""""" + +.. code-block:: llvm + + %w = i32 undef + %x = freeze i32 %w + %y = add i32 %w, %w ; undef + %z = add i32 %x, %x ; even number + + %poison = add nsw i1 %j, %k + %c = freeze i1 %poison + br i1 %c, label %foo, label %bar ; non-deterministic branch to %foo or %bar + + .. _i_call: '``call``' Instruction