Re: [Lldb-commits] [PATCH] D12757: Fix prologue end handling when code compiled by gcc

2015-09-17 Thread Tamas Berghammer via lldb-commits
tberghammer added a comment. I see. Thank you for the clarification Repository: rL LLVM http://reviews.llvm.org/D12757 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [Diffusion] rL245905: Final bit of type system cleanup that abstracts declaration contexts into…

2015-09-17 Thread Tamas Berghammer via lldb-commits
tberghammer added subscribers: lldb-commits, sivachandra. tberghammer added a comment. Hi Greg, This change introduced a regression in expression evaluation. When I try to evaluate any expression in some specific context then lldb prints out the following error: error: out-of-line definition

Re: [Lldb-commits] [PATCH] D12942: Fix caching for clang::Decl in DWARFASTParserClang

2015-09-17 Thread Tamas Berghammer via lldb-commits
tberghammer accepted this revision. tberghammer added a comment. This revision is now accepted and ready to land. Looks good with minor comment inline Comment at: source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp:3228-3230 @@ -3227,3 +3227,5 @@ -if (die.GetReferenced

[Lldb-commits] [PATCH] D12962: Use ClangASTContext for compile units with language eLanguageTypeMipsAssembler

2015-09-18 Thread Tamas Berghammer via lldb-commits
tberghammer created this revision. tberghammer added reviewers: jingham, dawn. tberghammer added a subscriber: lldb-commits. Use ClangASTContext for compile units with language eLanguageTypeMipsAssembler Both GNU AS and LLVM emits language type DW_LANG_Mips_Assembler for all assembly code. http

[Lldb-commits] [PATCH] D12963: Eliminate a potential crash in the struct layout code with a gracefull fallback

2015-09-18 Thread Tamas Berghammer via lldb-commits
tberghammer created this revision. tberghammer added a reviewer: spyffe. tberghammer added a subscriber: lldb-commits. Eliminate a potential crash in the struct layout code with a gracefull fallback http://reviews.llvm.org/D12963 Files: source/Expression/ClangASTSource.cpp Index: source/Expre

Re: [Lldb-commits] [PATCH] D12899: cmake fixups: post-build python step dependency and lldb-server dependency for lldb on Linux

2015-09-18 Thread Tamas Berghammer via lldb-commits
tberghammer added a subscriber: tberghammer. tberghammer added a comment. In http://reviews.llvm.org/D12899#248654, @ki.stfu wrote: > In http://reviews.llvm.org/D12899#248648, @zturner wrote: > > > One possible solution is to make an lldb-all target. > > > As I said, it would much better rather t

Re: [Lldb-commits] [PATCH] D12962: Use ClangASTContext for compile units with language eLanguageTypeMipsAssembler

2015-09-21 Thread Tamas Berghammer via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL248146: Use ClangASTContext for compile units with language eLanguageTypeMipsAssembler (authored by tberghammer). Changed prior to commit: http://reviews.llvm.org/D12962?vs=35083&id=35218#toc Repositor

[Lldb-commits] [lldb] r248146 - Use ClangASTContext for compile units with language eLanguageTypeMipsAssembler

2015-09-21 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Mon Sep 21 05:08:49 2015 New Revision: 248146 URL: http://llvm.org/viewvc/llvm-project?rev=248146&view=rev Log: Use ClangASTContext for compile units with language eLanguageTypeMipsAssembler Both GNU AS and LLVM emits language type DW_LANG_Mips_Assembler for all assembly

Re: [Lldb-commits] [PATCH] D12976: Fix TestChangeProcessGroup to properly step out of sleep.

2015-09-21 Thread Tamas Berghammer via lldb-commits
tberghammer added a subscriber: tberghammer. tberghammer added a comment. I committed in the fix mentioned by Pavel as http://reviews.llvm.org/rL248146 http://reviews.llvm.org/D12976 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://l

Re: [Lldb-commits] [PATCH] D12954: Reduce inclusion of clang headers.

2015-09-21 Thread Tamas Berghammer via lldb-commits
tberghammer added a subscriber: tberghammer. tberghammer added a comment. Possibly we can try to run IWYU (https://github.com/include-what-you-use/include-what-you-use). I haven't tried it but it sounds like a tool what is suitable for the task. Repository: rL LLVM http://reviews.llvm.org/D

[Lldb-commits] [lldb] r248148 - Fix MSVC warings in DWARFExpression.cpp

2015-09-21 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Mon Sep 21 05:24:59 2015 New Revision: 248148 URL: http://llvm.org/viewvc/llvm-project?rev=248148&view=rev Log: Fix MSVC warings in DWARFExpression.cpp Modified: lldb/trunk/source/Expression/DWARFExpression.cpp Modified: lldb/trunk/source/Expression/DWARFExpression.

Re: [Lldb-commits] [PATCH] D13028: [RFC] Merge dsym and dwarf test cases

2015-09-21 Thread Tamas Berghammer via lldb-commits
tberghammer added a comment. I decided to make it an opt-out feature as most of the test case will use some debug info and this way you don't have to specify it explicitly (mutating a test what don't have any debug info only have performance hit because it will run the same test multiple times)

Re: [Lldb-commits] [Diffusion] rL248277: [MIPS32] Emulate MSA instructions for MIPS32

2015-09-22 Thread Tamas Berghammer via lldb-commits
tberghammer added a subscriber: lldb-commits. http://reviews.llvm.org/rL248277 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Re: [Lldb-commits] [Diffusion] rL248277: [MIPS32] Emulate MSA instructions for MIPS32

2015-09-22 Thread Tamas Berghammer via lldb-commits
tberghammer added a subscriber: tberghammer. tberghammer raised a concern with this commit. tberghammer added a comment. Hi Sagar, This change break the Linux build (http://lab.llvm.org:8011/builders/lldb-x86_64-ubuntu-14.04-cmake/builds/6568) because the register enums have been renamed recent

[Lldb-commits] [lldb] r248281 - Fix register names in EmulateInstructionMIPS.cpp

2015-09-22 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Tue Sep 22 10:04:39 2015 New Revision: 248281 URL: http://llvm.org/viewvc/llvm-project?rev=248281&view=rev Log: Fix register names in EmulateInstructionMIPS.cpp Modified: lldb/trunk/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp Modified: lldb/trunk/sour

Re: [Lldb-commits] [Diffusion] rL248277: [MIPS32] Emulate MSA instructions for MIPS32

2015-09-22 Thread Tamas Berghammer via lldb-commits
tberghammer resigned from this audit. tberghammer added a comment. I committed in a build fix as http://reviews.llvm.org/rL248281 Users: tberghammer (Auditor) http://reviews.llvm.org/rL248277 ___ lldb-commits mailing list lldb-commits@lists.llvm.

Re: [Lldb-commits] [PATCH] D13028: Merge dsym and dwarf test cases

2015-09-22 Thread Tamas Berghammer via lldb-commits
tberghammer added a comment. In http://reviews.llvm.org/D13028#250822, @clayborg wrote: > Looks good. For the failing test cases, just check this stuff in and we > should take care or marking any needed tests and expected fail. Is there a > way to mark a test such that the "dwarf in .o files" w

[Lldb-commits] [lldb] r248373 - Fix xcode build after r248366

2015-09-23 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Wed Sep 23 06:00:35 2015 New Revision: 248373 URL: http://llvm.org/viewvc/llvm-project?rev=248373&view=rev Log: Fix xcode build after r248366 Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj Modified: lldb/trunk/lldb.xcodeproj/project.pbxproj URL: http://llvm.or

[Lldb-commits] [PATCH] D13162: Change oat symbolization code for android to work on non-rooted devices

2015-09-25 Thread Tamas Berghammer via lldb-commits
tberghammer created this revision. tberghammer added a reviewer: ovyalov. tberghammer added a subscriber: lldb-commits. Herald added subscribers: danalbert, tberghammer. Change oat symbolization code for android to work on non-rooted devices On android when debugging an apk we run lldb-server as

[Lldb-commits] [lldb] r248571 - Eliminate a potential crash in the struct layout code with a gracefull fallback

2015-09-25 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Fri Sep 25 07:50:51 2015 New Revision: 248571 URL: http://llvm.org/viewvc/llvm-project?rev=248571&view=rev Log: Eliminate a potential crash in the struct layout code with a gracefull fallback Differential revision: http://reviews.llvm.org/D12963 Modified: lldb/trunk

Re: [Lldb-commits] [PATCH] D12963: Eliminate a potential crash in the struct layout code with a gracefull fallback

2015-09-25 Thread Tamas Berghammer via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL248571: Eliminate a potential crash in the struct layout code with a gracefull fallback (authored by tberghammer). Changed prior to commit: http://reviews.llvm.org/D12963?vs=35084&id=35717#toc Reposito

Re: [Lldb-commits] [PATCH] D13162: Change oat symbolization code for android to work on non-rooted devices

2015-09-29 Thread Tamas Berghammer via lldb-commits
tberghammer marked 3 inline comments as done. Comment at: source/Plugins/Platform/Android/PlatformAndroid.cpp:340 @@ -346,1 +339,3 @@ [this](std::string* s) { +AdbClient adb(m_device_id); + ovyalov wrote: > Could you reuse adb variable defined

[Lldb-commits] [lldb] r248788 - Change oat symbolization code for android to work on non-rooted devices

2015-09-29 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Tue Sep 29 06:04:18 2015 New Revision: 248788 URL: http://llvm.org/viewvc/llvm-project?rev=248788&view=rev Log: Change oat symbolization code for android to work on non-rooted devices On android when debugging an apk we run lldb-server as application user because the sel

Re: [Lldb-commits] [PATCH] D13162: Change oat symbolization code for android to work on non-rooted devices

2015-09-29 Thread Tamas Berghammer via lldb-commits
This revision was automatically updated to reflect the committed changes. tberghammer marked an inline comment as done. Closed by commit rL248788: Change oat symbolization code for android to work on non-rooted devices (authored by tberghammer). Changed prior to commit: http://reviews.llvm.org/

[Lldb-commits] [PATCH] D13245: Add support for .ARM.exidx unwind information

2015-09-29 Thread Tamas Berghammer via lldb-commits
tberghammer created this revision. tberghammer added a reviewer: jasonmolenda. tberghammer added a subscriber: lldb-commits. Herald added subscribers: rengolin, aemerson. .ARM.exidx/.ARM.extab sections contain unwind information used on ARM architecture from unwinding from an exception. http://r

<    3   4   5   6   7   8