Skip to content
  1. May 08, 2018
    • Sam Clegg's avatar
      [WebAssembly] MC: Use existing MCSymbol.Index field rather than inventing extra mapping · 25d8e68b
      Sam Clegg authored
      MCSymbol has getIndex/setIndex which are implementation defined
      and on other platforms are used to store the symbol table
      index.  It makes sense to use this rather than invent a new
      mapping.
      
      Differential Revision: https://reviews.llvm.org/D46555
      
      llvm-svn: 331705
      25d8e68b
    • Sam Clegg's avatar
      [MC] ELFObjectWriter: Removing unneeded variable and cast · 22c568ba
      Sam Clegg authored
      Differential Revision: https://reviews.llvm.org/D46289
      
      llvm-svn: 331704
      22c568ba
    • Chandler Carruth's avatar
      Revert r330742: Let TableGen write output only if it changed, instead of doing so in cmake. · 029cea90
      Chandler Carruth authored
      This change causes us to re-run tablegen for every single target on
      every single build. This is much, much worse than the problem being
      fixed AFAICT.
      
      On my system, it makes a clean rebuild of `llc` with nothing changed go
      from .5s to over 8s. On systems with less parallelism, slower file
      systems, or high process startup overhead this will be even more
      extreme.
      
      The only way I see this could be a win is in clean builds where we churn
      the filesystem. But I think incremental rebuild is more important, and
      so if we want to re-instate this, it needs to be done in a way that
      doesn't trigger constant re-runs of tablegen.
      
      llvm-svn: 331702
      029cea90
    • Roman Tereshin's avatar
      [MachineVerifier][GlobalISel] Checking that generic instrs have LLTs on all vregs · d29fc892
      Roman Tereshin authored
      Every generic machine instruction must have generic virtual registers
      only, that is, have a low-level type attached to each operand.
      
      Previously MachineVerifier would catch a type missing on an operand
      only if the previous operand for the the same type index exists and
      have a type attached to it and it will report it as a type mismatch.
      This is incosistent behaviour and a misleading error message.
      
      This commit makes sure MachineVerifier explicitly checks that the
      types are there for every operand and if not provides a
      straightforward error message.
      
      Reviewers: qcolombet t.p.northover bogner ab
      
      Reviewed By: qcolombet
      
      Subscribers: rovka, kristof.beyls, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46455
      
      llvm-svn: 331694
      d29fc892
    • Roman Tereshin's avatar
      [MachineVerifier][GlobalISel] NFC, Improving MO printing and refactoring visitMachineInstrBefore · f487edae
      Roman Tereshin authored
      This is an NFC pre-commit for the following "Checking that generic
      instrs have LLTs on all vregs" commit.
      
      This overloads MachineOperand::print to make it possible to print LLTs
      with standalone machine operands.
      
      This also overloads MachineVerifier::print(...MachineOperand...) with
      an optional LLT using the newly introduced MachineOperand::print
      variant; no actual calls added.
      
      This also refactors MachineVerifier::visitMachineInstrBefore in the
      parts dealing with all generic instructions (checking Selected
      property, LLTs, and phys regs).
      
      llvm-svn: 331693
      f487edae
    • Tom Stellard's avatar
      AMDGPU/GlobalISel: Don't try to lower hull shaders · 37444285
      Tom Stellard authored
      Summary: The AMDGPU_HS calling convention is not supported yet.
      
      Reviewers: arsenm, nhaehnle
      
      Subscribers: kzhuravl, wdng, yaxunl, rovka, kristof.beyls, dstuttard, tpr, t-tye, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46149
      
      llvm-svn: 331691
      37444285
  2. May 07, 2018
  3. May 06, 2018
  4. May 05, 2018
    • Daniel Sanders's avatar
      [globalisel] Update GlobalISel emitter to match new representation of extending loads · f84bc379
      Daniel Sanders authored
      Summary:
      Previously, a extending load was represented at (G_*EXT (G_LOAD x)).
      This had a few drawbacks:
      * G_LOAD had to be legal for all sizes you could extend from, even if
        registers didn't naturally hold those sizes.
      * All sizes you could extend from had to be allocatable just in case the
        extend went missing (e.g. by optimization).
      * At minimum, G_*EXT and G_TRUNC had to be legal for these sizes. As we
        improve optimization of extends and truncates, this legality requirement
        would spread without considerable care w.r.t when certain combines were
        permitted.
      * The SelectionDAG importer required some ugly and fragile pattern
        rewriting to translate patterns into this style.
      
      This patch changes the representation to:
      * (G_[SZ]EXTLOAD x)
      * (G_LOAD x) any-extends when MMO.getSize() * 8 < ResultTy.getSizeInBits()
      which resolves these issues by allowing targets to work entirely in their
      native register sizes, and by having a more direct translation from
      SelectionDAG patterns.
      
      Each extending load can be lowered by the legalizer into separate extends
      and loads, however a target that supports s1 will need the any-extending
      load to extend to at least s8 since LLVM does not represent memory accesses
      smaller than 8 bit. The legalizer can widenScalar G_LOAD into an
      any-extending load but sign/zero-extending loads need help from something
      else like a combiner pass. A follow-up patch that adds combiner helpers for
      for this will follow.
      
      The new representation requires that the MMO correctly reflect the memory
      access so this has been corrected in a couple tests. I've also moved the
      extending loads to their own tests since they are (mostly) separate opcodes
      now. Additionally, the re-write appears to have invalidated two tests from
      select-with-no-legality-check.mir since the matcher table no longer contains
      loads that result in s1's and they aren't legal in AArch64 anymore.
      
      Depends on D45540
      
      Reviewers: ab, aditya_nandakumar, bogner, rtereshin, volkan, rovka, javed.absar
      
      Reviewed By: rtereshin
      
      Subscribers: javed.absar, llvm-commits, kristof.beyls
      
      Differential Revision: https://reviews.llvm.org/D45541
      
      llvm-svn: 331601
      f84bc379
    • Heejin Ahn's avatar
      [MIRPraser] Improve error checking for typed immediate operands · c86da6bc
      Heejin Ahn authored
      Summary:
      This improves error checks for typed immediate operands introduced in
      D45948 (rL331586), and removes a code block copied by mistake.
      
      Reviewers: rtereshin
      
      Subscribers: dschuff, sbc100, jgravelle-google, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46491
      
      llvm-svn: 331600
      c86da6bc
    • Fangrui Song's avatar
      Simplify LLVM_ATTRIBUTE_USED call sites. · 862eebb6
      Fangrui Song authored
      llvm-svn: 331599
      862eebb6
    • Roman Lebedev's avatar
      [DAGCombiner] Masked merge: don't touch "not" xor's. · a3b0b59f
      Roman Lebedev authored
      Summary:
      Split off form D46031.
      
      It seems we don't want to transform the pattern if the `xor`'s are actually `not`'s.
      In vector case, this breaks `andnpd` / `vandnps` patterns.
      
      That being said, we may want to re-visit this `not` handling, maybe in D46073.
      
      Reviewers: spatel, craig.topper, javed.absar
      
      Reviewed By: spatel
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46492
      
      llvm-svn: 331595
      a3b0b59f
    • Teresa Johnson's avatar
      [LTO] Handle Task=-1 passed to addSaveTemps · 81d92073
      Teresa Johnson authored
      Summary:
      This change is necessary for D46464, which will pass -1 as the Task
      ID for distributed backends, so that the save temps files don't end
      up with "4294967295" in their path. For distributed back ends, when -1
      is passed, don't append any Task ID.
      
      An existing test (tools/clang/test/CodeGen/thinlto_backend.ll) will
      fail without this change after D46464.
      
      Reviewers: pcc
      
      Subscribers: mehdi_amini, inglorion, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D46488
      
      llvm-svn: 331591
      81d92073
    • Roman Lebedev's avatar
      [NFC][DagCombiner] unfoldMaskedMerge(): improve readability. · 49ada82f
      Roman Lebedev authored
      llvm-svn: 331588
      49ada82f
    • Piotr Padlewski's avatar
      [CaptureTracking] Handle capturing of launder.invariant.group · e9832dfd
      Piotr Padlewski authored
      Summary:
      launder.invariant.group has the same rules of capturing as
      bitcast, gep, etc - the original value is not captured
      if the returned pointer is not captured.
      
      With this patch, we mark 40% more functions as noalias when compiling with -fstrict-vtable-pointers;
      1078 vs 1778  (39.37%)
      
      Reviewers: sanjoy, davide, nlewycky, majnemer, mehdi_amini
      
      Subscribers: JDevlieghere, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D32673
      
      llvm-svn: 331587
      e9832dfd
    • Heejin Ahn's avatar
      [MIRParser] Allow register class names in the form of integer/scalar · c2ad0968
      Heejin Ahn authored
      Summary:
      The current code cannot handle register class names like 'i32', which is
      a valid register class name in WebAssembly. This patch removes special
      handling for integer/scalar/pointer type parsing and treats them as
      normal identifiers.
      
      Reviewers: thegameg
      
      Subscribers: jfb, dschuff, sbc100, jgravelle-google, sunfish, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D45948
      
      llvm-svn: 331586
      c2ad0968
    • George Burgess IV's avatar
      Range-ify for loop; NFC · f9d26af4
      George Burgess IV authored
      llvm-svn: 331582
      f9d26af4
    • Craig Topper's avatar
      Fix a bunch of places where operator-> was used directly on the return from dyn_cast. · 781aa181
      Craig Topper authored
      Inspired by r331508, I did a grep and found these.
      
      Mostly just change from dyn_cast to cast. Some cases also showed a dyn_cast result being converted to bool, so those I changed to isa.
      
      llvm-svn: 331577
      781aa181
    • Peter Collingbourne's avatar
      LowerTypeTests: Fix non-determinism in code that handles icall branch funnels. · e04ecc88
      Peter Collingbourne authored
      This was exposed by enabling expensive checks, which causes llvm::sort
      to sort randomly.
      
      Differential Revision: https://reviews.llvm.org/D45901
      
      llvm-svn: 331573
      e04ecc88
    • Teresa Johnson's avatar
      [LTO] Allow pass remarks with hotness to be set when emitting to stderr · b77ab096
      Teresa Johnson authored
      Summary:
      Set setDiagnosticsHotnessRequested before the early exit check for a
      diagnostic output file, so that pass remarks with hotness works when
      emitting pass remarks to stderr (e.g. via -pass-remarks=.).
      
      Also fix the llvm-lto2 diagnistic handler so that it only calls exit(1)
      when the diagnistic is an error type. Otherwise the new test invocation
      of llvm-lto2 with -pass-remarks causes it to fail. The new code is
      consistent with the diagnostic handler elsewhere (e.g. on the
      LLVMContext).
      
      Reviewers: pcc, davide
      
      Subscribers: fhahn, mehdi_amini, llvm-commits, inglorion
      
      Differential Revision: https://reviews.llvm.org/D46387
      
      llvm-svn: 331569
      b77ab096
    • Michael Berg's avatar
      Mapping SDNode flags to MachineInstr flags · 2dcf12ff
      Michael Berg authored
      Summary: Providing the glue to map SDNode fast math sub flags to MachineInstr fast math sub flags.
      
      Reviewers: spatel, arsenm, wristow
      
      Reviewed By: spatel
      
      Subscribers: wdng
      
      Differential Revision: https://reviews.llvm.org/D46447
      
      llvm-svn: 331567
      2dcf12ff
Loading