Skip to content
  1. Aug 29, 2018
  2. Aug 28, 2018
    • Lang Hames's avatar
      [ORC] Replace lookupFlags in JITSymbolResolver with getResponsibilitySet. · 6cadc7c0
      Lang Hames authored
      The new method name/behavior more closely models the way it was being used.
      It also fixes an assertion that can occur when using the new ORC Core APIs,
      where flags alone don't necessarily provide enough context to decide whether
      the caller is responsible for materializing a given symbol (which was always
      the reason this API existed).
      
      The default implementation of getResponsibilitySet uses lookupFlags to determine
      responsibility as before, so existing JITSymbolResolvers should continue to
      work.
      
      llvm-svn: 340874
      6cadc7c0
    • Yaxun Liu's avatar
      [HIP] Fix output file extension · ac8ccd58
      Yaxun Liu authored
      OffloadBundlingJobAction constructor accepts a list of JobAction as inputs.
      The host JobAction is the last one. The file type of OffloadBundlingJobAction
      should be determined by the host JobAction (the last one) instead of the first
      one.
      
      Since HIP emits LLVM bitcode for device compilation, device JobAction has
      different file type as host Job Action. This bug causes incorrect output file
      extension for HIP.
      
      This patch fixes it by using the last input JobAction (host JobAction) to determine
      file type of OffloadBundlingJobAction.
      
      Differential Revision: https://reviews.llvm.org/D51336
      
      llvm-svn: 340873
      ac8ccd58
    • Fedor Sergeev's avatar
      [NFC][PassTiming] factor out generic PassTimingInfo · 43083111
      Fedor Sergeev authored
      Moving PassTimingInfo from legacy pass manager code into a separate header.
      Making it suitable for both legacy and new pass manager.
      Adding a test on -time-passes main functionality.
      
      llvm-svn: 340872
      43083111
    • Alina Sbirlea's avatar
      [SimpleLoopUnswitch] Form dedicated exits after trivial unswitches. · 52e97a28
      Alina Sbirlea authored
      Summary:
      Form dedicated exits after trivial unswitches.
      Fixes PR38737, PR38283.
      
      Reviewers: chandlerc, fedor.sergeev
      
      Subscribers: sanjoy, jlebar, uabelho, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D51375
      
      llvm-svn: 340871
      52e97a28
    • Lang Hames's avatar
      [ORC] Add an addObjectFile method to LLJIT. · 37a66413
      Lang Hames authored
      The addObjectFile method adds the given object file to the JIT session, making
      its code available for execution.
      
      Support for the -extra-object flag is added to lli when operating in
      -jit-kind=orc-lazy mode to support testing of this feature.
      
      llvm-svn: 340870
      37a66413
    • Craig Topper's avatar
      [X86] Add intrinsics for KADD instructions · 9401fd0e
      Craig Topper authored
      These are intrinsics for supporting kadd builtins in clang. These builtins are already in gcc to implement intrinsics from icc. Though they are missing from the Intel Intrinsics Guide.
      
      This instruction adds two mask registers together as if they were scalar rather than a vXi1. We might be able to get away with a bitcast to scalar and a normal add instruction, but that would require DAG combine smarts in the backend to recoqnize add+bitcast. For now I'd prefer to go with the easiest implementation so we can get these builtins in to clang with good codegen.
      
      Differential Revision: https://reviews.llvm.org/D51370
      
      llvm-svn: 340869
      9401fd0e
    • Fangrui Song's avatar
      [AMDGPU] Fix -Wunused-variable when -DLLVM_ENABLE_ASSERTIONS=off · 9cca227d
      Fangrui Song authored
      llvm-svn: 340868
      9cca227d
    • Matt Morehouse's avatar
      Revert "[libFuzzer] Port to Windows" · bab8556f
      Matt Morehouse authored
      This reverts commit r340860 due to failing tests.
      
      llvm-svn: 340867
      bab8556f
    • Matt Arsenault's avatar
      AMDGPU: Don't delete instructions if S_ENDPGM has implicit uses · 755f41f3
      Matt Arsenault authored
      This can leave behind the uses with the defs removed.
      Since this should only really happen in tests, it's not worth the
      effort of trying to handle this.
      
      llvm-svn: 340866
      755f41f3
    • Aditya Nandakumar's avatar
      [GISel]: Add missing opcodes for overflow intrinsics · 6b4d343e
      Aditya Nandakumar authored
      https://reviews.llvm.org/D51197
      
      Currently, IRTranslator (and GISel) seems to be arbitrarily picking
      which overflow intrinsics get mapped into opcodes which either have a
      carry as an input or not.
      For intrinsics such as Intrinsic::uadd_with_overflow, translate it to an
      opcode (G_UADDO) which doesn't have any carry inputs (similar to LLVM
      IR).
      
      This patch adds 4 missing opcodes for completeness - G_UADDO, G_USUBO,
      G_SSUBE and G_SADDE.
      
      llvm-svn: 340865
      6b4d343e
    • Thomas Lively's avatar
      [WebAssembly][NFC] Document stackifier tablegen backend · adb6da10
      Thomas Lively authored
      Summary:
      Add comments to help readers avoid having to read tablegen backends to
      understand the code. Also remove unecessary breaks from the output.
      
      Reviewers: dschuff, aheejin
      
      Subscribers: sbc100, jgravelle-google, sunfish, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D51371
      
      llvm-svn: 340864
      adb6da10
Loading