Skip to content
  1. Nov 14, 2016
    • Zachary Turner's avatar
      [PDB] Add documentation for the DBI Stream. · c316ddcd
      Zachary Turner authored
      Differential Revision: https://reviews.llvm.org/D26552
      
      llvm-svn: 286853
      c316ddcd
    • Zachary Turner's avatar
      32e1edec
    • Bob Wilson's avatar
      Use _Unwind_Backtrace on Apple platforms. · d7bef697
      Bob Wilson authored
      Darwin's backtrace() function does not work with sigaltstack (which was
      enabled when available with r270395) — it does a sanity check to make
      sure that the current frame pointer is within the expected stack area
      (which it is not when using an alternate stack) and gives up otherwise.
      The alternative of _Unwind_Backtrace seems to work fine on macOS, so use
      that when backtrace() fails. Note that we then use backtrace_symbols_fd()
      with the addresses from _Unwind_Backtrace, but I’ve tested that and it
      also seems to work fine. rdar://problem/28646552
      
      llvm-svn: 286851
      d7bef697
    • Reid Kleckner's avatar
      Split strncmp and strncasecmp test and XFAIL one for Windows · 171a7022
      Reid Kleckner authored
      llvm-svn: 286850
      171a7022
    • Anastasia Stulova's avatar
      [OpenCL] Fix for integer parameters of enqueue_kernel · 0df4ac3f
      Anastasia Stulova authored
      Make handling integer parameters more flexible:
      
      - For the number of events argument allow to pass larger
      integers than 32 bits as soon as compiler can prove that
      the range fits in 32 bits. If not, the diagnostic will be given.
      
      - Change type of the arguments specifying the sizes of
      the corresponding block arguments to be size_t.
      
      Review: https://reviews.llvm.org/D26509
      llvm-svn: 286849
      0df4ac3f
    • Reid Kleckner's avatar
      [asan/win] Delay load dbghelp.dll to delay ucrtbase.dll initialization · e1e344ed
      Reid Kleckner authored
      Summary:
      ASan needs to initialize before ucrtbase.dll so that it can intercept
      all of its heap allocations. New versions of dbghelp.dll depend on
      ucrtbase.dll, which means both of those DLLs will initialize before the
      dynamic ASan runtime. By lazily loading dbghelp.dll with LoadLibrary, we
      avoid the issue.
      
      Eventually, I would like to remove our dbghelp.dll dependency in favor
      of always using llvm-symbolizer.exe, but this seems like an acceptable
      interim solution.
      
      Fixes PR30903
      
      Reviewers: etienneb
      
      Subscribers: kubabrecka, mgorny, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D26473
      
      llvm-svn: 286848
      e1e344ed
    • Stephan T. Lavavej's avatar
      [libcxx] [test] D26314: Fix MSVC warning C4189 "local variable is initialized but not referenced". · 4dc0ed83
      Stephan T. Lavavej authored
      test/std/depr/depr.c.headers/inttypes_h.pass.cpp
      test/std/input.output/file.streams/c.files/cinttypes.pass.cpp
      test/std/input.output/iostream.forward/iosfwd.pass.cpp
      Add test() to avoid a bunch of void-casts, although we still need a few.
      
      test/std/input.output/iostream.format/quoted.manip/quoted.pass.cpp
      skippingws was unused (it's unclear to me whether this was mistakenly copy-pasted from round_trip() below).
      
      test/std/localization/locale.categories/category.collate/locale.collate/types.pass.cpp
      test/std/localization/locale.categories/category.ctype/facet.ctype.special/types.pass.cpp
      test/std/localization/locale.categories/category.ctype/locale.codecvt/types_char.pass.cpp
      test/std/localization/locale.categories/category.ctype/locale.codecvt/types_wchar_t.pass.cpp
      test/std/localization/locale.categories/category.ctype/locale.ctype/types.pass.cpp
      test/std/localization/locale.categories/facet.numpunct/locale.numpunct/types.pass.cpp
      test/std/localization/locales/locale.global.templates/use_facet.pass.cpp
      When retrieving facets, the references are unused.
      
      test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_long.pass.cpp
      test/std/localization/locale.categories/category.numeric/locale.nm.put/facet.num.put.members/put_unsigned_long.pass.cpp
      "std::ios_base::iostate err = ios.goodbit;" was completely unused here.
      
      test/std/localization/locale.categories/category.time/locale.time.get/time_base.pass.cpp
      test/std/numerics/c.math/ctgmath.pass.cpp
      test/std/numerics/rand/rand.device/entropy.pass.cpp
      test/std/numerics/rand/rand.device/eval.pass.cpp
      test/std/strings/basic.string/string.modifiers/string_copy/copy.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/eof.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/eof.pass.cpp
      test/std/thread/futures/futures.promise/dtor.pass.cpp
      test/std/thread/futures/futures.task/futures.task.members/dtor.pass.cpp
      test/std/thread/thread.condition/thread.condition.condvar/wait_for_pred.pass.cpp
      These variables are verifying types but are otherwise unused.
      
      test/std/strings/basic.string/string.capacity/reserve.pass.cpp
      old_cap was unused (it's unclear to me whether it was intended to be used).
      
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char/eq.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/eq.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char16_t/lt.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/eq.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.char32_t/lt.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/eq.pass.cpp
      test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/lt.pass.cpp
      These tests contained unused characters.
      
      llvm-svn: 286847
      4dc0ed83
    • Mandeep Singh Grang's avatar
      [clang docs] Minor fix in ClangCheck.rst · 39f5e864
      Mandeep Singh Grang authored
      Reviewers: djasper, rengolin
      
      Subscribers: Eugene.Zelenko
      
      Tags: #clang-c
      
      Differential Revision: https://reviews.llvm.org/D26484
      
      llvm-svn: 286846
      39f5e864
    • Adrian Prantl's avatar
      Typo · 1f9ac96c
      Adrian Prantl authored
      llvm-svn: 286845
      1f9ac96c
    • Teresa Johnson's avatar
      Restore "[ThinLTO] Prevent exporting of locals used/defined in module level asm" · 3624bdf6
      Teresa Johnson authored
      This restores the rest of r286297 (part was restored in r286475).
      Specifically, it restores the part requiring adding a dependency from
      the Analysis to Object library (downstream use changed to correctly
      model split BitReader vs BitWriter libraries).
      
      Original description of this part of patch follows:
      
      Module level asm may also contain defs of values. We need to prevent
      export of any refs to local values defined in module level asm (e.g. a
      ref in normal IR), since that also requires renaming/promotion of the
      local. To do that, the summary index builder looks at all values in the
      module level asm string that are not marked Weak or Global, which is
      exactly the set of locals that are defined. A summary is created for
      each of these local defs and flagged as NoRename.
      
      This required adding handling to the BitcodeWriter to look at GV
      declarations to see if they have a summary (rather than skipping them
      all).
      
      Finally, added an assert to IRObjectFile::CollectAsmUndefinedRefs to
      ensure that an MCAsmParser is available, otherwise the module asm parse
      would silently fail. Initialized the asm parser in the opt tool for use
      in testing this fix.
      
      Fixes PR30610.
      
      llvm-svn: 286844
      3624bdf6
    • Sumanth Gundapaneni's avatar
      [Hexagon] Remove unsafe load instructions that affect Stack Slot Coloring · d428cf8b
      Sumanth Gundapaneni authored
      The Stack slot coloring pass removes a store that is followed by a load
      that deal with the same stack slot. The function isLoadFromStackSlot
      is supposed to consider the loads that have no side-effects. This
      patch fixed the issue by removing the unsafe loads from this function
      Eg:
      %vreg0<def> = L2_loadruh_io <fi#15>, 0
      S2_storeri_io <fi#15>, 0, %vreg0
      
      In this case, we load an unsigned extended half word and store this in to
      the same stack slot. The Stack slot coloring pass considers safe to remove
      the store. This patch marked all the non-vector byte and half word loads as
      unsafe.
      
      llvm-svn: 286843
      d428cf8b
    • Sumanth Gundapaneni's avatar
      Fix the unit test darwin-multiarch-arm.c for windows · 348ace26
      Sumanth Gundapaneni authored
      llvm-svn: 286842
      348ace26
    • Stephan Bergmann's avatar
      Handle non-inlined clang::Type::getAs specializations in extract_symbols.py · 06c31f60
      Stephan Bergmann authored
      The existing logic was to discard any symbols representing function template
      instantiations, as the definitions were assumed to be inline. But there are
      three explicit specializations of clang::Type::getAs that are only defined in
      Clang's lib/AST/Type.cpp, and at least the plugin used by the LibreOffice build
      (https://wiki.documentfoundation.org/Development/Clang_plugins) uses those
      functions.
      
      Differential Revision: https://reviews.llvm.org/D26455
      
      llvm-svn: 286841
      06c31f60
    • Teresa Johnson's avatar
      [ThinLTO] Make inline assembly handling more efficient in summary · d5033a45
      Teresa Johnson authored
      Summary:
      The change in r285513 to prevent exporting of locals used in
      inline asm added all locals in the llvm.used set to the reference
      set of functions containing inline asm. Since these locals were marked
      NoRename, this automatically prevented importing of the function.
      
      Unfortunately, this caused an explosion in the summary reference lists
      in some cases. In my particular example, it happened for a large protocol
      buffer generated C++ file, where many of the generated functions
      contained an inline asm call. It was exacerbated when doing a ThinLTO
      PGO instrumentation build, where the PGO instrumentation included
      thousands of private __profd_* values that were added to llvm.used.
      
      We really only need to include a single llvm.used local (NoRename) value
      in the reference list of a function containing inline asm to block it
      being imported. However, it seems cleaner to add a flag to the summary
      that explicitly describes this situation, which is what this patch does.
      
      Reviewers: mehdi_amini
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D26402
      
      llvm-svn: 286840
      d5033a45
    • Tom Stellard's avatar
      Fix build since r286752. · d83eb34e
      Tom Stellard authored
      llvm-svn: 286839
      d83eb34e
    • Simon Pilgrim's avatar
      [CostModel][X86] Added mul costs for vXi8 vectors · 779da8e5
      Simon Pilgrim authored
      More realistic v16i8/v32i8/v64i8 MUL costs - we have to extend to vXi16, use PMULLW and then truncate the result
      
      llvm-svn: 286838
      779da8e5
    • Rafael Espindola's avatar
      Fix program header propagation. · f7a17448
      Rafael Espindola authored
      Propagate program headers by walking the commands, not the
      sections. This allows us to propagate program headers even from
      sections that don't end up in the output.
      
      Fixes pr30997.
      
      llvm-svn: 286837
      f7a17448
    • Anastasia Stulova's avatar
      [OpenCL] Change to clk_event parameter in enqueue_kernel. · 2b46120a
      Anastasia Stulova authored
      - Accept NULL pointer as a valid parameter value for clk_event.
      - Generate clk_event_t arguments of internal
      __enqueue_kernel_XXX function as pointers in generic address space.
      
      Review: https://reviews.llvm.org/D26507
      llvm-svn: 286836
      2b46120a
    • Marshall Clow's avatar
      Update C++1z status with LWG papers from Issaquah. · 539dd132
      Marshall Clow authored
      llvm-svn: 286835
      539dd132
    • Marshall Clow's avatar
      Update C++1z status with LFTS issues from Issaquah. · 1d44f0fb
      Marshall Clow authored
      llvm-svn: 286834
      1d44f0fb
    • Haojian Wu's avatar
      [clang-move] Fix an incorrect range for the functions whose returned value is a macro · 24675398
      Haojian Wu authored
      Summary:
      Fix an incorrect range for the functions whose returned value is a macro
      (e.g. `bool`). This incorrect range can lead to modifications of an unexpected
      file where the macro is in.
      
      We should use expansion location instead of spelling location.
      
      Reviewers: ioeric
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D26609
      
      llvm-svn: 286833
      24675398
    • Simon Pilgrim's avatar
      [X86][AVX] Fixed v16i16/v32i8 ADD/SUB costs on AVX1 subtargets · 27fed8e5
      Simon Pilgrim authored
      Add explicit v16i16/v32i8 ADD/SUB costs, matching the costs of v4i64/v8i32 - they were missing for some reason.
      
      This has side effects on the LV max bandwidth tests (AVX1 now prefers 128-bit vectors vs AVX2 which still prefers 256-bit)
      
      llvm-svn: 286832
      27fed8e5
    • George Rimar's avatar
      [ELF] - Ignore -Map,-M and --cref options. · e784395c
      George Rimar authored
      -M, --print-map Write map file on standard output
      -Map MAPFILENAME Write map file
      --cref	Output cross reference table
      
      This is relative to PR30973.
      
      Next FreeBSD ports were atm failing because of 
      lack of -Map, -M and --cref:
      
      sysutils/openipmi
      emulators/adamem
      devel/jwasm
      net/pimd
      devel/k8048
      textproc/libcrm114
      lang/micropython
      net/mrouted
      print/openprinting
      
      After this patch all of them can be link fine.
      
      llvm-svn: 286831
      e784395c
    • Sean Fertile's avatar
      [PPC] add extract sig/exp test data class for vec float and vec double. · 193430fe
      Sean Fertile authored
       Add vector extract exponent/significand functions to altivec.h, as well as
       functions (and related constants) to test the data class of vector float
       and vector double.
      
       Differential Revision: https://reviews.llvm.org/D26271
      
      llvm-svn: 286830
      193430fe
    • Sean Fertile's avatar
      adda5b2d
    • Marshall Clow's avatar
    • Rafael Espindola's avatar
      Delay removing empty section commands. NFC. · 6a53737c
      Rafael Espindola authored
      To fix pr30997 we will have to keep them a bit longer, this just
      splits that part of the diff.
      
      llvm-svn: 286827
      6a53737c
    • Rafael Espindola's avatar
      Factor out removeEmptyCommands. NFC. · 07fe6129
      Rafael Espindola authored
      llvm-svn: 286826
      07fe6129
    • Haojian Wu's avatar
      [clang-move] Abstract a ClassMather for matching class declarations. · 35ca9467
      Haojian Wu authored
      Summary:
      No functionality change.
      
      This is a refactoring patch, which makes the code more readable and easy
      to extend it to support more types.
      
      Reviewers: ioeric
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D26515
      
      llvm-svn: 286825
      35ca9467
    • Rafael Espindola's avatar
      Factor out placeOrphanSections. NFC. · 337f903c
      Rafael Espindola authored
      llvm-svn: 286824
      337f903c
    • Roger Ferrer Ibanez's avatar
      Protect std::ios tests under libcpp-no-exceptions · aa35ecfe
      Roger Ferrer Ibanez authored
      Skip tests that expect an exception be thrown. Also add
      some missing asserts in the original test.
      
      Differential Revision: https://reviews.llvm.org/D26512
      
      llvm-svn: 286823
      aa35ecfe
    • Aaron Ballman's avatar
      Reverting r285406, which was a temporary workaround to get one of the... · c78f5d41
      Aaron Ballman authored
      Reverting r285406, which was a temporary workaround to get one of the documentation bots upgraded to something newer than GCC 4.7. This restores the check for GCC 4.8.
      
      llvm-svn: 286822
      c78f5d41
    • Pekka Jaaskelainen's avatar
      Fix r286819 (accidentally patched multiple times. · 5136dd81
      Pekka Jaaskelainen authored
      llvm-svn: 286821
      5136dd81
    • Renato Golin's avatar
      Revert "llvm-strings: support printing the filename" · 199b6b94
      Renato Golin authored
      Also,
      
      Revert "test: remove the archive before modifying it"
      Revert "test: explicitly use gnu format"
      
      This reverts commits r286778, r286729 and r286767, as they are randomly failing
      on many bots (AArch64, x86_64).
      
      llvm-svn: 286820
      199b6b94
    • Pekka Jaaskelainen's avatar
      [OpenCL] always use SPIR address spaces for kernel_arg_addr_space MD · 2a1cc587
      Pekka Jaaskelainen authored
      It doesn't make sense to use the target's address space ids in this context as
      this is metadata that should be referring to the "logical" OpenCL address spaces.
      For flat AS machines like all "CPUs" in general, the logical AS info gets lost as
      there's only one address space (0).
      
      This commit changes the logic such that we always use the SPIR address space
      ids for the argument metadata. It thus allows implementing the clGetKernelArgInfo()
      and the other detection needs.
      
      https://reviews.llvm.org/D26157
      
      llvm-svn: 286819
      2a1cc587
    • Renato Golin's avatar
      Revert "Improve handling of floating point literals in OpenCL to only use... · 6a051ba6
      Renato Golin authored
      Revert "Improve handling of floating point literals in OpenCL to only use double precision if the target supports fp64."
      
      This reverts commit r286815, as it broke all ARM and AArch64 bots.
      
      llvm-svn: 286818
      6a051ba6
    • Simon Pilgrim's avatar
      Remove redundant condition (PR28352) NFCI. · 475b40da
      Simon Pilgrim authored
      We were already testing is the op was not a leaf, so need to then test if it was a leaf (added it to the assert instead).
      
      llvm-svn: 286817
      475b40da
    • Strahinja Petrovic's avatar
      [lsan] [aarch64] Fix printing of pointers in make check tests - update · f10d114d
      Strahinja Petrovic authored
      This patch replaces fprintf with print_address function in LSAN
      tests. This is necessary because of different printing of pointers
      in fprintf and sanitizer's print function. 
      Differential Revision: https://reviews.llvm.org/D26084.
      
      llvm-svn: 286816
      f10d114d
    • Neil Hickey's avatar
      Improve handling of floating point literals in OpenCL to only use double... · f603672b
      Neil Hickey authored
      Improve handling of floating point literals in OpenCL to only use double precision if the target supports fp64.
      
      This change makes sure single-precision floating point types are used if the 
      cl_fp64 extension is not supported by the target.
      
      Also removed the check to see whether the OpenCL version is >= 1.2, as this has
      been incorporated into the extension setting code.
      
      Differential Revision: https://reviews.llvm.org/D24235
      
      llvm-svn: 286815
      f603672b
    • James Molloy's avatar
      [InlineCost] Remove skew when calculating call costs · 6df8f27c
      James Molloy authored
      When calculating the cost of a call instruction we were applying a heuristic penalty as well as the cost of the instruction itself.
      
      However, when calculating the benefit from inlining we weren't discounting the equivalent penalty for the call instruction that would be removed! This caused skew in the calculation and meant we wouldn't inline in the following, trivial case:
      
        int g() {
          h();
        }
        int f() {
          g();
        }
      
      llvm-svn: 286814
      6df8f27c
Loading