Skip to content
  1. Dec 18, 2014
  2. Dec 17, 2014
    • Toma Tabacu's avatar
      [mips] Set GCC-compatible MIPS asssembler options before inline asm blocks. · a23f13c3
      Toma Tabacu authored
      Summary:
      When generating MIPS assembly, LLVM always overrides the default assembler options by emitting the '.set noreorder', '.set nomacro' and '.set noat' directives,
      while GCC uses the default options if an assembly-level function contains inline assembly code.
      
      This becomes a problem when the code generated by LLVM is interleaved with inline assembly which assumes GCC-like assembler options (from Linux, for example).
      
      This patch fixes these conflicts by setting the appropriate assembler options at the beginning of an inline asm block and popping them at the end.
      
      Reviewers: dsanders
      
      Reviewed By: dsanders
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D6637
      
      llvm-svn: 224425
      a23f13c3
  3. Dec 16, 2014
  4. Dec 15, 2014
    • Duncan P. N. Exon Smith's avatar
      IR: Make metadata typeless in assembly · be7ea19b
      Duncan P. N. Exon Smith authored
      Now that `Metadata` is typeless, reflect that in the assembly.  These
      are the matching assembly changes for the metadata/value split in
      r223802.
      
        - Only use the `metadata` type when referencing metadata from a call
          intrinsic -- i.e., only when it's used as a `Value`.
      
        - Stop pretending that `ValueAsMetadata` is wrapped in an `MDNode`
          when referencing it from call intrinsics.
      
      So, assembly like this:
      
          define @foo(i32 %v) {
            call void @llvm.foo(metadata !{i32 %v}, metadata !0)
            call void @llvm.foo(metadata !{i32 7}, metadata !0)
            call void @llvm.foo(metadata !1, metadata !0)
            call void @llvm.foo(metadata !3, metadata !0)
            call void @llvm.foo(metadata !{metadata !3}, metadata !0)
            ret void, !bar !2
          }
          !0 = metadata !{metadata !2}
          !1 = metadata !{i32* @global}
          !2 = metadata !{metadata !3}
          !3 = metadata !{}
      
      turns into this:
      
          define @foo(i32 %v) {
            call void @llvm.foo(metadata i32 %v, metadata !0)
            call void @llvm.foo(metadata i32 7, metadata !0)
            call void @llvm.foo(metadata i32* @global, metadata !0)
            call void @llvm.foo(metadata !3, metadata !0)
            call void @llvm.foo(metadata !{!3}, metadata !0)
            ret void, !bar !2
          }
          !0 = !{!2}
          !1 = !{i32* @global}
          !2 = !{!3}
          !3 = !{}
      
      I wrote an upgrade script that handled almost all of the tests in llvm
      and many of the tests in cfe (even handling many `CHECK` lines).  I've
      attached it (or will attach it in a moment if you're speedy) to PR21532
      to help everyone update their out-of-tree testcases.
      
      This is part of PR21532.
      
      llvm-svn: 224257
      be7ea19b
  5. Dec 12, 2014
    • Vasileios Kalintiris's avatar
      [mips] Enable code generation for MIPS-III. · 8edbcad8
      Vasileios Kalintiris authored
      Summary:
      This commit enables the MIPS-III target and adds support for code
      generation of SELECT nodes. We have to use pseudo-instructions with
      custom inserters for these nodes as MIPS-III CPUs do not have
      conditional-move instructions.
      
      Depends on D6212
      
      Reviewers: dsanders
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D6464
      
      llvm-svn: 224128
      8edbcad8
    • Vasileios Kalintiris's avatar
      [mips] Support SELECT nodes for targets that don't have conditional-move instructions. · f53f785a
      Vasileios Kalintiris authored
      Summary:
      For Mips targets that do not have conditional-move instructions, ie. targets
      before MIPS32 and MIPS-IV, we have to insert a diamond control-flow
      pattern in order to support SELECT nodes. In order to do that, we add
      pseudo-instructions with a custom inserter that emits the necessary
      control-flow that selects the correct value.
      
      With this patch we add complete support for code generation of Mips-II targets
      based on the LLVM test-suite.
      
      Reviewers: dsanders
      
      Reviewed By: dsanders
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D6212
      
      llvm-svn: 224124
      f53f785a
  6. Dec 11, 2014
  7. Dec 02, 2014
  8. Nov 25, 2014
  9. Nov 21, 2014
  10. Nov 19, 2014
  11. Nov 14, 2014
    • Reed Kotler's avatar
      First stage of call lowering for Mips fast-isel · d5c4196c
      Reed Kotler authored
      Summary:
      This has most of what is needed for mips fast-isel call lowering for O32.
      What is missing I will add on the next patch because this patch is already too large.
      It should not be doing anything wrong but it will punt on some cases that it is basically
      capable of doing.
      
      The mechanism is there for parameters to be passed on the stack but I have not enabled it because it serves as a way for now to prevent some of the strange cases of O32 register passing that I have not fully checked yet and have some issues.
      
      The Mips O32 abi rules are very complicated as far how data is passed in floating and integer registers.
      
      However there is a way to think about this all very simply and this implementation reflects that.
      
      Basically, the ABI rules are written as if everything is passed on the stack and aligned as such.
      Once that is conceptually done, it is nearly trivial to reassign those locations to registers and
      then all the complexity disappears.
      
      So I have told tablegen that all the data is passed on the stack and during the lowering I fix
      this by assigning to registers as per the ABI doc.
      
      This has been my approach and you can line up what I did with the ABI document and see 1 to 1 what
      is going on.
      
      
      
      Test Plan: callabi.ll
      
      Reviewers: dsanders
      
      Reviewed By: dsanders
      
      Subscribers: jholewinski, echristo, ahatanak, llvm-commits, rfuhler
      
      Differential Revision: http://reviews.llvm.org/D5714
      
      llvm-svn: 221948
      d5c4196c
  12. Nov 12, 2014
  13. Nov 11, 2014
    • Vasileios Kalintiris's avatar
      [mips] Add preliminary support for the MIPS II target. · b2dd15f8
      Vasileios Kalintiris authored
      Summary:
      This patch enables code generation for the MIPS II target. Pre-Mips32
      targets don't have the MUL instruction, so we add the correspondent
      pattern that uses the MULT/MFLO combination in order to retrieve the
      product.
      
      This is WIP as we don't support code generation for select nodes due to
      the lack of conditional-move instructions.
      
      Reviewers: dsanders
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D6150
      
      llvm-svn: 221686
      b2dd15f8
  14. Nov 10, 2014
  15. Nov 07, 2014
    • Daniel Sanders's avatar
      [mips] Promote i32 arguments to i64 for the N32/N64 ABI and fix <64-bit structs... · c43cda84
      Daniel Sanders authored
      Summary:
      ... and after all that refactoring, it's possible to distinguish softfloat
      floating point values from integers so this patch no longer breaks softfloat to
      do it.
      
      Remove direct handling of i32's in the N32/N64 ABI by promoting them to
      i64. This more closely reflects the ABI documentation and also fixes
      problems with stack arguments on big-endian targets.
      
      We now rely on signext/zeroext annotations (already generated by clang) and
      the Assert[SZ]ext nodes to avoid the introduction of unnecessary sign/zero
      extends.
      
      It was not possible to convert three tests to use signext/zeroext. These tests
      are bswap.ll, ctlz-v.ll, ctlz-v.ll. It's not possible to put signext on a
      vector type so we just accept the sign extends here for now. These tests don't
      pass the vectors the same way clang does (clang puts multiple elements in the
      same argument, these map 1 element to 1 argument) so we don't need to worry too
      much about it.
      
      With this patch, all known N32/N64 bugs should be fixed and we now pass the
      first 10,000 tests generated by ABITest.py.
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D6117
      
      llvm-svn: 221534
      c43cda84
  16. Nov 06, 2014
  17. Nov 05, 2014
  18. Nov 04, 2014
  19. Oct 24, 2014
  20. Oct 16, 2014
  21. Oct 13, 2014
  22. Oct 11, 2014
  23. Oct 10, 2014
  24. Oct 07, 2014
    • Daniel Sanders's avatar
      [mips] Return {f128} correctly for N32/N64. · f3fe49aa
      Daniel Sanders authored
      Summary:
      According to the ABI documentation, f128 and {f128} should both be returned
      in $f0 and $f2. However, this doesn't match GCC's behaviour which is to
      return f128 in $f0 and $f2, but {f128} in $f0 and $f1.
      
      Reviewers: vmedic
      
      Reviewed By: vmedic
      
      Subscribers: llvm-commits
      
      Differential Revision: http://reviews.llvm.org/D5578
      
      llvm-svn: 219196
      f3fe49aa
  25. Oct 01, 2014
  26. Sep 30, 2014
Loading