Skip to content
  1. Aug 29, 2012
  2. Aug 28, 2012
    • Jakob Stoklund Olesen's avatar
      Add a MachineOperand::isTied() flag. · e56c60c5
      Jakob Stoklund Olesen authored
      While in SSA form, a MachineInstr can have pairs of tied defs and uses.
      The tied operands are used to represent read-modify-write operands that
      must be assigned the same physical register.
      
      Previously, tied operand pairs were computed from fixed MCInstrDesc
      fields, or by using black magic on inline assembly instructions.
      
      The isTied flag makes it possible to add tied operands to any
      instruction while getting rid of (some of) the inlineasm magic.
      
      Tied operands on normal instructions are needed to represent predicated
      individual instructions in SSA form. An extra <tied,imp-use> operand is
      required to represent the output value when the instruction predicate is
      false.
      
      Adding a predicate to:
      
        %vreg0<def> = ADD %vreg1, %vreg2
      
      Will look like:
      
        %vreg0<tied,def> = ADD %vreg1, %vreg2, pred:3, %vreg7<tied,imp-use>
      
      The virtual register %vreg7 is the value given to %vreg0 when the
      predicate is false. It will be assigned the same physreg as %vreg0.
      
      This commit adds the isTied flag and sets it based on MCInstrDesc when
      building an instruction. The flag is not used for anything yet.
      
      llvm-svn: 162774
      e56c60c5
    • Jakob Stoklund Olesen's avatar
      Don't allow TargetFlags on MO_Register MachineOperands. · dba99d0d
      Jakob Stoklund Olesen authored
      Register operands are manipulated by a lot of target-independent code,
      and it is not always possible to preserve target flags. That means it is
      not safe to use target flags on register operands.
      
      None of the targets in the tree are using register operand target flags.
      External targets should be using immediate operands to annotate
      instructions with operand modifiers.
      
      llvm-svn: 162770
      dba99d0d
    • Jakob Stoklund Olesen's avatar
      Remove extra MayLoad/MayStore flags from atomic_load/store. · 87cb471e
      Jakob Stoklund Olesen authored
      These extra flags are not required to properly order the atomic
      load/store instructions. SelectionDAGBuilder chains atomics as if they
      were volatile, and SelectionDAG::getAtomic() sets the isVolatile bit on
      the memory operands of all atomic operations.
      
      The volatile bit is enough to order atomic loads and stores during and
      after SelectionDAG.
      
      This means we set mayLoad on atomic_load, mayStore on atomic_store, and
      mayLoad+mayStore on the remaining atomic read-modify-write operations.
      
      llvm-svn: 162733
      87cb471e
    • Akira Hatanaka's avatar
      Fix bug 13532. · adb14f56
      Akira Hatanaka authored
      In SelectionDAGLegalize::ExpandLegalINT_TO_FP, expand INT_TO_FP nodes without
      using any f64 operations if f64 is not a legal type.
      
      Patch by Stefan Kristiansson. 
      
      llvm-svn: 162728
      adb14f56
  3. Aug 25, 2012
  4. Aug 24, 2012
  5. Aug 23, 2012
  6. Aug 22, 2012
  7. Aug 21, 2012
  8. Aug 20, 2012
    • Jakob Stoklund Olesen's avatar
      Don't add CFG edges for redundant conditional branches. · 7d33c573
      Jakob Stoklund Olesen authored
      IR that hasn't been through SimplifyCFG can look like this:
      
        br i1 %b, label %r, label %r
      
      Make sure we don't create duplicate Machine CFG edges in this case.
      
      Fix the machine code verifier to accept conditional branches with a
      single CFG edge.
      
      llvm-svn: 162230
      7d33c573
    • Jakob Stoklund Olesen's avatar
      Add a verification pass after ExpandISelPseudos. · 1d026267
      Jakob Stoklund Olesen authored
      This pass often has weird CFG hacks and hand-written MI building code
      that can go wrong in many ways.
      
      llvm-svn: 162224
      1d026267
    • Jakob Stoklund Olesen's avatar
      Add CFG checks to MachineVerifier. · de31b52c
      Jakob Stoklund Olesen authored
      Verify that the predecessor and successor lists are consistent and free
      of duplicates.
      
      llvm-svn: 162223
      de31b52c
    • Stepan Dyatkovskiy's avatar
      Fixed DAGCombiner bug (found and localized by James Malloy): · 6a638ec5
      Stepan Dyatkovskiy authored
      The DAGCombiner tries to optimise a BUILD_VECTOR by checking if it
      consists purely of get_vector_elts from one or two source vectors. If
      so, it either makes a concat_vectors node or a shufflevector node.
      
      However, it doesn't check the element type width of the underlying
      vector, so if you have this sequence:
      
      Node0: v4i16 = ...
      Node1: i32 = extract_vector_elt Node0
      Node2: i32 = extract_vector_elt Node0
      Node3: v16i8 = BUILD_VECTOR Node1, Node2, ...
      
      It will attempt to:
      
      Node0:    v4i16 = ...
      NewNode1: v16i8 = concat_vectors Node0, ...
      
      Where this is actually invalid because the element width is completely
      different. This causes an assertion failure on DAG legalization stage.
      
      Fix:
      If output item type of BUILD_VECTOR differs from input item type.
      Make concat_vectors based on input element type and then bitcast it to the output vector type. So the case described above will transformed to:
      Node0:    v4i16 = ...
      NewNode1: v8i16 = concat_vectors Node0, ...
      NewNode2: v16i8 = bitcast NewNode1
      
      llvm-svn: 162195
      6a638ec5
  9. Aug 18, 2012
  10. Aug 17, 2012
Loading