Skip to content
  1. Jan 29, 2019
    • Bjorn Pettersson's avatar
      [IPCP] Don't crash due to arg count/type mismatch between caller/callee · d014d576
      Bjorn Pettersson authored
      Summary:
      This patch avoids an assert in IPConstantPropagation when
      there is a argument count/type mismatch between the caller and
      the callee.
      
      While this is actually UB on C-level (clang emits a warning),
      the IR verifier seems to accept it. I'm not sure what other
      frontends/languages might think about this, so simply bailing out
      to avoid hitting an assert (in CallSiteBase<>::getArgOperand or
      Value::doRAUW) seems like a simple solution.
      
      The problem is exposed by the fact that AbstractCallSites will look
      through a bitcast at the callee position of a call/invoke.
      
      Reviewers: jdoerfert, reames, efriedma
      
      Reviewed By: jdoerfert, efriedma
      
      Subscribers: eli.friedman, efriedma, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D57052
      
      llvm-svn: 352469
      d014d576
    • Jeremy Morse's avatar
      [DebugInfo][DAG] Process FrameIndex dbg.values unconditionally · 66ac86b5
      Jeremy Morse authored
      A FrameIndex should be valid throughout a block regardless of what instructions
      get selected in that block -- therefore we shouldn't harness dbg.values that
      refer to FrameIndexes to an SDNode. There are numerous codegen reasons why
      an SDNode never appears or doesn't become a location that a DBG_VALUE can
      refer to. None of them actually affect the variable location.
      
      Therefore, before any other tests to encode dbg_values in a SelectionDAG,
      identify FrameIndex operands and encode them unattached to any SDNode.
      
      Differential Revision: https://reviews.llvm.org/D57328
      
      llvm-svn: 352467
      66ac86b5
    • Max Kazantsev's avatar
      [NFC] Use ArrayRef instead of SmallVectorImpl where possible · 23e64224
      Max Kazantsev authored
      llvm-svn: 352466
      23e64224
    • Martin Storsjö's avatar
      [COFF, ARM64] Don't put jump table into a separate COFF section for EK_LabelDifference32 · f5884d25
      Martin Storsjö authored
      Windows ARM64 has PIC relocation model and uses jump table kind
      EK_LabelDifference32. This produces jump table entry as
      ".word LBB123 - LJTI1_2" which represents the distance between the block
      and jump table.
      
      A new relocation type (IMAGE_REL_ARM64_REL32) is needed to do the fixup
      correctly if they are in different COFF section.
      
      This change saves the jump table to the same COFF section as the
      associated code. An ideal fix could be utilizing IMAGE_REL_ARM64_REL32
      relocation type.
      
      Patch by Tom Tan!
      
      Differential Revision: https://reviews.llvm.org/D57277
      
      llvm-svn: 352465
      f5884d25
    • Jonas Paulsson's avatar
      [CodeGenPrepare] Handle all debug calls in dupRetToEnableTailCallOpts() · 5ed4d463
      Jonas Paulsson authored
      This patch makes sure that a debug value that is after the bitcast in
      dupRetToEnableTailCallOpts() is also skipped.
      
      The reduced test case is from SPEC-2006 on SystemZ.
      
      Review: Vedant Kumar, Wolfgang Pieb
      https://reviews.llvm.org/D57050
      
      llvm-svn: 352462
      5ed4d463
    • Mikael Holmen's avatar
      Fix compiler warning when using clang 3.6.0 · b792627c
      Mikael Holmen authored
      Without the fix we get the following (with -Werror):
      
      ../lib/Target/X86/X86ISelLowering.cpp:14181:58: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces]
        SmallVector<std::array<int, 2>, 2> LaneSrcs(NumLanes, {-1, -1});
                                                               ^~~~~~
                                                               {     }
      1 error generated.
      
      llvm-svn: 352455
      b792627c
    • Max Kazantsev's avatar
      [SCEV] Take correct loop in AddRec simplification. PR40420 · 468ad522
      Max Kazantsev authored
      The code of AddRec simplification is using wrong loop when it creates a new
      AddRecExpr. It should be using AddRecLoop which we have saved and against which
      all gate checks are made, and not calling AddRec->getLoop() over and over
      again because AddRec may change and become an AddRecurrency from outer loop
      during the transform iterations.
      
      Considering this change trivial, commiting for postcommit review.
      
      llvm-svn: 352451
      468ad522
    • Sam Clegg's avatar
      [WebAssembly] Handle more types of uses in WebAssemblyAddMissingPrototypes · b54927cc
      Sam Clegg authored
      Previously we were only handling bitcast operations, however
      prototypeless functions can also appear in other places such as
      comparisons and as function params.
      
      Switch to using replaceAllUsesWith() to replace the prototype-less
      function uses.  This new approach results in some redundant bitcasting
      but is much simpler and handles all cases.
      
      Differential Revision: https://reviews.llvm.org/D56938
      
      llvm-svn: 352445
      b54927cc
    • Reid Kleckner's avatar
      [PPC] Include tablegenerated PPCGenCallingConv.inc once · 85e72c3d
      Reid Kleckner authored
      Move the CC analysis implementation to its own .cpp file instead of
      duplicating it and artificually using functions in PPCISelLowering.cpp
      and PPCFastISel.cpp. Follow-up to the same change done for X86, ARM, and
      AArch64.
      
      llvm-svn: 352444
      85e72c3d
    • Thomas Lively's avatar
      [WebAssembly] Expand BUILD_PAIR nodes · 33f87b8a
      Thomas Lively authored
      Reviewers: aheejin
      
      Subscribers: dschuff, sbc100, jgravelle-google, hiraditya, sunfish
      
      Differential Revision: https://reviews.llvm.org/D57276
      
      llvm-svn: 352442
      33f87b8a
    • Teresa Johnson's avatar
      [ThinLTO] Add option to dump per-module summary dot graph · 2f616e47
      Teresa Johnson authored
      Summary:
      I found that there currently isn't a way to invoke exportToDot from
      the command line for a per-module summary index, and therefore no
      testing of that case. Add an internal option and use it to test dumping
      of per module summary indexes.
      
      In particular, I am looking at fixing the limitation that causes the
      aliasee GUID in the per-module summary to be 0, and want to be able to
      test that change.
      
      Reviewers: evgeny777
      
      Subscribers: mehdi_amini, inglorion, eraman, steven_wu, dexonsmith, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D57206
      
      llvm-svn: 352441
      2f616e47
    • Philip Reames's avatar
      Demanded elements support for vector GEPs · 6c5341bc
      Philip Reames authored
      GEPs can produce either scalar or vector results. If we're extracting only a subset of the vector lanes, simplifying the operands is helpful in eliminating redundant computation, and (eventually) allowing further optimizations
      
      Differential Revision: https://reviews.llvm.org/D57177
      
      llvm-svn: 352440
      6c5341bc
  2. Jan 28, 2019
Loading