Skip to content
  1. May 02, 2013
    • Tom Stellard's avatar
      R600: Use new tablegen syntax for patterns · 40b7f1f6
      Tom Stellard authored
      All but two patterns have been converted to the new syntax.  The
      remaining two patterns will require COPY_TO_REGCLASS instructions, which
      the VLIW DAG Scheduler cannot handle.
      
      llvm-svn: 180922
      40b7f1f6
    • Tom Stellard's avatar
      R600/SI: remove nonsense select pattern · 5447ae20
      Tom Stellard authored
      
      
      Fortunately this pattern never matched, otherwise
      we would have generated incorrect code.
      
      Signed-off-by: default avatarChristian K??nig <christian.koenig@amd.com>
      llvm-svn: 180921
      5447ae20
    • Michael Liao's avatar
      80-col fixup. · 06badde1
      Michael Liao authored
      llvm-svn: 180915
      06badde1
    • Michael Liao's avatar
      Avoid duplicating logic on frame register selecting when lowering eh_return · afafa98f
      Michael Liao authored
      No functionality change
      
      llvm-svn: 180914
      afafa98f
    • Michael Liao's avatar
      Avoid duplicating logic on frame register selecting when lowering frameaddr · 31d39a4a
      Michael Liao authored
      No functionality change
      
      llvm-svn: 180912
      31d39a4a
    • Akira Hatanaka's avatar
      [mips] Rename class and functions. Simplify code. · ae4a5567
      Akira Hatanaka authored
      No functionality changes.
      
      llvm-svn: 180897
      ae4a5567
    • Filip Pizlo's avatar
      This exposes more MCJIT options via the C API: · 85e0d273
      Filip Pizlo authored
      CodeModel: It's now possible to create an MCJIT instance with any CodeModel you like.  Previously it was only possible to 
      create an MCJIT that used CodeModel::JITDefault.
      
      EnableFastISel: It's now possible to turn on the fast instruction selector.
      
      The CodeModel option required some trickery.  The problem is that previously, we were ensuring future binary compatibility in 
      the MCJITCompilerOptions by mandating that the user bzero's the options struct and passes the sizeof() that he saw; the 
      bindings then bzero the remaining bits.  This works great but assumes that the bitwise zero equivalent of any field is a 
      sensible default value.
      
      But this is not the case for LLVMCodeModel, or its internal equivalent, llvm::CodeModel::Model.  In both of those, the default 
      for a JIT is CodeModel::JITDefault (or LLVMCodeModelJITDefault), which is not bitwise zero.
      
      Hence this change introduces LLVMInitializeMCJITCompilerOptions(), which will initialize the user's options struct with
      defaults. The user will use this in the same way that they would have previously used memset() or bzero(). MCJITCAPITest.cpp
      illustrates the change, as does the comment in ExecutionEngine.h.
      
      llvm-svn: 180893
      85e0d273
  2. May 01, 2013
  3. Apr 30, 2013
  4. Apr 28, 2013
  5. Apr 27, 2013
  6. Apr 26, 2013
    • Tom Stellard's avatar
      R600: Initialize AMDGPUMachineFunction::ShaderType to ShaderType::COMPUTE · 456adc6c
      Tom Stellard authored
      
      
      We need to intialize this to something and since clang does not set
      the shader type attribute and clang is used only for compute shaders,
      initializing it to COMPUTE seems like the best choice.
      
      Reviewed-by: default avatarChristian König <christian.koenig@amd.com>
      llvm-svn: 180620
      456adc6c
    • Quentin Colombet's avatar
      ARM: Fix encoding of hint instruction for Thumb. · a83d5e9f
      Quentin Colombet authored
      "hint" space for Thumb actually overlaps the encoding space of the CPS
      instruction. In actuality, hints can be defined as CPS instructions where imod
      and M bits are all nil.
      
      Handle decoding of permitted nop-compatible hints (i.e. nop, yield, wfi, wfe,
      sev) in DecodeT2CPSInstruction.
      
      This commit adds a proper diagnostic message for Imm0_4 and updates all tests.
      
      Patch by Mihail Popa <Mihail.Popa@arm.com>.
      
      llvm-svn: 180617
      a83d5e9f
    • Ulrich Weigand's avatar
      · 136ac22e
      Ulrich Weigand authored
      PowerPC: Use RegisterOperand instead of RegisterClass operands
      
      In the default PowerPC assembler syntax, registers are specified simply
      by number, so they cannot be distinguished from immediate values (without
      looking at the opcode).  This means that the default operand matching logic
      for the asm parser does not work, and we need to specify custom matchers.
      Since those can only be specified with RegisterOperand classes and not
      directly on the RegisterClass, all instructions patterns used by the asm
      parser need to use a RegisterOperand (instead of a RegisterClass) for
      all their register operands.
      
      This patch adds one RegisterOperand for each RegisterClass, using the
      same name as the class, just in lower case, and updates all instruction
      patterns to use RegisterOperand instead of RegisterClass operands.
      
      llvm-svn: 180611
      136ac22e
    • Ulrich Weigand's avatar
      · 551b085d
      Ulrich Weigand authored
      PowerPC: Fix encoding of vsubcuw and vsum4sbs instructions
      
      When testing the asm parser, I noticed wrong encodings for the
      above instructions (wrong sub-opcodes).
      
      Tests will be added together with the asm parser.
      
      llvm-svn: 180608
      551b085d
    • Ulrich Weigand's avatar
      · 48b949b6
      Ulrich Weigand authored
      PowerPC: Fix encoding of stfsu and stfdu instructions
      
      When testing the asm parser, I noticed wrong encodings for the
      above instructions (wrong sub-opcodes).  Note that apparently
      the compiler currently never generates pre-inc instructions
      for floating point types for some reason ...
      
      Tests will be added together with the asm parser.
      
      llvm-svn: 180607
      48b949b6
    • Ulrich Weigand's avatar
      · fa451ba1
      Ulrich Weigand authored
      PowerPC: Fix encoding of rldimi and rldcl instructions
      
      When testing the asm parser, I noticed wrong encodings for the
      above instructions (wrong operand name in rldimi, wrong form
      and sub-opcode for rldcl).
      
      Tests will be added together with the asm parser.
      
      llvm-svn: 180606
      fa451ba1
    • Ulrich Weigand's avatar
      · 72a7dc0d
      Ulrich Weigand authored
      PowerPC: Support PC-relative fixup_ppc_brcond14.
      
      When testing the asm parser, I ran into an error when using a conditional
      branch to an external symbol (this doesn't occur in compiler-generated
      code) due to missing support in PPCELFObjectWriter::getRelocTypeInner.
      
      llvm-svn: 180605
      72a7dc0d
Loading