Skip to content
  1. Aug 21, 2014
  2. Jul 21, 2014
    • Logan Chien's avatar
      Replace the result usages while legalizing cmpxchg. · 63bee2a2
      Logan Chien authored
      We should update the usages to all of the results;
      otherwise, we might get assertion failure or SEGV during
      the type legalization of ATOMIC_CMP_SWAP_WITH_SUCCESS
      with two or more illegal types.
      
      For example, in the following sequence, both i8 and i1
      might be illegal in some target, e.g. armv5, mipsel, mips64el,
      
          %0 = cmpxchg i8* %ptr, i8 %desire, i8 %new monotonic monotonic
          %1 = extractvalue { i8, i1 } %0, 1
      
      Since both i8 and i1 should be legalized, the corresponding
      ATOMIC_CMP_SWAP_WITH_SUCCESS dag will be checked/replaced/updated
      twice.
      
      If we don't update the usage to *ALL* of the results in the
      first round, the DAG for extractvalue might be processed earlier.
      The GetPromotedInteger() will result in assertion failure,
      because its operand (i.e. the success bit of cmpxchg) is not
      promoted beforehand.
      
      llvm-svn: 213569
      63bee2a2
Loading