Skip to content
  1. Oct 07, 2019
  2. Oct 03, 2019
  3. Oct 01, 2019
    • Matt Arsenault's avatar
      TLI: Remove DAG argument from getRegisterByName · f24ac13a
      Matt Arsenault authored
      Replace with the MachineFunction. X86 is the only user, and only uses
      it for the function. This removes one obstacle from using this in
      GlobalISel. The other is the more tolerable EVT argument.
      
      The X86 use of the function seems questionable to me. It checks hasFP,
      before frame lowering.
      
      llvm-svn: 373292
      f24ac13a
  4. Sep 30, 2019
  5. Sep 27, 2019
  6. Sep 26, 2019
    • Petar Avramovic's avatar
      [MIPS GlobalISel] Lower aggregate structure return arguments · ed305191
      Petar Avramovic authored
      Implement aggregate structure split to simpler types in splitToValueTypes.
      splitToValueTypes is used for return values.
      According to MipsABIInfo from clang/lib/CodeGen/TargetInfo.cpp,
      aggregate structure arguments for O32 always get simplified and thus
      will remain unsupported by the MIPS GlobalISel for the time being.
      For O32, aggregate structures can be encountered only for complex number
      returns e.g. 'complex float' or 'complex double' from <complex.h>.
      
      Differential Revision: https://reviews.llvm.org/D67963
      
      llvm-svn: 372957
      ed305191
  7. Sep 25, 2019
  8. Sep 23, 2019
    • Petar Avramovic's avatar
      [MIPS GlobalISel] VarArg argument lowering, select G_VASTART and vacopy · c063b0b0
      Petar Avramovic authored
      CC_Mips doesn't accept vararg functions for O32, so we have to explicitly
      use CC_Mips_FixedArg.
      For lowerCall we now properly figure out whether callee function is vararg
      or not, this has no effect for O32 since we always use CC_Mips_FixedArg.
      For lower formal arguments we need to copy arguments in register to stack
      and save pointer to start for argument list into MipsMachineFunction
      object so that G_VASTART could use it during instruction select.
      For vacopy we need to copy content from one vreg to another,
      load and store are used for that purpose.
      
      Differential Revision: https://reviews.llvm.org/D67756
      
      llvm-svn: 372555
      c063b0b0
  9. Sep 22, 2019
  10. Sep 19, 2019
    • Matt Arsenault's avatar
      Reapply r372285 "GlobalISel: Don't materialize immarg arguments to intrinsics" · 3ecab8e4
      Matt Arsenault authored
      This reverts r372314, reapplying r372285 and the commits which depend
      on it (r372286-r372293, and r372296-r372297)
      
      This was missing one switch to getTargetConstant in an untested case.
      
      llvm-svn: 372338
      3ecab8e4
    • Hans Wennborg's avatar
      Revert r372285 "GlobalISel: Don't materialize immarg arguments to intrinsics" · 13bdae85
      Hans Wennborg authored
      This broke the Chromium build, causing it to fail with e.g.
      
        fatal error: error in backend: Cannot select: t362: v4i32 = X86ISD::VSHLI t392, Constant:i8<15>
      
      See llvm-commits thread of r372285 for details.
      
      This also reverts r372286, r372287, r372288, r372289, r372290, r372291,
      r372292, r372293, r372296, and r372297, which seemed to depend on the
      main commit.
      
      > Encode them directly as an imm argument to G_INTRINSIC*.
      >
      > Since now intrinsics can now define what parameters are required to be
      > immediates, avoid using registers for them. Intrinsics could
      > potentially want a constant that isn't a legal register type. Also,
      > since G_CONSTANT is subject to CSE and legalization, transforms could
      > potentially obscure the value (and create extra work for the
      > selector). The register bank of a G_CONSTANT is also meaningful, so
      > this could throw off future folding and legalization logic for AMDGPU.
      >
      > This will be much more convenient to work with than needing to call
      > getConstantVRegVal and checking if it may have failed for every
      > constant intrinsic parameter. AMDGPU has quite a lot of intrinsics wth
      > immarg operands, many of which need inspection during lowering. Having
      > to find the value in a register is going to add a lot of boilerplate
      > and waste compile time.
      >
      > SelectionDAG has always provided TargetConstant for constants which
      > should not be legalized or materialized in a register. The distinction
      > between Constant and TargetConstant was somewhat fuzzy, and there was
      > no automatic way to force usage of TargetConstant for certain
      > intrinsic parameters. They were both ultimately ConstantSDNode, and it
      > was inconsistently used. It was quite easy to mis-select an
      > instruction requiring an immediate. For SelectionDAG, start emitting
      > TargetConstant for these arguments, and using timm to match them.
      >
      > Most of the work here is to cleanup target handling of constants. Some
      > targets process intrinsics through intermediate custom nodes, which
      > need to preserve TargetConstant usage to match the intrinsic
      > expectation. Pattern inputs now need to distinguish whether a constant
      > is merely compatible with an operand or whether it is mandatory.
      >
      > The GlobalISelEmitter needs to treat timm as a special case of a leaf
      > node, simlar to MachineBasicBlock operands. This should also enable
      > handling of patterns for some G_* instructions with immediates, like
      > G_FENCE or G_EXTRACT.
      >
      > This does include a workaround for a crash in GlobalISelEmitter when
      > ARM tries to uses "imm" in an output with a "timm" pattern source.
      
      llvm-svn: 372314
      13bdae85
    • Matt Arsenault's avatar
      GlobalISel: Don't materialize immarg arguments to intrinsics · d8399d12
      Matt Arsenault authored
      Encode them directly as an imm argument to G_INTRINSIC*.
      
      Since now intrinsics can now define what parameters are required to be
      immediates, avoid using registers for them. Intrinsics could
      potentially want a constant that isn't a legal register type. Also,
      since G_CONSTANT is subject to CSE and legalization, transforms could
      potentially obscure the value (and create extra work for the
      selector). The register bank of a G_CONSTANT is also meaningful, so
      this could throw off future folding and legalization logic for AMDGPU.
      
      This will be much more convenient to work with than needing to call
      getConstantVRegVal and checking if it may have failed for every
      constant intrinsic parameter. AMDGPU has quite a lot of intrinsics wth
      immarg operands, many of which need inspection during lowering. Having
      to find the value in a register is going to add a lot of boilerplate
      and waste compile time.
      
      SelectionDAG has always provided TargetConstant for constants which
      should not be legalized or materialized in a register. The distinction
      between Constant and TargetConstant was somewhat fuzzy, and there was
      no automatic way to force usage of TargetConstant for certain
      intrinsic parameters. They were both ultimately ConstantSDNode, and it
      was inconsistently used. It was quite easy to mis-select an
      instruction requiring an immediate. For SelectionDAG, start emitting
      TargetConstant for these arguments, and using timm to match them.
      
      Most of the work here is to cleanup target handling of constants. Some
      targets process intrinsics through intermediate custom nodes, which
      need to preserve TargetConstant usage to match the intrinsic
      expectation. Pattern inputs now need to distinguish whether a constant
      is merely compatible with an operand or whether it is mandatory.
      
      The GlobalISelEmitter needs to treat timm as a special case of a leaf
      node, simlar to MachineBasicBlock operands. This should also enable
      handling of patterns for some G_* instructions with immediates, like
      G_FENCE or G_EXTRACT.
      
      This does include a workaround for a crash in GlobalISelEmitter when
      ARM tries to uses "imm" in an output with a "timm" pattern source.
      
      llvm-svn: 372285
      d8399d12
  11. Sep 18, 2019
  12. Sep 17, 2019
    • Graham Hunter's avatar
      [SVE][MVT] Fixed-length vector MVT ranges · 1a9195d8
      Graham Hunter authored
        * Reordered MVT simple types to group scalable vector types
          together.
        * New range functions in MachineValueType.h to only iterate over
          the fixed-length int/fp vector types.
        * Stopped backends which don't support scalable vector types from
          iterating over scalable types.
      
      Reviewers: sdesmalen, greened
      
      Reviewed By: greened
      
      Differential Revision: https://reviews.llvm.org/D66339
      
      llvm-svn: 372099
      1a9195d8
  13. Sep 13, 2019
  14. Sep 12, 2019
  15. Sep 11, 2019
  16. Sep 10, 2019
  17. Sep 09, 2019
    • Simon Atanasyan's avatar
      [mips] Fix decoding of microMIPS JALX instruction · 56e4ea2b
      Simon Atanasyan authored
      microMIPS jump and link exchange instruction stores a target in a
      26-bits field. Despite other microMIPS JAL instructions these bits
      are target address shifted right 2 bits [1]. The patch fixes the
      JALX instruction decoding and uses 2-bit shift.
      
      [1] MIPS Architecture for Programmers Volume II-B: The microMIPS32 Instruction Set
      
      Differential Revision: https://reviews.llvm.org/D67320
      
      llvm-svn: 371428
      56e4ea2b
  18. Sep 06, 2019
  19. Sep 05, 2019
    • Petar Avramovic's avatar
      [MIPS GlobalISel] Select G_FENCE · a4bfc8df
      Petar Avramovic authored
      G_FENCE comes form fence instruction. For MIPS fence is generated in
      AtomicExpandPass when atomic instruction gets surrounded with fence
      instruction when needed.
      G_FENCE arguments don't have LLT, because of that there is no job for
      legalizer and regbankselect. Instruction select G_FENCE for MIPS32.
      
      Differential Revision: https://reviews.llvm.org/D67181
      
      llvm-svn: 371056
      a4bfc8df
    • Petar Avramovic's avatar
      [MIPS GlobalISel] Select llvm.trap intrinsic · f5c7fe07
      Petar Avramovic authored
      Select G_INTRINSIC_W_SIDE_EFFECTS for Intrinsic::trap for MIPS32
      via legalizeIntrinsic.
      
      Differential Revision: https://reviews.llvm.org/D67180
      
      llvm-svn: 371055
      f5c7fe07
    • Petar Avramovic's avatar
      [MIPS GlobalISel] Lower SRet pointer arguments · d2574d79
      Petar Avramovic authored
      Instead of returning structure by value clang usually adds pointer
      to that structure as an argument. Pointers don't require special
      handling no matter the SRet flag. Remove unsuccessful exit from
      lowerCall for arguments with SRet flag if they are pointers.
      
      Differential Revision: https://reviews.llvm.org/D67179
      
      llvm-svn: 371054
      d2574d79
    • Guillaume Chatelet's avatar
      [LLVM][Alignment] Make functions using log of alignment explicit · aff45e4b
      Guillaume Chatelet authored
      Summary:
      This patch renames functions that takes or returns alignment as log2, this patch will help with the transition to llvm::Align.
      The renaming makes it explicit that we deal with log(alignment) instead of a power of two alignment.
      A few renames uncovered dubious assignments:
      
       - `MirParser`/`MirPrinter` was expecting powers of two but `MachineFunction` and `MachineBasicBlock` were using deal with log2(align). This patch fixes it and updates the documentation.
       - `MachineBlockPlacement` exposes two flags (`align-all-blocks` and `align-all-nofallthru-blocks`) supposedly interpreted as power of two alignments, internally these values are interpreted as log2(align). This patch updates the documentation,
       - `MachineFunctionexposes` exposes `align-all-functions` also interpreted as power of two alignment, internally this value is interpreted as log2(align). This patch updates the documentation,
      
      Reviewers: lattner, thegameg, courbet
      
      Subscribers: dschuff, arsenm, jyknight, dylanmckay, sdardis, nemanjai, jvesely, nhaehnle, javed.absar, hiraditya, kbarton, fedor.sergeev, asb, rbar, johnrusso, simoncook, apazos, sabuasal, niosHD, jrtc27, MaskRay, zzheng, edward-jones, atanasyan, rogfer01, MartinMosbeck, brucehoult, the_o, dexonsmith, PkmX, jocewei, jsji, Jim, s.egerton, llvm-commits, courbet
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D65945
      
      llvm-svn: 371045
      aff45e4b
  20. Sep 03, 2019
  21. Aug 30, 2019
Loading