https://github.com/lixi-zhou updated
https://github.com/llvm/llvm-project/pull/65696:
>From eacec22651766c6c6961d14964ddb6a180fbfec0 Mon Sep 17 00:00:00 2001
From: Lixi Zhou
Date: Thu, 7 Sep 2023 16:15:25 -0700
Subject: [PATCH] fix failed ompt test on M1 device
---
openmp/runtime/test/ompt/ca
@@ -811,8 +812,13 @@ LogicalResult
ConvertAllocOpToGpuRuntimeCallPattern::matchAndRewrite(
// descriptor.
Type elementPtrType = this->getElementPtrType(memRefType);
auto stream = adaptor.getAsyncDependencies().front();
+
+ auto isHostShared = rewriter.create(
+ loc
@@ -0,0 +1,70 @@
+//===- SerializeToSPIRV.cpp - Convert GPU kernel to SPIRV blob
-===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Ap
JDevlieghere added a comment.
Looks like this broke the X86 bot:
https://green.lab.llvm.org/green/view/LLDB/job/lldb-cmake/59815/
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157609/new/
https://reviews.llvm.org/D157609
_
Author: Jonas Devlieghere
Date: 2023-09-07T16:26:53-07:00
New Revision: 3aa678a777354824d18faa427983d10ecbdd8943
URL:
https://github.com/llvm/llvm-project/commit/3aa678a777354824d18faa427983d10ecbdd8943
DIFF:
https://github.com/llvm/llvm-project/commit/3aa678a777354824d18faa427983d10ecbdd8943.d
@@ -40,7 +40,8 @@ VSCode::VSCode()
{"swift_catch", "Swift Catch", lldb::eLanguageTypeSwift},
{"swift_throw", "Swift Throw", lldb::eLanguageTypeSwift}}),
focus_tid(LLDB_INVALID_THREAD_ID), sent_terminated_event(false),
- stop_at_entry(false), is_
https://github.com/walter-erquinigo updated
https://github.com/llvm/llvm-project/pull/65687:
>From fc0700e761db9761675c42826e8f5bfa5b510840 Mon Sep 17 00:00:00 2001
From: walter erquinigo
Date: Thu, 7 Sep 2023 18:35:10 -0400
Subject: [PATCH] [lldb-vscode] Make descriptive summaries and raw chil
@@ -240,6 +240,16 @@
"timeout": {
"type":
"string",
"description":
"The time in seconds to wait
@@ -240,6 +240,16 @@
"timeout": {
"type":
"string",
"description":
"The time in seconds to wait
https://github.com/walter-erquinigo review_requested
https://github.com/llvm/llvm-project/pull/65687
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/walter-erquinigo review_requested
https://github.com/llvm/llvm-project/pull/65687
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/walter-erquinigo review_requested
https://github.com/llvm/llvm-project/pull/65687
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/walter-erquinigo ready_for_review
https://github.com/llvm/llvm-project/pull/65687
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/github-actions[bot] labeled
https://github.com/llvm/llvm-project/pull/65687
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/walter-erquinigo created
https://github.com/llvm/llvm-project/pull/65687:
"descriptive summaries" should only be used for small to medium binaries
because of the performance penalty the cause when completing types. I'm
defaulting it to false.
Besides that, the "raw child" fo
Jianhui-Li wrote:
> > At some point it would be nice to have some design document or
> > documentation somewhere explaining how all these MLIR runners works,
> > including this one.
>
> The idea is to eventually consolidate all runners into one. This PR is just
> another piece of the puzzle.
https://github.com/jimingham commented:
A good change, Value is a pretty loaded word in lldb, and doesn't seem directly
relevant here.
https://github.com/llvm/llvm-project/pull/6
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://li
@@ -132,6 +132,84 @@ std::vector GetStrings(const
llvm::json::Object *obj,
return strs;
}
+/// Create a short summary for a container that contains the summary of its
+/// first children, so that the user can get a glimpse of its contents at a
+/// glance.
+static std::opti
https://github.com/clayborg edited
https://github.com/llvm/llvm-project/pull/65514
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/clayborg commented:
This will cause large performance regressions when debugging large complex
codebases due to the extra type completions that will now happen every time you
stop somewhere and view variables.
https://github.com/llvm/llvm-project/pull/65514
_
https://github.com/bulbazord closed
https://github.com/llvm/llvm-project/pull/6
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Alex
Date: 2023-09-07T10:16:55-07:00
New Revision: 140f6167b885b4e0d6672a7f41c2b2b551c0204d
URL:
https://github.com/llvm/llvm-project/commit/140f6167b885b4e0d6672a7f41c2b2b551c0204d
DIFF:
https://github.com/llvm/llvm-project/commit/140f6167b885b4e0d6672a7f41c2b2b551c0204d.diff
LOG: [ll
https://github.com/bulbazord approved this pull request.
All are excellent tips. Thanks for working on this, this is amazing! 😄
https://github.com/llvm/llvm-project/pull/65635
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llv
@@ -258,3 +263,302 @@ then ``lldb B`` to trigger ``lldb-server B`` to go into
that code and hit the
breakpoint. ``lldb-server A`` is only here to let us debug ``lldb-server B``
remotely.
+Debugging The Remote Protocol
+-
+
+LLDB mostly follows the
https://github.com/bulbazord edited
https://github.com/llvm/llvm-project/pull/65635
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere approved this pull request.
https://github.com/llvm/llvm-project/pull/65635
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
clayborg wrote:
Not sure I like this showing up all of the time. It is fine for people that
want to debug synthetic child providers, but seeing this all of the time adds
noise to the variable window for no real benefit. I believe that plug-ins can
have settings within VS code and it would be n
https://github.com/adrian-prantl approved this pull request.
https://github.com/llvm/llvm-project/pull/65635
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DavidSpickett updated
https://github.com/llvm/llvm-project/pull/65635:
>From 7c511c4beb3258894a5b9ceb884b5469b00368c0 Mon Sep 17 00:00:00 2001
From: David Spickett
Date: Thu, 7 Sep 2023 11:05:36 +0100
Subject: [PATCH 1/2] [lldb][Docs] Additions to debuging LLDB page
Adds the
NuriAmari wrote:
> What about an option that just redirects the PrintIRInstrumentation output to
> files instead of stderr? The files can be something like `$N-$modulename.ll`
> where `$N` is an int that increments.
Yeah that's more or less what I'm working on now. My plan is:
- Add a flag th
https://github.com/github-actions[bot] labeled
https://github.com/llvm/llvm-project/pull/65635
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
aeubanks wrote:
What about an option that just redirects the PrintIRInstrumentation output to
files instead of stderr? The files can be something like `$N-$modulename.ll`
where `$N` is an int that increments.
https://github.com/llvm/llvm-project/pull/65179
_
https://github.com/DavidSpickett review_requested
https://github.com/llvm/llvm-project/pull/65635
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DavidSpickett created
https://github.com/llvm/llvm-project/pull/65635:
Adds the following:
* A note that you can use attaching to debug the right lldb-server process,
though there are drawbacks.
* A section on debugging the remote protocol.
* Reducing bugs, including reducing
https://github.com/NuriAmari closed
https://github.com/llvm/llvm-project/pull/65179
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -93,4 +93,4 @@
// RUN: not %clang_cc1 -triple riscv64 -tune-cpu not-a-cpu -fsyntax-only %s
2>&1 | FileCheck %s --check-prefix TUNE-RISCV64
// TUNE-RISCV64: error: unknown target CPU 'not-a-cpu'
-// TUNE-RISCV64-NEXT: note: valid target CPU values are: generic-rv64,
rocket
https://github.com/medismailben approved this pull request.
https://github.com/llvm/llvm-project/pull/6
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
chsigg wrote:
Landed:
https://github.com/llvm/llvm-project/commit/42db67c3ab3f657333f1a6bc90fed828f754945e
https://github.com/llvm/llvm-project/pull/65583
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman
https://github.com/chsigg closed https://github.com/llvm/llvm-project/pull/65583
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
rengolin wrote:
CI failure looks like Buildkite issue?
```
$ /etc/buildkite-agent/hooks/pre-checkout
--
 | BUILDKITE_REPO: https://github.com/llvm/llvm-project.git
 | fatal: not a git repository (or any parent up to mount point /var/lib)
 | Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS
https://github.com/ftynse approved this pull request.
https://github.com/llvm/llvm-project/pull/65583
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
rengolin wrote:
> At some point it would be nice to have some design document or documentation
> somewhere explaining how all these MLIR runners works, including this one.
The idea is to eventually consolidate all runners into one. This PR is just
another piece of the puzzle.
Once we're all h
https://github.com/github-actions[bot] labeled
https://github.com/llvm/llvm-project/pull/65583
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/github-actions[bot] labeled
https://github.com/llvm/llvm-project/pull/65583
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/wenzhi-cui review_requested
https://github.com/llvm/llvm-project/pull/65583
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/wenzhi-cui created
https://github.com/llvm/llvm-project/pull/65583:
None
>From 76107e6a14ca1f496d29bc2f7cb752f39f2665bf Mon Sep 17 00:00:00 2001
From: wenzhi-cui
Date: Thu, 7 Sep 2023 11:13:45 +0800
Subject: [PATCH 1/2] Fix AtomicInterfacesTdFiles missing deps/typos in Bazel
This revision was automatically updated to reflect the committed changes.
Closed by commit rGa723694321b9: [lldb] Add more ways to find split DWARF files
(authored by DavidSpickett).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157609/new/
https://
Author: David Spickett
Date: 2023-09-07T08:19:11Z
New Revision: a723694321b993f6f53fedf50e70e9cf5a206357
URL:
https://github.com/llvm/llvm-project/commit/a723694321b993f6f53fedf50e70e9cf5a206357
DIFF:
https://github.com/llvm/llvm-project/commit/a723694321b993f6f53fedf50e70e9cf5a206357.diff
LOG
DavidSpickett added a comment.
No problem. I doubt this is all of them but at least users can now workaround
the gaps using the setting, and hack up one of these test cases to make
reproducers.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D157609/
https://github.com/grypp edited https://github.com/llvm/llvm-project/pull/65539
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -811,8 +812,13 @@ LogicalResult
ConvertAllocOpToGpuRuntimeCallPattern::matchAndRewrite(
// descriptor.
Type elementPtrType = this->getElementPtrType(memRefType);
auto stream = adaptor.getAsyncDependencies().front();
+
+ auto isHostShared = rewriter.create(
+ loc
51 matches
Mail list logo