Skip to content
  1. Sep 06, 2018
    • Lang Hames's avatar
      [ORC] Make RuntimeDyldObjectLinkingLayer2 take memory managers by unique_ptr. · bf985258
      Lang Hames authored
      The existing memory manager API can not be shared between objects when linking
      concurrently (since there is no way to know which concurrent allocations were
      performed on behalf of which object, and hence which allocations would be safe
      to finalize when finalizeMemory is called). For now, we can work around this by
      requiring a new memory manager for each object.
      
      This change only affects the concurrent version of the ORC APIs.
      
      llvm-svn: 341579
      bf985258
    • Lang Hames's avatar
      [ORC] Remove the mapSectionAddress method from RuntimeDyldObjectLinkingLayer2. · a5f33c86
      Lang Hames authored
      Section address mappings can be applied using the RuntimeDyld instance passed to
      the RuntimeDyld::MemoryManager::notifyObjectLoaded method. Proving an alternate
      route via RuntimeDyldObjectLinkingLayer2 is redundant.
      
      llvm-svn: 341578
      a5f33c86
    • Matt Arsenault's avatar
      AMDGPU: Remove old hack for function addresses · df84dc69
      Matt Arsenault authored
      llvm-svn: 341567
      df84dc69
    • Sanjay Patel's avatar
      [InstCombine] add xor+not folds · 93bd15a0
      Sanjay Patel authored
      This fold is needed to avoid a regression when we try
      to recommit rL300977. 
      We can't see the most basic win currently because 
      demanded bits changes the patterns:
      https://rise4fun.com/Alive/plpp
      
      llvm-svn: 341559
      93bd15a0
    • JF Bastien's avatar
      ARM64: improve non-zero memset isel by ~2x · 29200611
      JF Bastien authored
      Summary:
      I added a few ARM64 memset codegen tests in r341406 and r341493, and annotated
      where the generated code was bad. This patch fixes the majority of the issues by
      requesting that a 2xi64 vector be used for memset of 32 bytes and above.
      
      The patch leaves the former request for f128 unchanged, despite f128
      materialization being suboptimal: doing otherwise runs into other asserts in
      isel and makes this patch too broad.
      
      This patch hides the issue that was present in bzero_40_stack and bzero_72_stack
      because the code now generates in a better order which doesn't have the store
      offset issue. I'm not aware of that issue appearing elsewhere at the moment.
      
      <rdar://problem/44157755>
      
      Reviewers: t.p.northover, MatzeB, javed.absar
      
      Subscribers: eraman, kristof.beyls, chrib, dexonsmith, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D51706
      
      llvm-svn: 341558
      29200611
    • Simon Pilgrim's avatar
      Remove unnecessary semicolon to silence -Wpedantic warning. NFCI. · 6088e851
      Simon Pilgrim authored
      llvm-svn: 341555
      6088e851
    • Alexander Potapenko's avatar
      [MSan] store origins for variadic function parameters in __msan_va_arg_origin_tls · 7f270fcf
      Alexander Potapenko authored
      Add the __msan_va_arg_origin_tls TLS array to keep the origins for variadic function parameters.
      Change the instrumentation pass to store parameter origins in this array.
      
      This is a reland of r341528.
      
      test/msan/vararg.cc doesn't work on Mips, PPC and AArch64 (because this
      patch doesn't touch them), XFAIL these arches.
      Also turned out Clang crashed on i80 vararg arguments because of
      incorrect origin type returned by getOriginPtrForVAArgument() - fixed it
      and added a test.
      
      llvm-svn: 341554
      7f270fcf
    • Sanjay Patel's avatar
      [InstCombine] fix formatting in SimplifyDemandedVectorElts->Select; NFCI · 1a00ffd6
      Sanjay Patel authored
      I'm preparing to add the same functionality both here and to the DAG 
      version of this code in D51696 / D51433, so try to make those cases 
      as similar as possible to avoid bugs.
      
      llvm-svn: 341545
      1a00ffd6
    • Alexander Potapenko's avatar
      [MSan] revert r341528 to unbreak the bots · ac6595bd
      Alexander Potapenko authored
      llvm-svn: 341541
      ac6595bd
    • Florian Hahn's avatar
      [LoopInterchange] Cleanup unused variables. · c51d0882
      Florian Hahn authored
      llvm-svn: 341537
      c51d0882
    • Sven van Haastregt's avatar
      Fix argument type in MachineInstr::hasPropertyInBundle · abe3295c
      Sven van Haastregt authored
      The MCID::Flag enumeration now has more than 32 items, this means that
      the hasPropertyBundle argument 'Mask' can overflow.
      
      This patch changes the argument to be 64 bits instead.
      
      Patch by Mikael Nilsson.
      
      Differential Revision: https://reviews.llvm.org/D51596
      
      llvm-svn: 341536
      abe3295c
    • Florian Hahn's avatar
      [LoopInterchange] Move preheader creation to transform stage and simplify. · 236f6feb
      Florian Hahn authored
      There is no need to create preheaders in the analysis stage, we only
      need them when adjusting the branches. Also, the only cases we need to
      create our own preheaders is when they have more than 1 predecessors or
      PHI nodes (even with only 1 predecessor, we could have an LCSSA phi
      node). I have simplified the conditions and added some assertions to be
      sure. Because we know the inner and outer loop need to be tightly
      nested, it is sufficient to check if the inner loop preheader is the
      outer loop header to check if we need to create a new preheader.
      
      Reviewers: efriedma, mcrosier, karthikthecool
      
      Reviewed By: efriedma
      
      Differential Revision: https://reviews.llvm.org/D51703
      
      llvm-svn: 341533
      236f6feb
    • Max Kazantsev's avatar
      [NFC] Simplify inner structure of InstructionPrecedenceTracking · 6afebe1d
      Max Kazantsev authored
      Currently it has a set KnownBlocks that marks blocks as having cached
      answers and a map FirstSpecialInsts that maps these blocks to first
      special instructions in them. The value in the map is always non-null,
      and for blocks that are known to have no special instructions the map
      does not have an instance.
      
      This patch removes KnownBlocks as obsolete. Instead, for blocks that
      are known to have no special instructions, we just put a nullptr value.
      This makes the code much easier to read.
      
      llvm-svn: 341531
      6afebe1d
    • Alexander Potapenko's avatar
      [MSan] store origins for variadic function parameters in __msan_va_arg_origin_tls · 1a10ae0d
      Alexander Potapenko authored
      Add the __msan_va_arg_origin_tls TLS array to keep the origins for
      variadic function parameters.
      Change the instrumentation pass to store parameter origins in this array.
      
      llvm-svn: 341528
      1a10ae0d
    • David Green's avatar
      [SLC] Add an alignment to CreateGlobalString · e6918ca2
      David Green authored
      Previously the alignment on the newly created global strings was not set,
      meaning that DataLayout::getPreferredAlignment was free to overalign it
      to 16 bytes. This caused unnecessary code bloat with the padding between
      variables.
      
      The main example of this happening was the printf->puts optimisation in
      SimplifyLibCalls, but as the change here is made in
      IRBuilderBase::CreateGlobalString, other globals using this will now be
      aligned too.
      
      Differential Revision: https://reviews.llvm.org/D51410
      
      llvm-svn: 341527
      e6918ca2
    • Max Kazantsev's avatar
      Return "[NFC] Add severe validation of InstructionPrecedenceTracking" · 8a9e059e
      Max Kazantsev authored
      This validation patch has been reverted as rL341147 because of conserns raised by
      @reames. This revision returns it as is to raise a discussion and address the concerns.
      
      Differential Revision: https://reviews.llvm.org/D51523
      Reviewed By: reames
      
      llvm-svn: 341526
      8a9e059e
    • Alexander Potapenko's avatar
      [MSan] Make sure variadic function arguments do not overflow __msan_va_arg_tls · d518c5fc
      Alexander Potapenko authored
      Turns out that calling a variadic function with too many (e.g. >100 i64's)
      arguments overflows __msan_va_arg_tls, which leads to smashing other TLS
      data with function argument shadow values.
      
      getShadow() already checks for kParamTLSSize and returns clean shadow if
      the argument does not fit, so just skip storing argument shadow for such
      arguments.
      
      llvm-svn: 341525
      d518c5fc
    • Dean Michael Berris's avatar
      [XRay] Add a BlockIndexer visitor for FDR Records. · 02f097e1
      Dean Michael Berris authored
      Summary:
      This change adds a `BlockIndexer` type which maintains pointers to
      records that belong to the same process+thread pairs. The indexing
      happens with order of appearance of records as they are visited.
      
      This version of the indexer currently only supports FDR version 3 logs,
      which contain `BufferExtent` records. We will add support for v2 and v1
      logs in follow-up patches.
      
      This is another part of D50441.
      
      Reviewers: eizan, kpw, mboerger
      
      Reviewed By: mboerger
      
      Subscribers: mboerger, mgorny, hiraditya, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D51673
      
      llvm-svn: 341518
      02f097e1
    • Max Kazantsev's avatar
      f9015406
    • Max Kazantsev's avatar
      [IndVars] Turn isValidRewrite into an assertion · 51690c4f
      Max Kazantsev authored
      Function rewriteLoopExitValues contains a check on isValidRewrite which
      is needed to make sure that SCEV does not convert the pattern
      `gep Base, (&p[n] - &p[0])` into `gep &p[n], Base - &p[0]`. This problem
      has been fixed in SCEV long ago, so this check is just obsolete.
      
      This patch converts it into an assertion to make sure that the SCEV will
      not mess up this case in the future.
      
      Differential Revision: https://reviews.llvm.org/D51582
      Reviewed By: atrick
      
      llvm-svn: 341516
      51690c4f
    • Hsiangkai Wang's avatar
      [DebugInfo] Do not generate label debug info if it has been processed. · 760c1ab1
      Hsiangkai Wang authored
      In DwarfDebug::collectEntityInfo(), if the label entity is processed in
      DbgLabels list, it means the label is not optimized out. There is no
      need to generate debug info for it with null position.
      
      llvm-svn: 341513
      760c1ab1
    • Craig Topper's avatar
      [X86][Assembler] Allow %eip as a register in 32-bit mode for .cfi directives. · 5a53760f
      Craig Topper authored
      This basically reverts a change made in r336217, but improves the text of the error message for not allowing IP-relative addressing in 32-bit mode.
      
      Fixes PR38826.
      
      Patch by Iain Sandoe.
      
      llvm-svn: 341512
      5a53760f
    • Zachary Turner's avatar
      Fix some warnings. · 5cda1b80
      Zachary Turner authored
      llvm-svn: 341508
      5cda1b80
    • Zachary Turner's avatar
      Fix silly error in unittest helper. · 9ec23049
      Zachary Turner authored
      llvm-svn: 341505
      9ec23049
    • JF Bastien's avatar
      NFC: improve ARM64 isFPImmLegal debug print · da33900b
      JF Bastien authored
      Forking this change from D51706. This just made it easier to understand llc
      output with -debug.
      
      llvm-svn: 341504
      da33900b
    • Zachary Turner's avatar
      [PDB] Refactor the PDB symbol classes to fix a reuse bug. · 7999b4fa
      Zachary Turner authored
      The way DIA SDK works is that when you request a symbol, it
      gets assigned an internal identifier that is unique for the
      life of the session.  You can then use this identifier to
      get back the same symbol, with all of the same internal state
      that it had before, even if you "destroyed" the original
      copy of the object you had.
      
      This didn't work properly in our native implementation, and
      if you destroyed an object for a particular symbol, then
      requested the same symbol again, it would get assigned a new
      ID and you'd get a fresh copy of the object.  In order to fix
      this some refactoring had to happen to properly reuse cached
      objects.  Some unittests are added to verify that symbol
      reuse is taking place, making use of the new unittest input
      feature.
      
      llvm-svn: 341503
      7999b4fa
    • Zachary Turner's avatar
      Add support for unittest inputs. · e9f1df84
      Zachary Turner authored
      Occasionally it is useful to have unittest which take inputs.
      While we normally try to have this test be more of a lit test
      we occasionally don't have tools that can exercise the code
      in the right way to test certain things.  LLDB has been using
      this style of unit test for a while, particularly with regards
      to how it tests core dump and minidump file parsing.  Recently
      i needed this as well for the case where we want to test that
      some of the PDB reading code works correctly.  It needs to
      exercise the code in a way that is not covered by any dumper
      and would be impractical to implement in one of the dumpers,
      but requires a valid PDB file.  Since this is now needed by
      more than one project, it makes sense to have this be a
      generally supported thing that unit tests can do, and we just
      encourage people to use this sparingly.
      
      Differential Revision: https://reviews.llvm.org/D51561
      
      llvm-svn: 341502
      e9f1df84
  2. Sep 05, 2018
    • Nico Weber's avatar
      Handle zero-length debug directory entries. · 893c6469
      Nico Weber authored
      Part of https://reviews.llvm.org/D51652 (tests will be in the lld repo)
      
      llvm-svn: 341485
      893c6469
    • Sanjay Patel's avatar
      [DAGCombiner] try to convert pow(x, 0.25) to sqrt(sqrt(x)) · dbf52837
      Sanjay Patel authored
      This was proposed as an IR transform in D49306, but it was not clearly justifiable as a canonicalization. 
      Here, we only do the transform when the target tells us that sqrt can be lowered with inline code.
      
      This is the basic case. Some potential enhancements are in the TODO comments:
      
      1. Generalize the transform for other exponents (allow more than 2 sqrt calcs if that's really cheaper).
      2. If we have less fast-math-flags, generate code to avoid -0.0 and/or INF.
      3. Allow the transform when optimizing/minimizing size (might require a target hook to get that right).
      
      Note that by default, x86 converts single-precision sqrt calcs into sqrt reciprocal estimate with 
      refinement. That codegen is controlled by CPU attributes and can be manually overridden. We have plenty 
      of test coverage for that already, so I didn't bother to include extra testing for that here. AArch uses 
      its full-precision ops in all cases (not sure if that's the intended behavior or not, but that should 
      also be covered by existing tests).
      
      Differential Revision: https://reviews.llvm.org/D51630 
      
      llvm-svn: 341481
      dbf52837
    • Krzysztof Parzyszek's avatar
      [Hexagon] Ignore unnamed globals in HexagonConstExtenders · 31f2517d
      Krzysztof Parzyszek authored
      This replaces r337723. The global list in the module can be huge with LTO,
      plus the module can change between different invocations of the pass, so
      there is no easy way to deterministically cache the ordering (especially
      in the presence of multiple threads).
      
      llvm-svn: 341478
      31f2517d
    • Benjamin Kramer's avatar
      [ControlHeightReduction] Remove unused includes · 9abad481
      Benjamin Kramer authored
      Also clang-format them.
      
      llvm-svn: 341468
      9abad481
    • Benjamin Kramer's avatar
      [Aggressive InstCombine] Move C bindings to their own header file. · 837f93af
      Benjamin Kramer authored
      llvm-svn: 341461
      837f93af
    • Jonas Devlieghere's avatar
      [DebugInfo] Normalize common kinds of DWARF sub-expressions. · 965b598b
      Jonas Devlieghere authored
      Normalize common kinds of DWARF sub-expressions to make debug info
      encoding a bit more compact:
      
        DW_OP_constu [X < 32] -> DW_OP_litX
        DW_OP_constu [all ones] -> DW_OP_lit0, DW_OP_not (64-bit only)
      
      Differential revision: https://reviews.llvm.org/D51640
      
      llvm-svn: 341457
      965b598b
    • Sander de Smalen's avatar
      Remove FrameAccess struct from hasLoadFromStackSlot · c91b27d9
      Sander de Smalen authored
      This removes the FrameAccess struct that was added to the interface
      in D51537, since the PseudoValue from the MachineMemoryOperand
      can be safely casted to a FixedStackPseudoSourceValue.
      
      Reviewers: MatzeB, thegameg, javed.absar
      
      Reviewed By: thegameg
      
      Differential Revision: https://reviews.llvm.org/D51617
      
      llvm-svn: 341454
      c91b27d9
    • Dean Michael Berris's avatar
      [XRay] Add a RecordPrinter visitor for FDR Records · fbc59d92
      Dean Michael Berris authored
      Summary:
      This change adds a `RecordPrinter` type which does some basic text
      serialization of the FDR record instances. This is one component of the
      tool we're building to dump the records from an FDR mode log as-is.
      
      This is a small part of D50441.
      
      Reviewers: eizan, kpw
      
      Subscribers: mgorny, hiraditya, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D51672
      
      llvm-svn: 341447
      fbc59d92
    • Hsiangkai Wang's avatar
      [DebugInfo] Fix bug in LiveDebugVariables. · b2b7f5f6
      Hsiangkai Wang authored
      In lib/CodeGen/LiveDebugVariables.cpp, it uses std::prev(MBBI) to
      get DebugValue's SlotIndex. However, the previous instruction may be
      also a debug instruction. It could not use a debug instruction to query
      SlotIndex in mi2iMap.
      
      Scan all debug instructions and use the first debug instruction to query
      SlotIndex for following debug instructions. Only handle DBG_VALUE in
      handleDebugValue().
      
      Differential Revision: https://reviews.llvm.org/D50621
      
      llvm-svn: 341446
      b2b7f5f6
    • Richard Trieu's avatar
      Prevent unsigned overflow. · 47c2bc58
      Richard Trieu authored
      The sum of the weights is caculated in an APInt, which has a width smaller than
      64.  In certain cases, the sum of the widths would overflow when calculations
      are done inside an APInt, but would not if done with uint64_t.  Since the
      values will be passed as uint64_t in the function call anyways, do all the math
      in 64 bits.  Also added an assert in case the probabilities overflow 64 bits.
      
      llvm-svn: 341444
      47c2bc58
    • Fangrui Song's avatar
      Fix -Wunused-function in release build after rL341386 · c8f348cb
      Fangrui Song authored
      llvm-svn: 341443
      c8f348cb
    • Heejin Ahn's avatar
      [WebAssembly] clang-format (NFC) · f208f631
      Heejin Ahn authored
      Summary: This patch runs clang-format on all wasm-only files.
      
      Reviewers: aardappel, dschuff, sunfish, tlively
      
      Subscribers: MatzeB, sbc100, jgravelle-google, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D51447
      
      llvm-svn: 341439
      f208f631
    • Reid Kleckner's avatar
      [Windows] Convert from UTF-8 to UTF-16 when writing to a Windows console · 2b8c6920
      Reid Kleckner authored
      Summary:
      Calling WriteConsoleW is the most reliable way to print Unicode
      characters to a Windows console.
      
      If binary data gets printed to the console, attempting to re-encode it
      shouldn't be a problem, since garbage in can produce garbage out.
      
      This breaks printing strings in the local codepage, which WriteConsoleA
      knows how to handle. For example, this can happen when user source code
      is encoded with the local codepage, and an LLVM tool quotes it while
      emitting a caret diagnostic. This is unfortunate, but well-behaved tools
      should validate that their input is UTF-8 and escape non-UTF-8
      characters before sending them to raw_fd_ostream. Clang already does
      this, but not all LLVM tools do this.
      
      One drawback to the current implementation is printing a string a byte
      at a time doesn't work. Consider this LLVM code:
        for (char C : MyStr) outs() << C;
      
      Because outs() is now unbuffered, we wil try to convert each byte to
      UTF-16, which will fail. However, this already didn't work, so I think
      we may as well update callers that do that as we find them to print
      complete portions of strings. You can see a real example of this in my
      patch to SourceMgr.cpp
      
      Fixes PR38669 and PR36267.
      
      Reviewers: zturner, efriedma
      
      Subscribers: llvm-commits, hiraditya
      
      Differential Revision: https://reviews.llvm.org/D51558
      
      llvm-svn: 341433
      2b8c6920
Loading