[Lldb-commits] [lldb] r248401 - DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child

2015-09-23 Thread Siva Chandra via lldb-commits
Author: sivachandra Date: Wed Sep 23 12:47:08 2015 New Revision: 248401 URL: http://llvm.org/viewvc/llvm-project?rev=248401&view=rev Log: DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child Summary: With this change DWARFASTParserClang::CompleteTypeFromDWARF returns f

[Lldb-commits] [lldb] r248416 - [TestCppIncompleteTypes] Fix Makefile to handle different archs.

2015-09-23 Thread Siva Chandra via lldb-commits
Author: sivachandra Date: Wed Sep 23 13:36:39 2015 New Revision: 248416 URL: http://llvm.org/viewvc/llvm-project?rev=248416&view=rev Log: [TestCppIncompleteTypes] Fix Makefile to handle different archs. Reviewers: chying Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org/D

[Lldb-commits] [PATCH] D13111: [TestCppIncompleteTypes] Fix Makefile to handle different archs.

2015-09-23 Thread Siva Chandra via lldb-commits
sivachandra created this revision. sivachandra added a reviewer: chying. sivachandra added a subscriber: lldb-commits. http://reviews.llvm.org/D13111 Files: test/lang/cpp/incomplete-types/Makefile Index: test/lang/cpp/incomplete-types/Makefile ==

Re: [Lldb-commits] [PATCH] D13111: [TestCppIncompleteTypes] Fix Makefile to handle different archs.

2015-09-23 Thread Siva Chandra via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL248416: [TestCppIncompleteTypes] Fix Makefile to handle different archs. (authored by sivachandra). Changed prior to commit: http://reviews.llvm.org/D13111?vs=35535&id=35539#toc Repository: rL LLVM

Re: [Lldb-commits] [PATCH] D12809: Better scheme to lookup alternate mangled name when looking up function address.

2015-09-23 Thread Siva Chandra via lldb-commits
sivachandra added a comment. Friendly periodic ping. Let me know if once in 2 days is too frequent. http://reviews.llvm.org/D12809 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [PATCH] D13066: DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child

2015-09-23 Thread Siva Chandra via lldb-commits
sivachandra added inline comments. Comment at: test/lang/cpp/incomplete-types/Makefile:8 @@ +7,3 @@ + +ifneq (,$(findstring clang,$(CC))) + CFLAGS_LIMIT += -flimit-debug-info dblaikie wrote: > In case it's interesting, you can get similarly problematic DWARF by u

Re: [Lldb-commits] [lldb] r248401 - DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child

2015-09-24 Thread Siva Chandra via lldb-commits
On Thu, Sep 24, 2015 at 6:40 AM, Ed Maste wrote: > The test case fails on FreeBSD right now because there's no error on > "limit" and "nolimit": > > (lldb) expr f > (Foo) $0 = (s = "qwerty") > (lldb) expr s > (MyString) $1 = (std::__1::string = "qwerty") > Does -flimit-debug-info have any effect

Re: [Lldb-commits] [lldb] r248401 - DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child

2015-09-24 Thread Siva Chandra via lldb-commits
On Thu, Sep 24, 2015 at 6:47 AM, Siva Chandra wrote: > > > On Thu, Sep 24, 2015 at 6:40 AM, Ed Maste wrote: > >> The test case fails on FreeBSD right now because there's no error on >> "limit" and "nolimit": >> >> (lldb) expr f >> (Foo) $0 = (s = "qwerty") >> (lldb) expr s >> (MyString) $1 = (st

Re: [Lldb-commits] [lldb] r248401 - DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child

2015-09-24 Thread Siva Chandra via lldb-commits
I don't have access to a FreeBSD or a mac at the moment. Can you, or someone else, check how -fstandalone-debug and -fno-standalone-debug behave? On Thu, Sep 24, 2015 at 6:57 AM, Siva Chandra wrote: > On Thu, Sep 24, 2015 at 6:47 AM, Siva Chandra > wrote: > >> >> >> On Thu, Sep 24, 2015 at 6:40

[Lldb-commits] [PATCH] D13143: [TestCppIncompleteTypes] Remove the dependence on std::string.

2015-09-24 Thread Siva Chandra via lldb-commits
sivachandra created this revision. sivachandra added reviewers: dblaikie, clayborg. sivachandra added a subscriber: lldb-commits. http://reviews.llvm.org/D13143 Files: test/lang/cpp/incomplete-types/Makefile test/lang/cpp/incomplete-types/TestCppIncompleteTypes.py test/lang/cpp/incomplete-t

[Lldb-commits] [lldb] r248541 - [TestCppIncompleteTypes] Remove the dependence on std::string.

2015-09-24 Thread Siva Chandra via lldb-commits
Author: sivachandra Date: Thu Sep 24 16:29:54 2015 New Revision: 248541 URL: http://llvm.org/viewvc/llvm-project?rev=248541&view=rev Log: [TestCppIncompleteTypes] Remove the dependence on std::string. Reviewers: dblaikie, clayborg Subscribers: lldb-commits Differential Revision: http://reviews.

Re: [Lldb-commits] [lldb] r248401 - DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child

