Skip to content
  1. Feb 26, 2018
    • Stephan T. Lavavej's avatar
      [libcxx] [test] Fix MSVC warnings and errors. · c1fcd97e
      Stephan T. Lavavej authored
      test/std/numerics/numeric.ops/exclusive.scan/exclusive_scan.pass.cpp
      test/std/numerics/numeric.ops/exclusive.scan/exclusive_scan_init_op.pass.cpp
      test/std/numerics/numeric.ops/inclusive.scan/inclusive_scan.pass.cpp
      test/std/numerics/numeric.ops/inclusive.scan/inclusive_scan_op.pass.cpp
      test/std/numerics/numeric.ops/inclusive.scan/inclusive_scan_op_init.pass.cpp
      test/std/numerics/numeric.ops/transform.exclusive.scan/transform_exclusive_scan_init_bop_uop.pass.cpp
      test/std/numerics/numeric.ops/transform.inclusive.scan/transform_inclusive_scan_bop_uop.pass.cpp
      test/std/numerics/numeric.ops/transform.inclusive.scan/transform_inclusive_scan_bop_uop_init.pass.cpp
      Fix MSVC x64 truncation warnings.
      warning C4267: conversion from 'size_t' to 'int', possible loss of data
      
      test/std/strings/basic.string/string.modifiers/string_append/push_back.pass.cpp
      Fix MSVC uninitialized memory warning.
      warning C6001: Using uninitialized memory 'vl'.
      
      test/std/utilities/tuple/tuple.tuple/tuple.cnstr/PR20855_tuple_ref_binding_diagnostics.pass.cpp
      Include <cassert> for the assert() macro.
      
      Fixes D43273.
      
      llvm-svn: 326120
      c1fcd97e
    • Craig Topper's avatar
      [X86] Add a custom legalization for (i16 (bitcast v16i1)) and (i32 (bitcast... · 5e0ceb88
      Craig Topper authored
      [X86] Add a custom legalization for (i16 (bitcast v16i1)) and (i32 (bitcast v32i1)) without AVX512 to prevent scalarization
      
      Summary:
      We have an early DAG combine to turn these patterns into MOVMSK, but that combine doesn't work if the vXi1 type has more elements than the widest legal vXi8 type. Type legalization will eventually split it down to v16i1 or v32i1 and then the bitcast gets legalized to a truncstore and a scalar load. The truncstore will get lowered to a series of extracts and bit math.
      
      This patch adds a custom legalization to use a sign extend and MOVMSK instead. This prevents the eventual scalarization.
      
      Reviewers: spatel, RKSimon, zvi
      
      Reviewed By: RKSimon
      
      Subscribers: mgorny, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D43593
      
      llvm-svn: 326119
      5e0ceb88
    • David Zarzycki's avatar
      Fix for LLVM r326109 · 6daad9da
      David Zarzycki authored
      llvm-svn: 326118
      6daad9da
    • Alexey Bataev's avatar
      [SLP] Added new test + fixed some checks, NFC. · b44e2b75
      Alexey Bataev authored
      llvm-svn: 326117
      b44e2b75
    • Zachary Turner's avatar
      Revert "Emit proper CodeView when -gcodeview is passed without the cl driver." · 13e3520d
      Zachary Turner authored
      This reverts commit e17911006548518634fad66bb8648bcad49a1d64.
      
      This is failing on ASAN bots because asan expects column info,
      and it's also failing on some linux bots for unknown reasons which
      i need to investigate.
      
      llvm-svn: 326116
      13e3520d
    • Craig Topper's avatar
      [InstCombine] Add test cases with vector constants to fpextend.ll · 43fb1cde
      Craig Topper authored
      llvm-svn: 326115
      43fb1cde
    • Craig Topper's avatar
    • Zachary Turner's avatar
      Emit proper CodeView when -gcodeview is passed without the cl driver. · 9eee7bb7
      Zachary Turner authored
      Windows debuggers don't work properly when column info is emitted
      with lines.  We handled this by checking if the driver mode was
      cl, but it's possible to cause the gcc driver to emit codeview as
      well, and in that path we were emitting column info with codeview.
      
      Differential Revision: https://reviews.llvm.org/D43700
      
      llvm-svn: 326113
      9eee7bb7
    • Pavel Labath's avatar
      Add "lldb-test breakpoint" command and convert the case-sensitivity test to use it · 7c94582f
      Pavel Labath authored
      Summary:
      The command takes two input arguments: a module to use as a debug target
      and a file containing a list of commands. The command will execute each
      of the breakpoint commands in the file and dump the breakpoint state
      after each one.
      
      The commands are expected to be breakpoint set/remove/etc. commands, but
      I explicitly allow any lldb command here, so you can do things like
      change setting which impact breakpoint resolution, etc. There is also a
      "-persistent" flag, which causes lldb-test to *not* automatically clear
      the breakpoint list after each command. Right now I don't use it, but
      the idea behind it was that it could be used to test more complex
      combinations of breakpoint commands (set+modify, set+disable, etc.).
      
      Right now the command prints out only the basic breakpoint state, but
      more information can be easily added there.  To enable easy matching of
      the "at least one breakpoint location found" state, the command
      explicitly prints out the string "At least one breakpoint location.".
      
      To enable testing of breakpoints set with an absolute paths, I add the
      ability to perform rudimentary substitutions on the commands: right now
      the string %p is replaced by the directory which contains the command
      file (so, under normal circumstances, this will perform the same
      substitution as lit would do for %p).
      
      I use this command to rewrite the TestBreakpointCaseSensitivity test --
      the test was checking about a dozen breakpoint commands, but it was
      launching a new process for each one, so it took about 90 seconds to
      run. The new test takes about 0.3 seconds for me, which is approximately
      a 300x speedup.
      
      Reviewers: davide, zturner, jingham
      
      Subscribers: luporl, lldb-commits
      
      Differential Revision: https://reviews.llvm.org/D43686
      
      llvm-svn: 326112
      7c94582f
    • Kuba Mracek's avatar
      473f3fba
    • David Zarzycki's avatar
      Fix for LLVM r326109 · b0c752d3
      David Zarzycki authored
      llvm-svn: 326110
      b0c752d3
    • David Zarzycki's avatar
      [ADT] Simplify and optimize StringSwitch · d15f3193
      David Zarzycki authored
      This change improves incremental rebuild performance on dual Xeon 8168
      machines by 54%. This change also improves run time code gen by not
      forcing the case values to be lvalues.
      
      llvm-svn: 326109
      d15f3193
    • Adam Nemet's avatar
      [Driver] Forward opt-remark hotness threshold to LTO · a456db3e
      Adam Nemet authored
      llvm-svn: 326108
      a456db3e
    • Adam Nemet's avatar
      [LTO] Support filtering by hotness threshold · b4ce3573
      Adam Nemet authored
      This wires up -pass-remarks-hotness-threshold to LTO and ThinLTO.
      
      Next is to change the clang driver to pass this
      with -fdiagnostics-hotness-threshold.
      
      Differential Revision: https://reviews.llvm.org/D41465
      
      llvm-svn: 326107
      b4ce3573
    • Kuba Mracek's avatar
      [asan] Be more careful and verbose when allocating dynamic shadow memory · 061f3589
      Kuba Mracek authored
      FindAvailableMemoryRange can currently overwrite existing memory (by restricting the VM below addresses that are already used). This patch adds a check to make sure we don't restrict the VM space too much. We are also now more explicit about why the lookup failed and print out verbose values.
      
      Differential Revision: https://reviews.llvm.org/D43318
      
      llvm-svn: 326106
      061f3589
    • Alex Shlyapnikov's avatar
      [MSan] Print current stack on CHECK violation · 4b30a426
      Alex Shlyapnikov authored
      Summary:
      Print current stack on CHECK violation to aid debugging and
      match other sanitizers functionality.
      
      Reviewers: eugenis
      
      Subscribers: delcypher, llvm-commits, #sanitizers
      
      Differential Revision: https://reviews.llvm.org/D43692
      
      llvm-svn: 326105
      4b30a426
    • Simon Pilgrim's avatar
    • Scott Linder's avatar
      [DebugInfo] Support DWARF v5 source code embedding extension · a2fbcef8
      Scott Linder authored
      In DWARF v5 the Line Number Program Header is extensible, allowing values with
      new content types. This vendor extension to DWARF v5 allows source text to be
      embedded directly in the line tables of the debug line section.
      
      Add new flag (-g[no-]embed-source) to Driver and CC1 which indicates
      that source should be passed through to LLVM during CodeGen.
      
      Differential Revision: https://reviews.llvm.org/D42766
      
      llvm-svn: 326102
      a2fbcef8
    • Matt Arsenault's avatar
      AMDGPU/GlobalISel: Make f64 constants legal · 2a26a286
      Matt Arsenault authored
      llvm-svn: 326101
      2a26a286
    • Kostya Kortchinsky's avatar
      [scudo] Make some tests less Linux-y · 0c8ecea8
      Kostya Kortchinsky authored
      Summary:
      Start making the Scudo tests less Linux-y:
      - `malloc_usable_size` doesn't exist everywhere, so replace them with
        `__sanitizer_get_allocated_size` which we provide;
      - move all the `memalign` related tests into `memalign.c` since it's also not
        available everywhere.
      
      I also noticed that the `memalign.c` was missing a line in one of the loops.
      
      Reviewers: alekseyshl
      
      Reviewed By: alekseyshl
      
      Subscribers: delcypher, #sanitizers, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D43393
      
      llvm-svn: 326100
      0c8ecea8
    • Scott Linder's avatar
      [CodeGen][DebugInfo] Refactor duplicated code, NFC · 39ceac1c
      Scott Linder authored
      llvm-svn: 326099
      39ceac1c
    • Sanjay Patel's avatar
      [InstCombine] allow fdiv folds with less than fully 'fast' ops · 31a90468
      Sanjay Patel authored
      Note: gcc appears to allow this fold with -freciprocal-math alone, 
      but clang/llvm require more than that with this patch. The wording
      in the definitions seems fuzzy enough that it could go either way,
      but we'll err on the conservative side of FMF interpretation.
      
      This patch also changes the newly created fmul to have FMF propagated
      by the last fdiv rather than intersecting the FMF of the fdivs. This
      matches the behavior of other folds near here. The new fmul is only 
      used to produce an intermediate op for the final fdiv result, so it
      shouldn't be any stricter than that result. The previous behavior
      could result in dropping FMF via other folds in instcombine or CSE.
      
      Differential Revision: https://reviews.llvm.org/D43398
      
      llvm-svn: 326098
      31a90468
    • Simon Pilgrim's avatar
      [X86][AVX] Add AVX1 PSAD tests · 2f0aab92
      Simon Pilgrim authored
      Cleanup check-prefixes to share more AVX/AVX512 codegen checks
      
      llvm-svn: 326097
      2f0aab92
    • Ilya Biryukov's avatar
      Revert r326092: [gtest] Add PrintTo overload for StringRef. · d9d9bf8d
      Ilya Biryukov authored
      It seems to break the following buildbot:
      http://lab.llvm.org:8011/builders/sanitizer-windows/builds/24729
      
      Will resubmit after investigating and fixing it.
      
      llvm-svn: 326096
      d9d9bf8d
    • Adrian McCarthy's avatar
      Fix tabs/spaces indentation problem in TestUnicodeSymbols.py · 69d74347
      Adrian McCarthy authored
      Differential Revision: https://reviews.llvm.org/D43705
      
      llvm-svn: 326095
      69d74347
    • Francis Visoiu Mistrih's avatar
      [CodeGen] Don't omit any redundant information in -debug output · e4fae4d5
      Francis Visoiu Mistrih authored
      In r322867, we introduced IsStandalone when printing MIR in -debug
      output. The default behaviour for that was:
      
      1) If any of MBB, MI, or MO are -debug-printed separately, don't omit any
      redundant information.
      
      2) When -debug-printing a MF entirely, don't print any redundant
      information.
      
      3) When printing MIR, don't print any redundant information.
      
      I'd like to change 2) to:
      
      2) When -debug-printing a MF entirely, don't omit any redundant information.
      
      Differential Revision: https://reviews.llvm.org/D43337
      
      llvm-svn: 326094
      e4fae4d5
    • Simon Pilgrim's avatar
      [X86][SSE] Regenerate PSAD tests · 98fcd2eb
      Simon Pilgrim authored
      Fixes scary typo in a check that lost the end digit off a reg#...
      
      llvm-svn: 326093
      98fcd2eb
    • Ilya Biryukov's avatar
      [gtest] Add PrintTo overload for StringRef. · ab6554fe
      Ilya Biryukov authored
      Summary:
      It was printed using code for generic containers before, resulting in
      unreadable output.
      
      Reviewers: sammccall, labath
      
      Reviewed By: sammccall, labath
      
      Subscribers: labath, zturner, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D43330
      
      llvm-svn: 326092
      ab6554fe
    • Jonas Devlieghere's avatar
      Re-land: "[Support] Replace HashString with djbHash." · 560ce2c7
      Jonas Devlieghere authored
      This patch removes the HashString function from StringExtraces and
      replaces its uses with calls to djbHash from DJB.h.
      
      This change is *almost* NFC. While the algorithm is identical, the
      djbHash implementation in StringExtras used 0 as its default seed while
      the implementation in DJB uses 5381. The latter has been shown to result
      in less collisions and improved avalanching and is used by the DWARF
      accelerator tables.
      
      Because some test were implicitly relying on the hash order, I've
      reverted to using zero as a seed for the following two files:
      
        lld/include/lld/Core/SymbolTable.h
        llvm/lib/Support/StringMap.cpp
      
      Differential revision: https://reviews.llvm.org/D43615
      
      llvm-svn: 326091
      560ce2c7
    • George Rimar's avatar
      [ELF] - Fix variable name and mistype in comment. NFC. · 0c97f4eb
      George Rimar authored
      llvm-svn: 326090
      0c97f4eb
    • Hans Wennborg's avatar
      Re-commit r324991 "Fix for PR32992. Static const classes not exported." · 83665e6d
      Hans Wennborg authored
      Fix for PR32992. Static const classes not exported.
      
      Patch by zahiraam!
      
      (This re-lands the commit, but using S.MarkVariableReferenced instead of
      S.PendingInstantiations.push_back, and with an additional test.)
      
      Differential Revision: https://reviews.llvm.org/D42968
      
      llvm-svn: 326089
      83665e6d
    • Tim Renouf's avatar
      [AMDGPU] Scratch setup fix on AMDPAL gfx9+ merge shader · 832f90fa
      Tim Renouf authored
      Summary:
      With OS type AMDPAL, the scratch descriptor is hardwired to be loaded
      from offset 0 of the global information table, whose low pointer is
      passed in s0. For a merge shader on gfx9+, it needs to be s8 instead, as
      the hardware reserves s0-s7.
      
      Reviewers: kzhuravl
      
      Subscribers: arsenm, nhaehnle, dstuttard, llvm-commits, t-tye, yaxunl, wdng, kzhuravl
      
      Differential Revision: https://reviews.llvm.org/D42203
      
      llvm-svn: 326088
      832f90fa
    • Tim Renouf's avatar
      [LiveIntervals] Handle moving up dead partial write · f40707a2
      Tim Renouf authored
      Summary:
      In the test case, the machine scheduler moves a dead write to a subreg
      up into the middle of a segment of the overall reg's live range, where
      the segment had liveness only for other subregs in the reg.
      handleMoveUp created an invalid live range, causing an assert a bit
      later.
      
      This commit fixes it to handle that situation. The segment is split in
      two at the insertion point, and the part after the split, and any
      subsequent segments up to the old position, are changed to be defined by
      the moved def.
      
      V2: Better test.
      
      Subscribers: MatzeB, nhaehnle, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D43478
      
      Change-Id: Ibc42445ddca84e79ad1f616401015d22bc63832e
      llvm-svn: 326087
      f40707a2
    • Bjorn Pettersson's avatar
      Resolve build bot problems in unittests/Format/FormatTest.cpp · 0b2f774b
      Bjorn Pettersson authored
      Summary:
      Make the new GetStyleWithEmptyFileName test case independent
      of the file system used when running the test. Since the
      test is supposed to use the fallback "Google" style we now
      use a InMemoryFileSystem to make sure that we do not accidentaly
      find a .clang-format file in the real file system. That could
      for example happen when having the build directory inside the
      llvm och clang repo (as there is a .clang-format file inside
      the repos).
      
      Reviewers: vsapsai, jolesiak, krasimir, benhamilton
      
      Reviewed By: krasimir
      
      Subscribers: uabelho, twoh, klimek, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D43732
      
      llvm-svn: 326086
      0b2f774b
    • David Zarzycki's avatar
      Test commit · f3fa88b2
      David Zarzycki authored
      llvm-svn: 326085
      f3fa88b2
    • Kamil Rytarowski's avatar
      Skip two more ioctl interceptors for NetBSD · b6195b59
      Kamil Rytarowski authored
      Don't intercept:
       - HFSC_IF_ATTACH
       - HFSC_MOD_CLASS
      
      These operations conflict on NetBSD 32-bit with:
       - PRIQ_IF_ATTACH
       - PRIQ_MOD_CLASS
      
      Sponsored by <The NetBSD Foundation>
      
      llvm-svn: 326084
      b6195b59
    • Ilya Biryukov's avatar
      Explicitly initialize ForceEnableInt128 to avoid UB · 861201a2
      Ilya Biryukov authored
      This fixes an uninitialized value read found by msan.
      
      llvm-svn: 326083
      861201a2
    • Jonas Devlieghere's avatar
      Revert "[Support] Replace HashString with djbHash." · 370bf3ef
      Jonas Devlieghere authored
      It looks like some of our tests depend on the ordering of hashed values.
      I'm reverting my changes while I try to reproduce and fix this locally.
      
      Failing builds:
      
        lab.llvm.org:8011/builders/lld-x86_64-darwin13/builds/18388
        lab.llvm.org:8011/builders/clang-cmake-x86_64-sde-avx512-linux/builds/6743
        lab.llvm.org:8011/builders/llvm-clang-lld-x86_64-scei-ps4-windows10pro-fast/builds/15607
      
      llvm-svn: 326082
      370bf3ef
    • Jonas Devlieghere's avatar
      [Support] Replace HashString with djbHash. · b9ad1759
      Jonas Devlieghere authored
      This removes the HashString function from StringExtraces and replaces
      its uses with calls to djbHash from DJB.h
      
      This is *almost* NFC. While the algorithm is identical, the djbHash
      implementation in StringExtras used 0 as its seed while the
      implementation in DJB uses 5381. The latter has been shown to result in
      less collisions and improved avalanching.
      
      https://reviews.llvm.org/D43615
      (cherry picked from commit 77f7f965bc9499a9ae768a296ca5a1f7347d1d2c)
      
      llvm-svn: 326081
      b9ad1759
    • Benjamin Kramer's avatar
      [WebAssembly] Relax constexpr for old standard libraries. · b84e158d
      Benjamin Kramer authored
      This will still be constexpr when the standard library supports it, but
      doesn't force constexpr. Old libraries will get a global constructor,
      which is not too bad.
      
      llvm-svn: 326080
      b84e158d
Loading