Skip to content
  1. Jan 04, 2019
    • Davide Italiano's avatar
      [Scalar] Simplify comparison operators and add coverage. · ff92a1a7
      Davide Italiano authored
      llvm-svn: 350428
      ff92a1a7
    • Peter Collingbourne's avatar
      hwasan: Use system allocator to realloc and free untagged pointers in interceptor mode. · fcbcc611
      Peter Collingbourne authored
      The Android dynamic loader has a non-standard feature that allows
      libraries such as the hwasan runtime to interpose symbols even after
      the symbol already has a value. The new value of the symbol is used to
      relocate libraries loaded after the interposing library, but existing
      libraries keep the old value. This behaviour is activated by the
      DF_1_GLOBAL flag in DT_FLAGS_1, which is set by passing -z global to
      the linker, which is what we already do to link the hwasan runtime.
      
      What this means in practice is that if we have .so files that depend
      on interceptor-mode hwasan without the main executable depending on
      it, some of the libraries in the process will be using the hwasan
      allocator and some will be using the system allocator, and these
      allocators need to interact somehow. For example, if an instrumented
      library calls a function such as strdup that allocates memory on
      behalf of the caller, the instrumented library can reasonably expect
      to be able to call free to deallocate the memory.
      
      We can handle that relatively easily with hwasan by using tag 0 to
      represent allocations from the system allocator. If hwasan's realloc
      or free functions are passed a pointer with tag 0, the system allocator
      is called.
      
      One limitation is that this scheme doesn't work in reverse: if an
      instrumented library allocates memory, it must free the memory itself
      and cannot pass ownership to a system library. In a future change,
      we may want to expose an API for calling the system allocator so
      that instrumented libraries can safely transfer ownership of memory
      to system libraries.
      
      Differential Revision: https://reviews.llvm.org/D55986
      
      llvm-svn: 350427
      fcbcc611
    • Aaron Enye Shi's avatar
      [HIP][DRIVER][OFFLOAD] Do not unbundle unsupported file types · 0743cda6
      Aaron Enye Shi authored
      The offload bundler action should not unbundle the input file types that does not match the action type. This fixes an issue where .so files are unbundled when the action type is object files.
      
      Reviewers: yaxunl
      
      Differential Revision: https://reviews.llvm.org/D56321
      
      llvm-svn: 350426
      0743cda6
    • Aaron Enye Shi's avatar
      [HIP][DRIVER][OFFLOAD] Do not unbundle unsupported file types · bea57bb5
      Aaron Enye Shi authored
      The offload bundler action should not unbundle the input file types that does not match the action type. This fixes an issue where .so files are unbundled when the action type is object files.
      
      llvm-svn: 350425
      bea57bb5
    • Teresa Johnson's avatar
      [ThinLTO] Clang changes to utilize new pass to handle chains of aliases · 6ed7913c
      Teresa Johnson authored
      Summary:
      As with NameAnonGlobals, invoke the new CanonicalizeAliases via clang
      when using the new PM.
      
      Depends on D54507.
      
      Reviewers: pcc, davidxl
      
      Subscribers: mehdi_amini, inglorion, steven_wu, dexonsmith, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D55620
      
      llvm-svn: 350424
      6ed7913c
    • Teresa Johnson's avatar
      [ThinLTO] Handle chains of aliases · 853b9624
      Teresa Johnson authored
      At -O0, globalopt is not run during the compile step, and we can have a
      chain of an alias having an immediate aliasee of another alias. The
      summaries are constructed assuming aliases in a canonical form
      (flattened chains), and as a result only the base object but no
      intermediate aliases were preserved.
      
      Fix by adding a pass that canonicalize aliases, which ensures each
      alias is a direct alias of the base object.
      
      Reviewers: pcc, davidxl
      
      Subscribers: mehdi_amini, inglorion, eraman, steven_wu, dexonsmith, arphaman, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54507
      
      llvm-svn: 350423
      853b9624
    • Erik Pilkington's avatar
      [ObjCARC] Add an new attribute, objc_externally_retained · 1e36882b
      Erik Pilkington authored
      This attribute, called "objc_externally_retained", exposes clang's
      notion of pseudo-__strong variables in ARC. Pseudo-strong variables
      "borrow" their initializer, meaning that they don't retain/release
      it, instead assuming that someone else is keeping their value alive.
      
      If a function is annotated with this attribute, implicitly strong
      parameters of that function aren't implicitly retained/released in
      the function body, and are implicitly const. This is useful to expose
      for performance reasons, most functions don't need the extra safety
      of the retain/release, so programmers can opt out as needed.
      
      This attribute can also apply to declarations of local variables,
      with similar effect.
      
      Differential revision: https://reviews.llvm.org/D55865
      
      llvm-svn: 350422
      1e36882b
    • Sanjay Patel's avatar
      [x86] lower extracted fadd/fsub to horizontal vector math; 2nd try · 61535655
      Sanjay Patel authored
      The 1st try for this was at rL350369, but it caused IR-level diffs because
      our cost models differentiate custom vs. legal/promote lowering. So that was
      reverted at rL350373. The cost models were fixed independently at rL350403,
      so this is effectively the same patch as last time.
      
      Original commit message:
      This would show up if we fix horizontal reductions to narrow as they go along,
      but it's an improvement for size and/or Jaguar (fast-hops) independent of that.
      
      We need to do this late to not interfere with other pattern matching of larger
      horizontal sequences.
      
      We can extend this to integer ops in a follow-up patch.
      
      Differential Revision: https://reviews.llvm.org/D56011
      
      llvm-svn: 350421
      61535655
    • Vedant Kumar's avatar
      [CodeExtractor] Do not extract unsafe lifetime markers · a1778df4
      Vedant Kumar authored
      Lifetime markers which reference inputs to the extraction region are not
      safe to extract. Example ('rhs' will be extracted):
      
      ```
                     entry:
                    +------------+
                    | x = alloca |
                    | y = alloca |
                    +------------+
                   /              \
         lhs:                      rhs:
        +-------------------+     +-------------------+
        | lifetime_start(x) |     | lifetime_start(x) |
        | use(x)            |     | lifetime_start(y) |
        | lifetime_end(x)   |     | use(x, y)         |
        | lifetime_start(y) |     | lifetime_end(y)   |
        | use(y)            |     | lifetime_end(x)   |
        | lifetime_end(y)   |     +-------------------+
        +-------------------+
      ```
      
      Prior to extraction, the stack coloring pass sees that the slots for 'x'
      and 'y' are in-use at the same time. After extraction, the coloring pass
      infers that 'x' and 'y' are *not* in-use concurrently, because markers
      from 'rhs' are no longer available to help decide otherwise.
      
      This leads to a miscompile, because the stack slots actually are in-use
      concurrently in the extracted function.
      
      Fix this by moving lifetime start/end markers for memory regions defined
      in the calling function around the call to the extracted function.
      
      Fixes llvm.org/PR39671 (rdar://45939472).
      
      Differential Revision: https://reviews.llvm.org/D55967
      
      llvm-svn: 350420
      a1778df4
    • Sanjay Patel's avatar
      [InstCombine] reduce raw IR narrowing rotate patterns to funnel shift · 722466e1
      Sanjay Patel authored
        
      Similar to rL350199 - there are no known analysis/codegen holes for
      funnel shift intrinsics now, so we can canonicalize the 6+ regular
      instructions to funnel shift to improve vectorization, inlining,
      unrolling, etc.
      
      llvm-svn: 350419
      722466e1
    • Nico Weber's avatar
      [gn build] Merge r350351 · 16a133bd
      Nico Weber authored
      llvm-svn: 350418
      16a133bd
    • Nico Weber's avatar
      [gn build] Commit change that should have been in r350410. · c9141fc9
      Nico Weber authored
      llvm-svn: 350416
      c9141fc9
    • Alexey Bataev's avatar
      [OPENMP][NVPTX]Use new functions from the runtime library. · 8e009036
      Alexey Bataev authored
      Updated codegen to use the new functions from the runtime library.
      
      llvm-svn: 350415
      8e009036
    • Aaron Ballman's avatar
      Add two new pragmas for controlling software pipelining optimizations. · 9bdf515c
      Aaron Ballman authored
      This patch adds #pragma clang loop pipeline and #pragma clang loop pipeline_initiation_interval for debugging or reducing compile time purposes. It is possible to disable SWP for concrete loops to save compilation time or to find bugs by not doing SWP to certain loops. It is possible to set value of initiation interval to concrete number to save compilation time by not doing extra pipeliner passes or to check created schedule for specific initiation interval.
      
      Patch by Alexey Lapshin.
      
      llvm-svn: 350414
      9bdf515c
    • Nico Weber's avatar
      [gn build] Add even more build files for LLVM unittests · 022e29b9
      Nico Weber authored
      Another random assortment of easy build files.
      
      Differential Revision: https://reviews.llvm.org/D56217
      
      llvm-svn: 350413
      022e29b9
    • Nico Weber's avatar
      [gn build] Add more build files for LLVM unittests · 47d9ff73
      Nico Weber authored
      A fairly random assortment of build files that are easy.
      
      Differential Revision: https://reviews.llvm.org/D56213
      
      llvm-svn: 350412
      47d9ff73
    • Nico Weber's avatar
      [gn build] Start adding build files for LLVM unittests · 2c497b51
      Nico Weber authored
      Adds build files for //llvm/unittest/[A-D].
      
      Also teach sync_source_lists_from_cmake.py to not complain about missing
      BUILD.gn files for CMakeLists.txt files that just call add_subdirectory()
      without calling add_.+_unittest, like e.g.
      llvm/unittests/Target/CMakeLists.txt.
      
      (Omits CodeGen/GlobalISel and DebugInfo/PDB because their build files are somewhat interesting, and this patch is already on the larger side.)
      
      Differential Revision: https://reviews.llvm.org/D56212
      
      llvm-svn: 350411
      2c497b51
    • Nico Weber's avatar
      [gn build] Add check-llvm target and make it work · 421c17fe
      Nico Weber authored
      With this, check-llvm runs and passes all of clang's lit tests. It doesn't run
      any of its unit tests yet.
      
      This is the only change in the GN build patch series that needs a change to a
      file outside of llvm/utils/gn: llvm/test/tools/llvm-config/booleans.test checks
      the result of llvm-config --build-system for some reason, so I'm updating the
      test to accept "gn" as valid output in addition to "cmake". (The alternative
      would be to let the gn build self-identify as cmake, which seems worse.)
      
      Like with check-clang and check-lld, running just ninja -C out/gn will build
      all prerequisites needed to run tests, but it won't run the tests (so that the
      build becomes clean after one build). Running ninja -C out/gn check-llvm will
      build prerequisites if needed and run the tests. The check-llvm target never
      becomes clean and runs tests every time.
      
      Differential Revision: https://reviews.llvm.org/D56195
      
      llvm-svn: 350410
      421c17fe
    • Nico Weber's avatar
      [gn build] Add build file for libLTO.dylib · c01e15ed
      Nico Weber authored
      Not used by anything yet, but will be needed to make check-llvm run ld64's libLTO plugin tests.
      
      Differential Revision: https://reviews.llvm.org/D56317
      
      llvm-svn: 350409
      c01e15ed
    • John Brawn's avatar
      [LICM] Adjust how moving the re-hoist point works · 39ac159c
      John Brawn authored
      In some cases the order that we hoist instructions in means that when rehoisting
      (which uses the same order as hoisting) we can rehoist to a block A, then a
      block B, then block A again. This currently causes an assertion failure as it
      expects that when changing the hoist point it only ever moves to a block that
      dominates the hoist point being moved from.
      
      Fix this by moving the re-hoist point when it doesn't dominate the dominator of
      hoisted instruction, or in other words when it wouldn't dominate the uses of
      the instruction being rehoisted.
      
      Differential Revision: https://reviews.llvm.org/D55266
      
      llvm-svn: 350408
      39ac159c
    • Nico Weber's avatar
      [gn build] Add build files for llvm/lib/{LineEditor,Testing/Support,TextAPI} · 2b506d9f
      Nico Weber authored
      Nothing pulls them in yet, but they will be needed for check-llvm.
      
      LineEditor depends on libedit, so create a gn/build/lib for it, following the
      usual pattern.
      
      Differential Revision: https://reviews.llvm.org/D56316
      
      llvm-svn: 350407
      2b506d9f
    • Nirav Dave's avatar
      Undo r350355 "[X86] Remove terrible DX Register parsing hack in parse operand. NFCI." · 1468d6e1
      Nirav Dave authored
      Add missing test case and update comments.
      
      llvm-svn: 350406
      1468d6e1
    • Alexey Bataev's avatar
      [OPENMP][NVPTX]Improve performance + reduce number of used registers. · dcf2edcd
      Alexey Bataev authored
      Summary:
      Reduced number of the used register + improved performance propagating
      the information about current execution/data sharing mode directly from
      the compiler, where it is possible.
      In some cases, it requires new/reworked interfaces of the runtime
      external functions. Old functions are marked as deprecated.
      
      Reviewers: grokos, gtbercea, kkwli0
      
      Subscribers: guansong, jfb, openmp-commits, caomhin
      
      Differential Revision: https://reviews.llvm.org/D56278
      
      llvm-svn: 350405
      dcf2edcd
    • Aaron Ballman's avatar
      Refactor the way we handle diagnosing unused expression results. · fb6deeb9
      Aaron Ballman authored
      Rather than sprinkle calls to DiagnoseUnusedExprResult() around in places where we want diagnostics, we now diagnose unused expression statements and full expressions in a more generic way when acting on the final expression statement. This results in more appropriate diagnostics for [[nodiscard]] where we were previously lacking them, such as when the body of a for loop is not a compound statement.
      
      This patch fixes PR39837.
      
      llvm-svn: 350404
      fb6deeb9
    • Simon Pilgrim's avatar
      [CostModel][X86] Fix SSE1 FADD/FSUB costs · c2054144
      Simon Pilgrim authored
      Noticed in D56011 - handle the case that scalar fp ops are quicker on P3 than P4
      
      Add the other costs so that we're not relying on the default "is legal/custom" cost logic.
      
      llvm-svn: 350403
      c2054144
    • Ranjeet Singh's avatar
      Revert patches 348835 and 348571 because they're · 107dd256
      Ranjeet Singh authored
      causing code size performance regressions.
      
      llvm-svn: 350402
      107dd256
    • Simon Pilgrim's avatar
      [CostModel][X86] Add SSE1 fp cost tests · 71d61567
      Simon Pilgrim authored
      llvm-svn: 350401
      71d61567
    • Mark Searles's avatar
      Fix typo: "with he MODULE" -> "with the MODULE" · b69b97ca
      Mark Searles authored
      Differential Revision: https://reviews.llvm.org/D56302
      
      llvm-svn: 350400
      b69b97ca
    • Simon Pilgrim's avatar
      [X86] Add VPSLLI/VPSRLI ((X >>u C1) << C2) SimplifyDemandedBits combine · 9f4dea8c
      Simon Pilgrim authored
      Repeat of the generic SimplifyDemandedBits shift combine
      
      llvm-svn: 350399
      9f4dea8c
    • Erich Keane's avatar
      Prevent unreachable when checking invalid multiversion decls. · 414ff52d
      Erich Keane authored
      CPUSpecifc/CPUDispatch call resolution assumed that all declarations
      that would be passed are valid, however this was an invalid assumption.
      This patch deals with those situations by making the valid version take
      priority.  Note that the checked ordering is arbitrary, since both are
      replaced by calls to the resolver later.
      
      Change-Id: I7ff2ec88c55a721d51bc1f39ea1a1fe242b4e45f
      llvm-svn: 350398
      414ff52d
    • Andrea Di Biagio's avatar
      [MCA] Improved handling of in-order issue/dispatch resources. · 3f4b5485
      Andrea Di Biagio authored
      Added field 'MustIssueImmediately' to the instruction descriptor of instructions
      that only consume in-order issue/dispatch processor resources.
      This speeds up queries from the hardware Scheduler, and gives an average ~5%
      speedup on a release build.
      
      No functional change intended.
      
      llvm-svn: 350397
      3f4b5485
    • Simon Pilgrim's avatar
      [X86] Split immediate shifts tests. NFCI. · 7ee22856
      Simon Pilgrim authored
      A future patch will combine logical shifts more aggressively.
      
      llvm-svn: 350396
      7ee22856
    • Florian Hahn's avatar
      [ValueTracking] Fix a misuse of APInt in GetPointerBaseWithConstantOffset · 7902405c
      Florian Hahn authored
      GetPointerBaseWithConstantOffset include this code, where ByteOffset
      and GEPOffset are both of type llvm::APInt :
      
        ByteOffset += GEPOffset.getSExtValue();
      
      The problem with this line is that getSExtValue() returns an int64_t, but
      the += matches an overload for uint64_t. The problem is that the resulting
      APInt is no longer considered to be signed. That in turn causes assertion
      failures later on if the relevant pointer type is > 64 bits in width and
      the GEPOffset was negative.
      
      Changing it to
      
        ByteOffset += GEPOffset.sextOrTrunc(ByteOffset.getBitWidth());
      
      resolves the issue and explicitly performs the sign-extending
      or truncation. Additionally, instead of asserting later if the result
      is > 64 bits, it breaks out of the loop in that case.
      
      See also
       https://reviews.llvm.org/D24729
       https://reviews.llvm.org/D24772
      
      This commit must be merged after D38662 in order for the test to pass.
      
      Patch by Michael Ferguson <mpfergu@gmail.com>.
      
      Reviewers: reames, sanjoy, hfinkel
      
      Reviewed By: hfinkel
      
      Differential Revision: https://reviews.llvm.org/D38501
      
      llvm-svn: 350395
      7902405c
    • Nico Weber's avatar
      [gn build] Make write_cmake_config.py check that each key passed is unique · da2a7656
      Nico Weber authored
      I got that wrong once while locally while working on check-llvm.
      
      Reviewed as part of https://reviews.llvm.org/D56195
      
      llvm-svn: 350394
      da2a7656
    • Stefan Granitz's avatar
      [CMake] Python bindings generation polishing · f9ef9e0c
      Stefan Granitz authored
      Summary:
      Simplify SWIG invocation and handling of generated files.
      
      The `swig_wrapper` target can generate `LLDBWrapPython.cpp` and `lldb.py` in its own binary directory, so we can get rid of a few global variables and their logic. We can use the swig_wrapper's BINARY_DIR target property to refer to it and liblldb's LIBRARY_OUTPUT_DIRECTORY to refer to the framework/shared object output directory.
      
      Reviewers: JDevlieghere, aprantl, stella.stamenova, beanz, zturner, xiaobai
      
      Reviewed By: aprantl
      
      Subscribers: mgorny, lldb-commits, #lldb
      
      Differential Revision: https://reviews.llvm.org/D55332
      
      llvm-svn: 350393
      f9ef9e0c
    • Stefan Granitz's avatar
      [CMake] Revised RPATH handling · 5d005a85
      Stefan Granitz authored
      Summary:
      If we build LLDB.framework, dependant tools need appropriate RPATHs in both locations, the build-tree (for testing) and the install-tree (for deployment). Luckily, CMake can handle it for us: https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/RPATH-handling.
      
      * In the build-tree, tools use the absolute path to the framework's actual output location.
      * In the install-tree, tools get a list of RPATHs to look for the framework when deployed.
      
      `LLDB_FRAMEWORK_INSTALL_DIR` is added to the `CMAKE_INSTALL_PREFIX` to change the relative location of LLDB.framework in the install-tree.
      If it is not empty, it will be added as an additional RPATH to all dependant tools (so they are functional in the install-tree).
      If it is empty, LLDB.framework goes to the root and tools will not be functional in the directory structure of the LLVM install-tree.
      For historical reasons `LLDB_FRAMEWORK_INSTALL_DIR` defaults to "Library/Frameworks".
      
      Reviewers: xiaobai, JDevlieghere, aprantl, clayborg
      
      Reviewed By: JDevlieghere
      
      Subscribers: ki.stfu, mgorny, lldb-commits, #lldb
      
      Differential Revision: https://reviews.llvm.org/D55330
      
      llvm-svn: 350392
      5d005a85
    • Stefan Granitz's avatar
      [CMake] Revised LLDB.framework builds · f126ce68
      Stefan Granitz authored
      Summary:
      Add features to LLDB CMake builds that have so far only been available in Xcode. Clean up a few inconveniences and prepare further improvements.
      
      Options:
      * `LLDB_FRAMEWORK_BUILD_DIR` determines target directory (in build-tree)
      * `LLDB_FRAMEWORK_INSTALL_DIR` **only** determines target directory in install-tree
      * `LLVM_EXTERNALIZE_DEBUGINFO` allows externalized debug info (dSYM on Darwin, emitted to `bin`)
      * `LLDB_FRAMEWORK_TOOLS` determines which executables will be copied to the framework's Resources (dropped symlinking, removed INCLUDE_IN_SUITE, removed dummy targets)
      
      Other changes:
      * clean up `add_lldb_executable()`
      * include `LLDBFramework.cmake` from `source/API/CMakeLists.txt`
      * use `*.plist.in` files, which are typical for CMake and independent from Xcode
      * add clang headers to the framework bundle
      
      Reviewers: xiaobai, JDevlieghere, aprantl, davide, beanz, stella.stamenova, clayborg, labath
      
      Reviewed By: aprantl
      
      Subscribers: friss, mgorny, lldb-commits, #lldb
      
      Differential Revision: https://reviews.llvm.org/D55328
      
      llvm-svn: 350391
      f126ce68
    • Stefan Granitz's avatar
      [CMake] Move debugserver options to separate debugserverConfig.cmake · d0dc161f
      Stefan Granitz authored
      Summary:
      One place for debugserver options, analog to LLDBConfig for LLDB options (see D55317). It was discussed in earlier reviews already, e.g. D55013.
      
      Reviewers: JDevlieghere, aprantl, xiaobai
      
      Reviewed By: aprantl, xiaobai
      
      Subscribers: mgorny, lldb-commits, #lldb
      
      Differential Revision: https://reviews.llvm.org/D55320
      
      llvm-svn: 350390
      d0dc161f
    • Stefan Granitz's avatar
      [CMake] Aggregate options for LLDB in LLDBConfig.cmake · fd6fedfb
      Stefan Granitz authored
      Summary: In preparation for LLDB.framework changes, collect options for LLDB in LLDBConfig.cmake (used for both, standalone and in-tree builds of LLDB).
      
      Reviewers: JDevlieghere, aprantl, xiaobai
      
      Reviewed By: aprantl
      
      Subscribers: srhines, mgorny, lldb-commits, #lldb
      
      Differential Revision: https://reviews.llvm.org/D55317
      
      llvm-svn: 350389
      fd6fedfb
    • Stefan Granitz's avatar
      [CMake] Streamline code signing for debugserver #2 · 90aeb4c8
      Stefan Granitz authored
      Summary:
      Major fixes after D54476 (use Diff1 as base for comparison to see only recent changes):
      * In standalone builds target directory for debugserver must be LLDB's bin, not LLVM's bin
      * Default identity for code signing must not force-override LLVM_CODESIGNING_IDENTITY globally
      
      We have a lot of cases, make them explicit:
      
      * ID used for code signing (debugserver and in tests):
      ** `LLDB_CODESIGN_IDENTITY` if set explicitly, or otherwise
      ** `LLVM_CODESIGNING_IDENTITY` if set explicitly, or otherwise
      ** `lldb_codesign` as the default
      
      * On Darwin we have a debugserver target that:
      
      * On other systems, the debugserver target is not defined, which is equivalent to **[3A]**
      
      Common configurations on Darwin:
      * **[1A]** `cmake -GNinja ../llvm` builds debugserver from source and signs with `lldb_codesign`, no code signing for other binaries (prints status: //lldb debugserver: /path/to/bin/debugserver//)
      * **[1A]** `cmake -GNinja -DLLVM_CODESIGNING_IDENTITY=- -DLLDB_CODESIGN_IDENTITY=lldb_codesign ../llvm` builds debugserver from source and signs with `lldb_codesign`, ad-hoc code signing for other binaries (prints status: //lldb debugserver: /path/to/bin/debugserver//)
      * **[2A]** `cmake -GNinja -DLLVM_CODESIGNING_IDENTITY=- -DLLDB_USE_SYSTEM_DEBUGSERVER=ON ../llvm` copies debugserver from system, ad-hoc code signing for other binaries (prints status: //Copy system debugserver from: /path/to/system/debugserver//)
      * **[2B]** `cmake -GNinja -DLLVM_CODESIGNING_IDENTITY=- ../llvm` same, but prints additional warning: //Cannot code sign debugserver with identity '-'. Will fall back to system's debugserver. Pass -DLLDB_CODESIGN_IDENTITY=lldb_codesign to override the LLVM value for debugserver.//
      * **[3A]** `cmake -GNinja -DLLVM_CODESIGNING_IDENTITY=- -DLLDB_NO_DEBUGSERVER=ON ../llvm` debugserver not available (prints status: //lldb debugserver will not be available)//
      
      Reviewers: JDevlieghere, beanz, davide, vsk, aprantl, labath
      
      Reviewed By: JDevlieghere, labath
      
      Subscribers: mgorny, #lldb, lldb-commits
      
      Differential Revision: https://reviews.llvm.org/D55013
      
      llvm-svn: 350388
      90aeb4c8
Loading