Skip to content
Snippets Groups Projects
  1. Jul 07, 2017
  2. May 27, 2016
    • Simon Dardis's avatar
      [mips] Compact branch policy setting. · 53682693
      Simon Dardis authored
      This patch adds the commandline option -mcompact-branches={never,optimal,always),
      which controls how LLVM generates compact branches for MIPSR6 targets. By default,
      the compact branch policy is 'optimal' where LLVM will generate the most
      appropriate branch for any situation. The 'never' and 'always' policy will disable
      or always generate compact branches wherever possible respectfully.
      
      Reviewers: dsanders, vkalintiris, atanasyan
      
      Differential Revision: http://reviews.llvm.org/D20729
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@271000 91177308-0d34-0410-b5e6-96231b3b80d8
      53682693
  3. Jun 16, 2015
  4. Apr 14, 2015
  5. Aug 08, 2014
    • Daniel Sanders's avatar
      [mips] Invert the abicalls feature bit to be noabicalls so that it's possible... · c4d24d41
      Daniel Sanders authored
      [mips] Invert the abicalls feature bit to be noabicalls so that it's possible for -mno-abicalls to take effect.
      
      Also added the testcase that should have been in r215194.
      
      This behaviour has surprised me a few times now. The problem is that the
      generated MipsSubtarget::ParseSubtargetFeatures() contains code like this:
      
         if ((Bits & Mips::FeatureABICalls) != 0) IsABICalls = true;
      
      so '-abicalls' means 'leave it at the default' and '+abicalls' means 'set it to
      true'. In this case, (and the similar -modd-spreg case) I'd like the code to be
      
        IsABICalls = (Bits & Mips::FeatureABICalls) != 0;
      
      or possibly:
      
         if ((Bits & Mips::FeatureABICalls) != 0)
           IsABICalls = true;
         else
           IsABICalls = false;
      
      and preferably arrange for 'Bits & Mips::FeatureABICalls' to be true by default
      (on some triples).
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@215211 91177308-0d34-0410-b5e6-96231b3b80d8
      c4d24d41
    • Daniel Sanders's avatar
      [mips] Add -mabicalls/-mno-abicalls to the driver · d6d04866
      Daniel Sanders authored
      Based on a patch by Matheus Almeida. I've added testcases and fixed a bug where
      the options weren't passed on to GAS.
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@215204 91177308-0d34-0410-b5e6-96231b3b80d8
      d6d04866
  6. Jul 16, 2014
  7. Jul 10, 2014
  8. May 07, 2014
  9. Oct 17, 2013
    • Daniel Sanders's avatar
      [mips] Added -mfp64 and -mfp32 options. · af7ed9e8
      Daniel Sanders authored
      These options specify 64-bit FP registers and 32-bit FP registers respectively.
      
      When using -mfp32, the FPU has 16x double-precision registers overlapping with
      the 32x single-precision registers (each double-precision register overlaps
      two single-precision registers).
      
      When using -mfp64, the FPU has 32x double-precision registers overlapping with
      the 32x single-precision registers (each double-precision register overlaps
      with one single-precision register and has an additional 32-bits).
      
      MSA requires -mfp64.
      
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@192899 91177308-0d34-0410-b5e6-96231b3b80d8
      af7ed9e8
  10. Aug 12, 2013
  11. Jul 19, 2013
  12. May 11, 2013
  13. Apr 22, 2013
  14. Apr 14, 2013
  15. Dec 01, 2012
  16. Aug 27, 2012
  17. Jul 09, 2012
  18. Jul 05, 2012
Loading