diff options
author | dim <dim@FreeBSD.org> | 2017-04-02 17:24:58 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2017-04-02 17:24:58 +0000 |
commit | 60b571e49a90d38697b3aca23020d9da42fc7d7f (patch) | |
tree | 99351324c24d6cb146b6285b6caffa4d26fce188 /contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp | |
parent | bea1b22c7a9bce1dfdd73e6e5b65bc4752215180 (diff) | |
download | FreeBSD-src-60b571e49a90d38697b3aca23020d9da42fc7d7f.zip FreeBSD-src-60b571e49a90d38697b3aca23020d9da42fc7d7f.tar.gz |
Update clang, llvm, lld, lldb, compiler-rt and libc++ to 4.0.0 release:
MFC r309142 (by emaste):
Add WITH_LLD_AS_LD build knob
If set it installs LLD as /usr/bin/ld. LLD (as of version 3.9) is not
capable of linking the world and kernel, but can self-host and link many
substantial applications. GNU ld continues to be used for the world and
kernel build, regardless of how this knob is set.
It is on by default for arm64, and off for all other CPU architectures.
Sponsored by: The FreeBSD Foundation
MFC r310840:
Reapply 310775, now it also builds correctly if lldb is disabled:
Move llvm-objdump from CLANG_EXTRAS to installed by default
We currently install three tools from binutils 2.17.50: as, ld, and
objdump. Work is underway to migrate to a permissively-licensed
tool-chain, with one goal being the retirement of binutils 2.17.50.
LLVM's llvm-objdump is intended to be compatible with GNU objdump
although it is currently missing some options and may have formatting
differences. Enable it by default for testing and further investigation.
It may later be changed to install as /usr/bin/objdump, it becomes a
fully viable replacement.
Reviewed by: emaste
Differential Revision: https://reviews.freebsd.org/D8879
MFC r312855 (by emaste):
Rename LLD_AS_LD to LLD_IS_LD, for consistency with CLANG_IS_CC
Reported by: Dan McGregor <dan.mcgregor usask.ca>
MFC r313559 | glebius | 2017-02-10 18:34:48 +0100 (Fri, 10 Feb 2017) | 5 lines
Don't check struct rtentry on FreeBSD, it is an internal kernel structure.
On other systems it may be API structure for SIOCADDRT/SIOCDELRT.
Reviewed by: emaste, dim
MFC r314152 (by jkim):
Remove an assembler flag, which is redundant since r309124. The upstream
took care of it by introducing a macro NO_EXEC_STACK_DIRECTIVE.
http://llvm.org/viewvc/llvm-project?rev=273500&view=rev
Reviewed by: dim
MFC r314564:
Upgrade our copies of clang, llvm, lld, lldb, compiler-rt and libc++ to
4.0.0 (branches/release_40 296509). The release will follow soon.
Please note that from 3.5.0 onwards, clang, llvm and lldb require C++11
support to build; see UPDATING for more information.
Also note that as of 4.0.0, lld should be able to link the base system
on amd64 and aarch64. See the WITH_LLD_IS_LLD setting in src.conf(5).
Though please be aware that this is work in progress.
Release notes for llvm, clang and lld will be available here:
<http://releases.llvm.org/4.0.0/docs/ReleaseNotes.html>
<http://releases.llvm.org/4.0.0/tools/clang/docs/ReleaseNotes.html>
<http://releases.llvm.org/4.0.0/tools/lld/docs/ReleaseNotes.html>
Thanks to Ed Maste, Jan Beich, Antoine Brodin and Eric Fiselier for
their help.
Relnotes: yes
Exp-run: antoine
PR: 215969, 216008
MFC r314708:
For now, revert r287232 from upstream llvm trunk (by Daniil Fukalov):
[SCEV] limit recursion depth of CompareSCEVComplexity
Summary:
CompareSCEVComplexity goes too deep (50+ on a quite a big unrolled
loop) and runs almost infinite time.
Added cache of "equal" SCEV pairs to earlier cutoff of further
estimation. Recursion depth limit was also introduced as a parameter.
Reviewers: sanjoy
Subscribers: mzolotukhin, tstellarAMD, llvm-commits
Differential Revision: https://reviews.llvm.org/D26389
This commit is the cause of excessive compile times on skein_block.c
(and possibly other files) during kernel builds on amd64.
We never saw the problematic behavior described in this upstream commit,
so for now it is better to revert it. An upstream bug has been filed
here: https://bugs.llvm.org/show_bug.cgi?id=32142
Reported by: mjg
MFC r314795:
Reapply r287232 from upstream llvm trunk (by Daniil Fukalov):
[SCEV] limit recursion depth of CompareSCEVComplexity
Summary:
CompareSCEVComplexity goes too deep (50+ on a quite a big unrolled
loop) and runs almost infinite time.
Added cache of "equal" SCEV pairs to earlier cutoff of further
estimation. Recursion depth limit was also introduced as a parameter.
Reviewers: sanjoy
Subscribers: mzolotukhin, tstellarAMD, llvm-commits
Differential Revision: https://reviews.llvm.org/D26389
Pull in r296992 from upstream llvm trunk (by Sanjoy Das):
[SCEV] Decrease the recursion threshold for CompareValueComplexity
Fixes PR32142.
r287232 accidentally increased the recursion threshold for
CompareValueComplexity from 2 to 32. This change reverses that
change by introducing a separate flag for CompareValueComplexity's
threshold.
The latter revision fixes the excessive compile times for skein_block.c.
MFC r314907 | mmel | 2017-03-08 12:40:27 +0100 (Wed, 08 Mar 2017) | 7 lines
Unbreak ARMv6 world.
The new compiler_rt library imported with clang 4.0.0 have several fatal
issues (non-functional __udivsi3 for example) with ARM specific instrict
functions. As temporary workaround, until upstream solve these problems,
disable all thumb[1][2] related feature.
MFC r315016:
Update clang, llvm, lld, lldb, compiler-rt and libc++ to 4.0.0 release.
We were already very close to the last release candidate, so this is a
pretty minor update.
Relnotes: yes
MFC r316005:
Revert r314907, and pull in r298713 from upstream compiler-rt trunk (by
Weiming Zhao):
builtins: Select correct code fragments when compiling for Thumb1/Thum2/ARM ISA.
Summary:
Value of __ARM_ARCH_ISA_THUMB isn't based on the actual compilation
mode (-mthumb, -marm), it reflect's capability of given CPU.
Due to this:
- use __tbumb__ and __thumb2__ insteand of __ARM_ARCH_ISA_THUMB
- use '.thumb' directive consistently in all affected files
- decorate all thumb functions using
DEFINE_COMPILERRT_THUMB_FUNCTION()
---------
Note: This patch doesn't fix broken Thumb1 variant of __udivsi3 !
Reviewers: weimingz, rengolin, compnerd
Subscribers: aemerson, dim
Differential Revision: https://reviews.llvm.org/D30938
Discussed with: mmel
Diffstat (limited to 'contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp')
-rw-r--r-- | contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp | 426 |
1 files changed, 187 insertions, 239 deletions
diff --git a/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp b/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp index ccfd52e..6ad6a23 100644 --- a/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp +++ b/contrib/llvm/tools/lldb/source/Target/ThreadPlanStepInstruction.cpp @@ -27,270 +27,218 @@ using namespace lldb_private; // ThreadPlanStepInstruction: Step over the current instruction //---------------------------------------------------------------------- -ThreadPlanStepInstruction::ThreadPlanStepInstruction -( - Thread &thread, - bool step_over, - bool stop_other_threads, - Vote stop_vote, - Vote run_vote -) : - ThreadPlan (ThreadPlan::eKindStepInstruction, "Step over single instruction", thread, stop_vote, run_vote), - m_instruction_addr (0), - m_stop_other_threads (stop_other_threads), - m_step_over (step_over) -{ - m_takes_iteration_count = true; - SetUpState(); +ThreadPlanStepInstruction::ThreadPlanStepInstruction(Thread &thread, + bool step_over, + bool stop_other_threads, + Vote stop_vote, + Vote run_vote) + : ThreadPlan(ThreadPlan::eKindStepInstruction, + "Step over single instruction", thread, stop_vote, run_vote), + m_instruction_addr(0), m_stop_other_threads(stop_other_threads), + m_step_over(step_over) { + m_takes_iteration_count = true; + SetUpState(); } ThreadPlanStepInstruction::~ThreadPlanStepInstruction() = default; -void -ThreadPlanStepInstruction::SetUpState() -{ - m_instruction_addr = m_thread.GetRegisterContext()->GetPC(0); - StackFrameSP start_frame_sp(m_thread.GetStackFrameAtIndex(0)); - m_stack_id = start_frame_sp->GetStackID(); - - m_start_has_symbol = start_frame_sp->GetSymbolContext(eSymbolContextSymbol).symbol != nullptr; - - StackFrameSP parent_frame_sp = m_thread.GetStackFrameAtIndex(1); - if (parent_frame_sp) - m_parent_frame_id = parent_frame_sp->GetStackID(); +void ThreadPlanStepInstruction::SetUpState() { + m_instruction_addr = m_thread.GetRegisterContext()->GetPC(0); + StackFrameSP start_frame_sp(m_thread.GetStackFrameAtIndex(0)); + m_stack_id = start_frame_sp->GetStackID(); + + m_start_has_symbol = + start_frame_sp->GetSymbolContext(eSymbolContextSymbol).symbol != nullptr; + + StackFrameSP parent_frame_sp = m_thread.GetStackFrameAtIndex(1); + if (parent_frame_sp) + m_parent_frame_id = parent_frame_sp->GetStackID(); } -void -ThreadPlanStepInstruction::GetDescription (Stream *s, lldb::DescriptionLevel level) -{ - if (level == lldb::eDescriptionLevelBrief) - { - if (m_step_over) - s->Printf ("instruction step over"); - else - s->Printf ("instruction step into"); - } +void ThreadPlanStepInstruction::GetDescription(Stream *s, + lldb::DescriptionLevel level) { + if (level == lldb::eDescriptionLevelBrief) { + if (m_step_over) + s->Printf("instruction step over"); else - { - s->Printf ("Stepping one instruction past "); - s->Address(m_instruction_addr, sizeof (addr_t)); - if (!m_start_has_symbol) - s->Printf(" which has no symbol"); - - if (m_step_over) - s->Printf(" stepping over calls"); - else - s->Printf(" stepping into calls"); - } + s->Printf("instruction step into"); + } else { + s->Printf("Stepping one instruction past "); + s->Address(m_instruction_addr, sizeof(addr_t)); + if (!m_start_has_symbol) + s->Printf(" which has no symbol"); + + if (m_step_over) + s->Printf(" stepping over calls"); + else + s->Printf(" stepping into calls"); + } } -bool -ThreadPlanStepInstruction::ValidatePlan (Stream *error) -{ - // Since we read the instruction we're stepping over from the thread, - // this plan will always work. - return true; +bool ThreadPlanStepInstruction::ValidatePlan(Stream *error) { + // Since we read the instruction we're stepping over from the thread, + // this plan will always work. + return true; } -bool -ThreadPlanStepInstruction::DoPlanExplainsStop (Event *event_ptr) -{ - StopInfoSP stop_info_sp = GetPrivateStopInfo (); - if (stop_info_sp) - { - StopReason reason = stop_info_sp->GetStopReason(); - return (reason == eStopReasonTrace || reason == eStopReasonNone); - } - return false; +bool ThreadPlanStepInstruction::DoPlanExplainsStop(Event *event_ptr) { + StopInfoSP stop_info_sp = GetPrivateStopInfo(); + if (stop_info_sp) { + StopReason reason = stop_info_sp->GetStopReason(); + return (reason == eStopReasonTrace || reason == eStopReasonNone); + } + return false; } -bool -ThreadPlanStepInstruction::IsPlanStale () -{ - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP)); - StackID cur_frame_id = m_thread.GetStackFrameAtIndex(0)->GetStackID(); - if (cur_frame_id == m_stack_id) - { - return (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr); - } - else if (cur_frame_id < m_stack_id) - { - // If the current frame is younger than the start frame and we are stepping over, then we need to continue, - // but if we are doing just one step, we're done. - return !m_step_over; - } - else - { - if (log) - { - log->Printf ("ThreadPlanStepInstruction::IsPlanStale - Current frame is older than start frame, plan is stale."); - } - return true; +bool ThreadPlanStepInstruction::IsPlanStale() { + Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP)); + StackID cur_frame_id = m_thread.GetStackFrameAtIndex(0)->GetStackID(); + if (cur_frame_id == m_stack_id) { + return (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr); + } else if (cur_frame_id < m_stack_id) { + // If the current frame is younger than the start frame and we are stepping + // over, then we need to continue, + // but if we are doing just one step, we're done. + return !m_step_over; + } else { + if (log) { + log->Printf("ThreadPlanStepInstruction::IsPlanStale - Current frame is " + "older than start frame, plan is stale."); } + return true; + } } -bool -ThreadPlanStepInstruction::ShouldStop (Event *event_ptr) -{ - if (m_step_over) - { - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP)); - - StackFrameSP cur_frame_sp = m_thread.GetStackFrameAtIndex(0); - if (!cur_frame_sp) - { - if (log) - log->Printf ("ThreadPlanStepInstruction couldn't get the 0th frame, stopping."); - SetPlanComplete(); - return true; - } - - StackID cur_frame_zero_id = cur_frame_sp->GetStackID(); - - if (cur_frame_zero_id == m_stack_id || m_stack_id < cur_frame_zero_id) - { - if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr) - { - if (--m_iteration_count <= 0) - { - SetPlanComplete(); - return true; - } - else - { - // We are still stepping, reset the start pc, and in case we've stepped out, - // reset the current stack id. - SetUpState(); - return false; - } - } - else - return false; - } - else - { - // We've stepped in, step back out again: - StackFrame *return_frame = m_thread.GetStackFrameAtIndex(1).get(); - if (return_frame) - { - if (return_frame->GetStackID() != m_parent_frame_id || m_start_has_symbol) - { - // next-instruction shouldn't step out of inlined functions. But we may have stepped into a - // real function that starts with an inlined function, and we do want to step out of that... - - if (cur_frame_sp->IsInlined()) - { - StackFrameSP parent_frame_sp = m_thread.GetFrameWithStackID(m_stack_id); - - if(parent_frame_sp && parent_frame_sp->GetConcreteFrameIndex() == cur_frame_sp->GetConcreteFrameIndex()) - { - SetPlanComplete(); - if (log) - { - log->Printf("Frame we stepped into is inlined into the frame we were stepping from, stopping."); - } - return true; - } - } +bool ThreadPlanStepInstruction::ShouldStop(Event *event_ptr) { + if (m_step_over) { + Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP)); + + StackFrameSP cur_frame_sp = m_thread.GetStackFrameAtIndex(0); + if (!cur_frame_sp) { + if (log) + log->Printf( + "ThreadPlanStepInstruction couldn't get the 0th frame, stopping."); + SetPlanComplete(); + return true; + } - if (log) - { - StreamString s; - s.PutCString ("Stepped in to: "); - addr_t stop_addr = m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC(); - s.Address (stop_addr, m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize()); - s.PutCString (" stepping out to: "); - addr_t return_addr = return_frame->GetRegisterContext()->GetPC(); - s.Address (return_addr, m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize()); - log->Printf("%s.", s.GetData()); - } - - // StepInstruction should probably have the tri-state RunMode, but for now it is safer to - // run others. - const bool stop_others = false; - m_thread.QueueThreadPlanForStepOutNoShouldStop(false, - nullptr, - true, - stop_others, - eVoteNo, - eVoteNoOpinion, - 0); - return false; - } - else - { - if (log) - { - log->PutCString("The stack id we are stepping in changed, but our parent frame did not when stepping from code with no symbols. " - "We are probably just confused about where we are, stopping."); - } - SetPlanComplete(); - return true; - } - } - else - { - if (log) - log->Printf("Could not find previous frame, stopping."); - SetPlanComplete(); - return true; - } + StackID cur_frame_zero_id = cur_frame_sp->GetStackID(); + + if (cur_frame_zero_id == m_stack_id || m_stack_id < cur_frame_zero_id) { + if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr) { + if (--m_iteration_count <= 0) { + SetPlanComplete(); + return true; + } else { + // We are still stepping, reset the start pc, and in case we've + // stepped out, + // reset the current stack id. + SetUpState(); + return false; } - } - else - { - lldb::addr_t pc_addr = m_thread.GetRegisterContext()->GetPC(0); - if (pc_addr != m_instruction_addr) - { - if (--m_iteration_count <= 0) - { - SetPlanComplete(); - return true; - } - else - { - // We are still stepping, reset the start pc, and in case we've stepped in or out, - // reset the current stack id. - SetUpState(); - return false; + } else + return false; + } else { + // We've stepped in, step back out again: + StackFrame *return_frame = m_thread.GetStackFrameAtIndex(1).get(); + if (return_frame) { + if (return_frame->GetStackID() != m_parent_frame_id || + m_start_has_symbol) { + // next-instruction shouldn't step out of inlined functions. But we + // may have stepped into a + // real function that starts with an inlined function, and we do want + // to step out of that... + + if (cur_frame_sp->IsInlined()) { + StackFrameSP parent_frame_sp = + m_thread.GetFrameWithStackID(m_stack_id); + + if (parent_frame_sp && + parent_frame_sp->GetConcreteFrameIndex() == + cur_frame_sp->GetConcreteFrameIndex()) { + SetPlanComplete(); + if (log) { + log->Printf("Frame we stepped into is inlined into the frame " + "we were stepping from, stopping."); + } + return true; } + } + + if (log) { + StreamString s; + s.PutCString("Stepped in to: "); + addr_t stop_addr = + m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC(); + s.Address(stop_addr, m_thread.CalculateTarget() + ->GetArchitecture() + .GetAddressByteSize()); + s.PutCString(" stepping out to: "); + addr_t return_addr = return_frame->GetRegisterContext()->GetPC(); + s.Address(return_addr, m_thread.CalculateTarget() + ->GetArchitecture() + .GetAddressByteSize()); + log->Printf("%s.", s.GetData()); + } + + // StepInstruction should probably have the tri-state RunMode, but for + // now it is safer to + // run others. + const bool stop_others = false; + m_thread.QueueThreadPlanForStepOutNoShouldStop( + false, nullptr, true, stop_others, eVoteNo, eVoteNoOpinion, 0); + return false; + } else { + if (log) { + log->PutCString( + "The stack id we are stepping in changed, but our parent frame " + "did not when stepping from code with no symbols. " + "We are probably just confused about where we are, stopping."); + } + SetPlanComplete(); + return true; } - else - return false; + } else { + if (log) + log->Printf("Could not find previous frame, stopping."); + SetPlanComplete(); + return true; + } } + } else { + lldb::addr_t pc_addr = m_thread.GetRegisterContext()->GetPC(0); + if (pc_addr != m_instruction_addr) { + if (--m_iteration_count <= 0) { + SetPlanComplete(); + return true; + } else { + // We are still stepping, reset the start pc, and in case we've stepped + // in or out, + // reset the current stack id. + SetUpState(); + return false; + } + } else + return false; + } } -bool -ThreadPlanStepInstruction::StopOthers () -{ - return m_stop_other_threads; -} +bool ThreadPlanStepInstruction::StopOthers() { return m_stop_other_threads; } -StateType -ThreadPlanStepInstruction::GetPlanRunState () -{ - return eStateStepping; +StateType ThreadPlanStepInstruction::GetPlanRunState() { + return eStateStepping; } -bool -ThreadPlanStepInstruction::WillStop () -{ - return true; -} +bool ThreadPlanStepInstruction::WillStop() { return true; } -bool -ThreadPlanStepInstruction::MischiefManaged () -{ - if (IsPlanComplete()) - { - Log *log(lldb_private::GetLogIfAllCategoriesSet (LIBLLDB_LOG_STEP)); - if (log) - log->Printf("Completed single instruction step plan."); - ThreadPlan::MischiefManaged (); - return true; - } - else - { - return false; - } +bool ThreadPlanStepInstruction::MischiefManaged() { + if (IsPlanComplete()) { + Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP)); + if (log) + log->Printf("Completed single instruction step plan."); + ThreadPlan::MischiefManaged(); + return true; + } else { + return false; + } } |