[Lldb-commits] [lldb] r328591 - Add the same new entitlement from r326399 to

2018-03-26 Thread Jason Molenda via lldb-commits
Author: jmolenda Date: Mon Mar 26 16:13:17 2018 New Revision: 328591 URL: http://llvm.org/viewvc/llvm-project?rev=328591&view=rev Log: Add the same new entitlement from r326399 to the macos entitlement list. Modified: lldb/trunk/tools/debugserver/source/debugserver-macosx-entitlements.plis

[Lldb-commits] [lldb] r328557 - Fix check for verbose logging.

2018-03-26 Thread Adrian Prantl via lldb-commits
Author: adrian Date: Mon Mar 26 10:40:44 2018 New Revision: 328557 URL: http://llvm.org/viewvc/llvm-project?rev=328557&view=rev Log: Fix check for verbose logging. Thanks to Pavel for pointing this out! Modified: lldb/trunk/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/AppleObjCRunti

Re: [Lldb-commits] [lldb] r328488 - Add and fix some tests for PPC64

2018-03-26 Thread Alexandre Yukio Yamashita via lldb-commits
If the issue was not solved yet, I can take a look at it if you send me the disassemble outputs with/without the breakpoints. Thanks. Em 26/03/2018 12:32, Davide Italiano escreveu: > Thanks, I'll take a look at the bots myself. > > On Mon, Mar 26, 2018 at 8:24 AM, Pavel Labath wrote: >> I was al

Re: [Lldb-commits] [lldb] r328488 - Add and fix some tests for PPC64

2018-03-26 Thread Davide Italiano via lldb-commits
Thanks, I'll take a look at the bots myself. On Mon, Mar 26, 2018 at 8:24 AM, Pavel Labath wrote: > I was also looking at this because it broke on our android bots. I have just > committed r328504 to fix those, and I believe it will fix the issues you are > seeing on osx (but I'll probably need t

Re: [Lldb-commits] [lldb] r328488 - Add and fix some tests for PPC64

2018-03-26 Thread Pavel Labath via lldb-commits
I was also looking at this because it broke on our android bots. I have just committed r328504 to fix those, and I believe it will fix the issues you are seeing on osx (but I'll probably need to go home before I can verify that). On Mon, 26 Mar 2018 at 16:14, Davide Italiano wrote: > This commi

[Lldb-commits] [lldb] r328504 - Fix TestDisassembleBreakpoint broken by r328488

2018-03-26 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon Mar 26 08:17:58 2018 New Revision: 328504 URL: http://llvm.org/viewvc/llvm-project?rev=328504&view=rev Log: Fix TestDisassembleBreakpoint broken by r328488 The first issue was that the test was capturing the "before" disassembly before launching, and the "after" after. Th

Re: [Lldb-commits] [lldb] r328488 - Add and fix some tests for PPC64

2018-03-26 Thread Davide Italiano via lldb-commits
This commit broke the Jenkins macOS x86-64 bots http://lab.llvm.org:8080/green/view/LLDB/job/lldb-cmake/5943/testReport/junit/TestDisassembleBreakpoint/DisassemblyTestCase/test_dwarf/ Can you take a look? (if you can't, let me know). Thanks, -- Davide On Mon, Mar 26, 2018 at 5:42 AM, Pavel Lab

[Lldb-commits] [PATCH] D44306: Move Args::StringToAddress to Target::EvaluateAddressExpression

2018-03-26 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. So, any objections to this patch? https://reviews.llvm.org/D44306 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D44739: [SymbolFileDWARF] Replace FixedFormSizes with llvm::dwarf::getFixedFormByteSize

2018-03-26 Thread Pavel Labath via Phabricator via lldb-commits
labath abandoned this revision. labath added a comment. I'm not sure my benchmark strategy is correct here. I'm getting different (but consistent) results even after making changes that should not impact performance at all (e.g. because I change the code which is not executed). I'll abandon thi

[Lldb-commits] [lldb] r328489 - Make @skipUnlessSupportedTypeAttribute windows-compatible

2018-03-26 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon Mar 26 05:47:40 2018 New Revision: 328489 URL: http://llvm.org/viewvc/llvm-project?rev=328489&view=rev Log: Make @skipUnlessSupportedTypeAttribute windows-compatible - close_fds is not compatible with stdin/out redirection on windows. I just remove it, as this is not re

[Lldb-commits] [PATCH] D44472: Add and fix some tests for PPC64

2018-03-26 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL328488: Add and fix some tests for PPC64 (authored by labath, committed by ). Herald added a subscriber: llvm-commits. Changed prior to commit: https://reviews.llvm.org/D44472?vs=138699&id=139777#toc R

[Lldb-commits] [lldb] r328488 - Add and fix some tests for PPC64

2018-03-26 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon Mar 26 05:42:07 2018 New Revision: 328488 URL: http://llvm.org/viewvc/llvm-project?rev=328488&view=rev Log: Add and fix some tests for PPC64 Summary: TestExprsChar.py Char is unsigned char by default in PowerPC. TestDisassembleBreakpoint.py Modify disassemble testcase to

[Lldb-commits] [lldb] r328486 - [LLDB][PPC64] Fix TestGdbRemoteAuxvSupport

2018-03-26 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon Mar 26 05:00:52 2018 New Revision: 328486 URL: http://llvm.org/viewvc/llvm-project?rev=328486&view=rev Log: [LLDB][PPC64] Fix TestGdbRemoteAuxvSupport Summary: PPC64's auxvec has a special key that must be ignored. Reviewers: clayborg, labath Reviewed By: clayborg, laba

[Lldb-commits] [PATCH] D44738: Add a test for setting the load address of a module with differing physical/virtual addresses

2018-03-26 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL328485: Add a test for setting the load address of a module with differing… (authored by labath, committed by ). Herald added a subscriber: llvm-commits. Repository: rL LLVM https://reviews.llvm.org/D4

[Lldb-commits] [lldb] r328485 - Add a test for setting the load address of a module with differing physical/virtual addresses

2018-03-26 Thread Pavel Labath via lldb-commits
Author: labath Date: Mon Mar 26 04:45:32 2018 New Revision: 328485 URL: http://llvm.org/viewvc/llvm-project?rev=328485&view=rev Log: Add a test for setting the load address of a module with differing physical/virtual addresses Summary: First attempt at landing D42145 was reverted because it caus

Re: [Lldb-commits] [lldb] r328365 - Log ObjC Runtime messages only in verbose mode

2018-03-26 Thread Pavel Labath via lldb-commits
On Fri, 23 Mar 2018 at 20:20, Adrian Prantl via lldb-commits < lldb-commits@lists.llvm.org> wrote: > Author: adrian > Date: Fri Mar 23 13:17:39 2018 > New Revision: 328365 > > URL: http://llvm.org/viewvc/llvm-project?rev=328365&view=rev > Log: > Log ObjC Runtime messages only in verbose mode > > M