2015-09-24 Thread Siva Chandra via lldb-commits
On Thu, Sep 24, 2015 at 2:15 PM, Ed Maste wrote: > On 24 September 2015 at 10:04, Siva Chandra > wrote: > > I don't have access to a FreeBSD or a mac at the moment. Can you, or > someone > > else, check how -fstandalone-debug and -fno-standalone-debug behave? > > Both OS X and FreeBSD default to

[Lldb-commits] [PATCH] D13147: [TestCppIncompleteTypes] Handle different archs when building a.o.

2015-09-24 Thread Siva Chandra via lldb-commits
sivachandra created this revision. sivachandra added a reviewer: chying. sivachandra added a subscriber: lldb-commits. http://reviews.llvm.org/D13147 Files: test/lang/cpp/incomplete-types/Makefile Index: test/lang/cpp/incomplete-types/Makefile ==

[Lldb-commits] [lldb] r248547 - [TestCppIncompleteTypes] Handle different archs when building a.o.

2015-09-24 Thread Siva Chandra via lldb-commits
Author: sivachandra Date: Thu Sep 24 17:13:36 2015 New Revision: 248547 URL: http://llvm.org/viewvc/llvm-project?rev=248547&view=rev Log: [TestCppIncompleteTypes] Handle different archs when building a.o. Reviewers: chying Subscribers: lldb-commits Differential Revision: http://reviews.llvm.org

Re: [Lldb-commits] [PATCH] D13147: [TestCppIncompleteTypes] Handle different archs when building a.o.

2015-09-24 Thread Siva Chandra via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL248547: [TestCppIncompleteTypes] Handle different archs when building a.o. (authored by sivachandra). Changed prior to commit: http://reviews.llvm.org/D13147?vs=35678&id=35679#toc Repository: rL LLVM

Re: [Lldb-commits] [lldb] r248401 - DWARFASTParserClang::CompleteTypeFromDWARF: Handle incomplete baseclass or child

2015-09-24 Thread Siva Chandra via lldb-commits
On Thu, Sep 24, 2015 at 4:57 PM, Ed Maste wrote: > On 24 September 2015 at 17:35, Siva Chandra > wrote: > > > > As blaikie pointed out on the review, it could be because libc++ (which > is > > the default on FreeBSD and Darwin?) does not have an explicit declaration > > for std::basic_string<...

[Lldb-commits] [PATCH] D13224: [DWARFASTParserClang] Strengthen incomplete type handling.

2015-09-28 Thread Siva Chandra via lldb-commits
sivachandra created this revision. sivachandra added a reviewer: clayborg. sivachandra added a subscriber: lldb-commits. This change fixes pr24916. As associated test has been added. http://reviews.llvm.org/D13224 Files: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp test/lang/cpp/p

Re: [Lldb-commits] [PATCH] D13224: [DWARFASTParserClang] Strengthen incomplete type handling.

2015-09-28 Thread Siva Chandra via lldb-commits
sivachandra updated this revision to Diff 35907. sivachandra added a comment. Rename test directory to limit-debug-info. http://reviews.llvm.org/D13224 Files: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp test/lang/cpp/limit-debug-info/Makefile test/lang/cpp/limit-debug-info/Tes

Re: [Lldb-commits] [PATCH] D13224: [DWARFASTParserClang] Strengthen incomplete type handling.

2015-09-28 Thread Siva Chandra via lldb-commits
sivachandra added a comment. About Makefile changes in other tests, I will one day clean all places where no-limit-debug-info shows up in the Makefile. Just in case, zturner's comment about Makefiles on the other change came in a day after I landed the change. So, I will have to do it in another

Re: [Lldb-commits] [Diffusion] rL247746: Search variables based on clang::DeclContext and clang::Decl tree

2015-09-29 Thread Siva Chandra via lldb-commits
sivachandra added a subscriber: sivachandra. sivachandra added a comment. Calling this a regression is probably harsh. Without looking into it much, my feeling here is that Clang (the LLDB compiler) does not ask for the value ScNSpacGl in the global namespace, but just for a value named ScNSpacG

[Lldb-commits] [lldb] remove common libc tuners (PR #66136)

2023-09-13 Thread Siva Chandra via lldb-commits
https://github.com/sivachandra updated https://github.com/llvm/llvm-project/pull/66136: >From d1a9fda20a2be37385b44dcbf2f73b1890fa7d78 Mon Sep 17 00:00:00 2001 From: Siva Chandra Reddy Date: Tue, 12 Sep 2023 05:42:37 + Subject: [PATCH 1/3] [libc][NFC] Make entrypoint alias targets real libr

[Lldb-commits] [lldb] remove common libc tuners (PR #66136)

2023-09-13 Thread Siva Chandra via lldb-commits
https://github.com/sivachandra closed https://github.com/llvm/llvm-project/pull/66136 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] Upcoming upgrade of LLVM buildbot

2020-10-13 Thread Siva Chandra via lldb-commits
On Mon, Oct 12, 2020 at 10:01 PM Galina Kistanova via lldb-commits wrote: > If somebody else could move their AnnotatedCommand bots to the staging area, > that would be much appreciated. I moved the libc bots to staging to now. Thanks, Siva Chandra __

<    1   2   3