Skip to content
  1. Feb 28, 2012
  2. Feb 27, 2012
  3. Feb 26, 2012
  4. Feb 25, 2012
    • Hal Finkel's avatar
      Revert r151278, breaks static linking. · 6fd2b434
      Hal Finkel authored
      Reverting this because it breaks static linking on ppc64. Specifically, it may be linkonce_odr functions that are the problem.
      With this patch, if you link statically, calls to some functions end up calling their descriptor addresses instead
      of calling to their entry points. This causes the execution to fail with SIGILL (b/c the descriptor address just
      has some pointers, not code).
      
      llvm-svn: 151433
      6fd2b434
    • NAKAMURA Takumi's avatar
      Target/X86: Fix assertion failures and warnings caused by r151382 _ftol2... · bdf94879
      NAKAMURA Takumi authored
      Target/X86: Fix assertion failures and warnings caused by r151382 _ftol2 lowering for i386-*-win32 targets. Patch by Joe Groff.
      
      [Joe Groff] Hi everyone. My previous patch applied as r151382 had a few problems:
      Clang raised a warning, and X86 LowerOperation would assert out for
      fptoui f64 to i32 because it improperly lowered to an illegal
      BUILD_PAIR. Here's a patch that addresses these issues. Let me know if
      any other changes are necessary. Thanks.
      
      llvm-svn: 151432
      bdf94879
    • Akira Hatanaka's avatar
      Add definitions of floating point multiply add/sub and negative multiply · 60f7a8e7
      Akira Hatanaka authored
      add/sub instructions.
      
      llvm-svn: 151415
      60f7a8e7
  5. Feb 24, 2012
  6. Feb 23, 2012
    • Roman Divacky's avatar
      MCize function entry label emission on PowerPC64 properly. · a2d3608f
      Roman Divacky authored
      llvm-svn: 151278
      a2d3608f
    • Kevin Enderby's avatar
      Updated the llvm-mc disassembler C API to support for the X86 target. · 6fbcd8d4
      Kevin Enderby authored
      rdar://10873652
      
      As part of this I updated the llvm-mc disassembler C API to always call the
      SymbolLookUp call back even if there is no getOpInfo call back.  If there is a
      getOpInfo call back that is tried first and then if that gets no information
      then the  SymbolLookUp is called.  I also made the code more robust by
      memset(3)'ing to zero the LLVMOpInfo1 struct before then setting
      SymbolicOp.Value before for the call to getOpInfo.  And also don't use any
      values from the  LLVMOpInfo1 struct if getOpInfo returns 0.  And also don't
      use any of the ReferenceType or ReferenceName values from SymbolLookUp if it
      returns NULL. rdar://10873563 and rdar://10873683
      
      For the X86 target also fixed bugs so the annotations get printed. 
      
      Also fixed a few places in the ARM target that was not producing symbolic
      operands for some instructions.  rdar://10878166
      
      llvm-svn: 151267
      6fbcd8d4
Loading