Skip to content
  1. Jan 16, 2014
  2. Jan 07, 2014
  3. Dec 19, 2013
  4. Dec 05, 2013
    • Alp Toker's avatar
      Correct word hyphenations · f907b891
      Alp Toker authored
      This patch tries to avoid unrelated changes other than fixing a few
      hyphen-related ambiguities and contractions in nearby lines.
      
      llvm-svn: 196471
      f907b891
  5. Dec 04, 2013
  6. Nov 29, 2013
    • Reed Kotler's avatar
      Part 1 of 3 patches that completes very long conditional branches · ad450f23
      Reed Kotler authored
      in constant islands for Mips16. We introdcuce JalB16 as a synomnym
      for Jal16. It makes it easier to read and is also necessary because
      Jal16 is a call instruction but JalB16 is being used as a branch.
      Various parts of LLVM will not work properly even in this late stage of
      the backend if we use what was declared as a call instruction to function
      as a branch. For one, basic block labels may not get emitted in some
      situations. 
      
      llvm-svn: 195968
      ad450f23
  7. Nov 28, 2013
    • Reed Kotler's avatar
      Check in conditional branches for constant islands. Still need to finish · 0d409e2d
      Reed Kotler authored
      conditional branches for very large targets. That will be the next small
      patch. Everything now should in principle work as good (functionality
      wise) as without constant islands so we decided at Mips/Imagination to
      make constant islands the default for Mips16 now so that it will get
      excercised a lot and this port is still experimentatl though hopefully soon
      we will change the status. Some more cleanup and code review is in order
      but things are converging fast.
      
      llvm-svn: 195902
      0d409e2d
  8. Nov 24, 2013
    • Reed Kotler's avatar
      Make sure that for C++ emitting LwConstant32 pseudos, that it corresponds · a787aa2b
      Reed Kotler authored
      to what is needed for constant islands. The prescan method for Mips16 constant
      islands will eventually go away. It is only temporary and should be done
      earlier when the instructions are first created or from the DAG. If we keep
      it here we need to handle better the situation where constant islands
      is called multiple times since don't want to prescan more than once.
      
      llvm-svn: 195569
      a787aa2b
    • Reed Kotler's avatar
      Fix a funny bug I introduced during conversion of ARM constant islands to Mips. · d3b28ebe
      Reed Kotler authored
      I had to move some code and I moved a declaration forward past it's first use
      in the function but by nutty coincidence there was another variable of the same
      name and type and  with completely unrelated function that was declared globally
      in the class so no compilation error ensued.
      It required some unusual conditions for it to even matter. Caused test
      case casts.c in test-suite to fail during compilation with a duplicate 
      symbol error. I would have noticed it during final code review for this port.
      
      llvm-svn: 195565
      d3b28ebe
  9. Nov 21, 2013
  10. Nov 14, 2013
  11. Nov 13, 2013
  12. Nov 12, 2013
    • Reed Kotler's avatar
      Change the default branch instruction to be the 16 bit variety for mips16. · f0e6968e
      Reed Kotler authored
      This has no material effect at this time since we don't have a direct
      object emitter for mips16 and the assembler can't tell them apart. I
      place a comment "16 bit inst" for those so that I can tell them apart in the
      output. The constant island pass has only been minimally changed to allow
      this. More complete branch work is forthcoming but this is the first
      step.
      
      llvm-svn: 194442
      f0e6968e
  13. Nov 10, 2013
  14. Nov 07, 2013
  15. Nov 06, 2013
  16. Nov 05, 2013
    • Reed Kotler's avatar
      Get rid of all references to soimm in MipsConstantIslands pass because · b09ebe93
      Reed Kotler authored
      we don't have such an operand.
      Suprisingly enough, this is never actually accounted for in the 
      ARM version when determining offset ranges. In both places there is the
      comment:
      -    // FIXME: Make use full range of soimm values.
      (soimm = shift operand immediate).
      
      llvm-svn: 194101
      b09ebe93
    • Reed Kotler's avatar
      Cleanup getUserOffset. Issues related to inline assembler length and · 0eb87390
      Reed Kotler authored
      alignment will be handled differently than in ARM constant islands.
      
      llvm-svn: 194096
      0eb87390
    • Reed Kotler's avatar
      Remove the word "thumb" from comments. Remove also an incorrect · 4d0313d8
      Reed Kotler authored
      command regarding the porting from the ARM version (was an old comment).
      
      llvm-svn: 194066
      4d0313d8
    • Reed Kotler's avatar
      Fix r194019 as requested by Eric Christopher. · 0f007fc4
      Reed Kotler authored
      Submit the basic port of the rest of ARM constant islands code to Mips. 
      Two test cases are added which reflect the next level of functionality:
      constants getting moved to water areas that are out of range from the
      initial placement at the end of the function and basic blocks being split to
      create water when none exists that can be used. There is a bunch of this
      code that is not complete and has been marked with IN_PROGRESS. I will
      finish cleaning this all up during the next week or two and submit the
      rest of the test cases. I have elminated some code for dealing with
      inline assembly because to me it unecessarily complicates things and
      some of the newer features of llvm like function attributies and builtin
      assembler give me better tools to solve the alignment issues created
      there. Also, for Mips16 I even have the option of not doing constant
      islands in the present of inline assembler if I chose. When everything
      has been completed I will summarize the port and notify people that
      are knowledgable regarding the ARM Constant Islands code so they can
      review it in it's entirety if they wish.
      
      llvm-svn: 194053
      0f007fc4
    • NAKAMURA Takumi's avatar
      Revert r194019 to r194021, "Submit the basic port of the rest of ARM constant... · 5267613e
      NAKAMURA Takumi authored
      Revert r194019 to r194021, "Submit the basic port of the rest of ARM constant islands code to Mips."
      
      It broke -Asserts build.
      
      llvm-svn: 194026
      5267613e
  17. Nov 04, 2013
    • Reed Kotler's avatar
      Make sure we don't get a warning from this variable that is only used · 7f601b9a
      Reed Kotler authored
      when compiling with DEBUG.
      
      llvm-svn: 194021
      7f601b9a
    • Reed Kotler's avatar
      Submit the basic port of the rest of ARM constant islands code to Mips. · 526804f7
      Reed Kotler authored
      Two test cases are added which reflect the next level of functionality:
      constants getting moved to water areas that are out of range from the
      initial placement at the end of the function and basic blocks being split to
      create water when none exists that can be used. There is a bunch of this
      code that is not complete and has been marked with IN_PROGRESS. I will
      finish cleaning this all up during the next week or two and submit the
      rest of the test cases. I have elminated some code for dealing with
      inline assembly because to me it unecessarily complicates things and
      some of the newer features of llvm like function attributies and builtin
      assembler give me better tools to solve the alignment issues created
      there. Also, for Mips16 I even have the option of not doing constant
      islands in the present of inline assembler if I chose.
      
      llvm-svn: 194019
      526804f7
  18. Oct 27, 2013
    • Reed Kotler's avatar
      Make first substantial checkin of my port of ARM constant islands code to Mips. · 91ae9829
      Reed Kotler authored
      Before I just ported the shell of the pass. I've tried to keep everything
      nearly identical to the ARM version. I think it will be very easy to eventually
      merge these two and create a new more general pass that other targets can
      use. I have some improvements I would like to make to allow pools to 
      be shared across functions and some other things. When I'm all done we
      can think about making a more general pass. More to be ported but the
      basic mechanism works now almost as good as gcc mips16.
      
      llvm-svn: 193509
      91ae9829
  19. Jun 07, 2013
  20. Apr 09, 2013
    • Reed Kotler's avatar
      This patch enables llvm to switch between compiling for mips32/mips64 · 1595f36d
      Reed Kotler authored
      and mips16 on a per function basis.
      
      Because this patch is somewhat involved I have provide an overview of the
      key pieces of it.
      
      The patch is written so as to not change the behavior of the non mixed
      mode. We have tested this a lot but it is something new to switch subtargets
      so we don't want any chance of regression in the mainline compiler until
      we have more confidence in this.
      
      Mips32/64 are very different from Mip16 as is the case of ARM vs Thumb1.
      For that reason there are derived versions of the register info, frame info, 
      instruction info and instruction selection classes.
      
      Now we register three separate passes for instruction selection.
      One which is used to switch subtargets (MipsModuleISelDAGToDAG.cpp) and then
      one for each of the current subtargets (Mips16ISelDAGToDAG.cpp and
      MipsSEISelDAGToDAG.cpp).
      
      When the ModuleISel pass runs, it determines if there is a need to switch
      subtargets and if so, the owning pointers in MipsTargetMachine are
      appropriately changed.
      
      When 16Isel or SEIsel is run, they will return immediately without doing
      any work if the current subtarget mode does not apply to them.
      
      In addition, MipsAsmPrinter needs to be reset on a function basis.
      
      The pass BasicTargetTransformInfo is substituted with a null pass since the
      pass is immutable and really needs to be a function pass for it to be
      used with changing subtargets. This will be fixed in a follow on patch.
      
      llvm-svn: 179118
      1595f36d
  21. Feb 27, 2013
Loading