[Lldb-commits] [PATCH] D11465: Fix "process load/unload" on android

2017-07-27 Thread Nitesh Jain via Phabricator via lldb-commits
nitesh.jain added inline comments. Comment at: lldb/trunk/source/Plugins/Platform/Android/PlatformAndroid.cpp:389 + struct __lldb_dlopen_result { void *image_ptr; const char *error_str; } the_result; + the_result.image_ptr = __dl_dlopen ("%s",

[Lldb-commits] [lldb] r309265 - XFAIL/XFlakey some tests what become very flakey on the Linux buildbot

2017-07-27 Thread Tamas Berghammer via lldb-commits
Author: tberghammer Date: Thu Jul 27 05:01:32 2017 New Revision: 309265 URL: http://llvm.org/viewvc/llvm-project?rev=309265&view=rev Log: XFAIL/XFlakey some tests what become very flakey on the Linux buildbot Modified: lldb/trunk/packages/Python/lldbsuite/test/functionalities/thread/concurre

[Lldb-commits] LLDB remote serial protocol

2017-07-27 Thread Luigi via lldb-commits
Hi, I have a question about the connection to a custom target with lldb. My problem is: i should create a debugger for code verification and fault injection on a core architecture (synthesized on fpga) in which the compiler is LLVM based. I think to use LLDB because the core target was just d

[Lldb-commits] [PATCH] D11465: Fix "process load/unload" on android

2017-07-27 Thread Tamas Berghammer via Phabricator via lldb-commits
tberghammer added a comment. Hi Nitesh, The way dlopen, dlclose and dl_phdr_iterate is implemented on android is pretty strange until (and including) SDK 25. The trick is that these functions are implemented inside "/system/bin/linker" with actual function names prefixed with "__dl_". The link

[Lldb-commits] [PATCH] D33213: Use socketpair on all Unix platforms

2017-07-27 Thread Greg Clayton via Phabricator via lldb-commits
clayborg accepted this revision. clayborg added a comment. I'm ok as long as Pavel is ok. Please wait for the OK from him as well. https://reviews.llvm.org/D33213 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bi

[Lldb-commits] [PATCH] D35784: [LLD][MIPS] Fix Address::GetAddressClass() to return correct AddressClass based on the load address

2017-07-27 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. So the issue is with the ObjectFileELF when it makes its symbol table. It is taking this symbols: 49686: bcf0 0 NOTYPE LOCAL DEFAULT 40 $debug_ranges627 And saying it is a code symbol. This symbols has a NOTYPE on it, not FUNC like the main symbol. Fix t

[Lldb-commits] [PATCH] D35784: [LLD][MIPS] Fix Address::GetAddressClass() to return correct AddressClass based on the load address

2017-07-27 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. maybe lldb::SymbolType::eSymbolTypeCompiler? https://reviews.llvm.org/D35784 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits