Skip to content
  1. May 03, 2013
    • Ulrich Weigand's avatar
      · d839490f
      Ulrich Weigand authored
      [PowerPC] Support extended mnemonics in AsmParser
      
      This patch adds infrastructure to support extended mnemonics in the
      PowerPC assembler parser.  It adds support specifically for those
      extended mnemonics that LLVM will itself generate.
      
      The test case lists *all* extended mnemonics according to the
      PowerPC ISA v2.06 Book I, but marks those not yet supported
      as FIXME.
      
      llvm-svn: 181051
      d839490f
    • Ulrich Weigand's avatar
      · 640192da
      Ulrich Weigand authored
      [PowerPC] Add assembler parser
      
      This adds assembler parser support to the PowerPC back end.
      
      The parser will run for any powerpc-*-* and powerpc64-*-* triples,
      but was tested only on 64-bit Linux.  The supported syntax is
      intended to be compatible with the GNU assembler.
      
      The parser does not yet support all PowerPC instructions, but
      it does support anything that is generated by LLVM itself.
      There is no support for testing restricted instruction sets yet,
      i.e. the parser will always accept any instructions it knows,
      no matter what feature flags are given.
      
      Instruction operands will be checked for validity and errors
      generated.  (Error handling in general could still be improved.)
      
      The patch adds a number of test cases to verify instruction
      and operand encodings.  The tests currently cover all instructions
      from the following PowerPC ISA v2.06 Book I facilities:
      Branch, Fixed-point, Floating-Point, and Vector. 
      Note that a number of these instructions are not yet supported
      by the back end; they are marked with FIXME.
      
      A number of follow-on check-ins will add extra features.  When
      they are all included, LLVM passes all tests (including bootstrap)
      when using clang -cc1as as the system assembler.
      
      llvm-svn: 181050
      640192da
    • Akira Hatanaka's avatar
      [mips] Split the DSP control register and define one register for each field of · e86bd4f6
      Akira Hatanaka authored
      its fields.
      
      This removes false dependencies between DSP instructions which access different
      fields of the the control register. Implicit register operands are added to
      instructions RDDSP and WRDSP after instruction selection, depending on the
      value of the mask operand.
      
      llvm-svn: 181041
      e86bd4f6
    • Nadav Rotem's avatar
      LoopVectorizer: Add support for if-conversion of PHINodes with 3+ incoming values. · 4ce060b3
      Nadav Rotem authored
      By supporting the vectorization of PHINodes with more than two incoming values we can increase the complexity of nested if statements.
      
      We can now vectorize this loop:
      
      int foo(int *A, int *B, int n) {
        for (int i=0; i < n; i++) {
          int x = 9;
          if (A[i] > B[i]) {
            if (A[i] > 19) {
              x = 3;
            } else if (B[i] < 4 ) {
              x = 4;
            } else {
              x = 5;
            }
          }
          A[i] = x;
        }
      }
      
      llvm-svn: 181037
      4ce060b3
    • Tom Stellard's avatar
      R600: Expand vector or, shl, srl, and xor nodes · 4489b85f
      Tom Stellard authored
      llvm-svn: 181035
      4489b85f
    • Tom Stellard's avatar
      R600: Add pattern for SHA-256 Ma function · eac65dde
      Tom Stellard authored
      This can be optimized using the BFI_INT instruction.
      
      llvm-svn: 181033
      eac65dde
    • Tobias Grosser's avatar
      RegionInfo: Do not crash if unreachable block is found · a7ddc982
      Tobias Grosser authored
      llvm-svn: 181025
      a7ddc982
    • Amara Emerson's avatar
      Add support for reading ARM ELF build attributes. · 2f54d9fe
      Amara Emerson authored
      Build attribute sections can now be read if they exist via ELFObjectFile, and
      the llvm-readobj tool has been extended with an option to dump this information
      if requested. Regression tests are also included which exercise these features.
      
      Also update the docs with a fixed ARM ABI link and a new link to the Addenda
      which provides the build attributes specification.
      
      llvm-svn: 181009
      2f54d9fe
    • Akira Hatanaka's avatar
      [mips] Handle reading, writing or copying of ccond field of DSP control · 5705f546
      Akira Hatanaka authored
      register.
      
      - Define pseudo instructions which store or load ccond field of the DSP
        control register.
      - Emit the pseudos in MipsSEInstrInfo::storeRegToStack and loadRegFromStack.
      - Expand the pseudos before callee-scan save.
      - Emit instructions RDDSP or WRDSP to copy between ccond field and GPRs. 
      
      llvm-svn: 180969
      5705f546
  2. May 02, 2013
  3. May 01, 2013
  4. Apr 30, 2013
Loading