-
Notifications
You must be signed in to change notification settings - Fork 12.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add data formatter for libc++ std::tuple
Reviewers: jingham, EricWF Subscribers: srhines, eugene, lldb-commits, mgorny Differential Revision: https://reviews.llvm.org/D35615 llvm-svn: 317095
- Loading branch information
Showing
7 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
...on/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
LEVEL = ../../../../../make | ||
|
||
CXX_SOURCES := main.cpp | ||
|
||
USE_LIBCPP := 1 | ||
include $(LEVEL)/Makefile.rules |
51 changes: 51 additions & 0 deletions
51
...ionalities/data-formatter/data-formatter-stl/libcxx/tuple/TestDataFormatterLibcxxTuple.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
""" | ||
Test lldb data formatter subsystem. | ||
""" | ||
|
||
from __future__ import print_function | ||
|
||
|
||
import lldb | ||
from lldbsuite.test.decorators import * | ||
from lldbsuite.test.lldbtest import * | ||
from lldbsuite.test import lldbutil | ||
|
||
|
||
class TestDataFormatterLibcxxTuple(TestBase): | ||
|
||
mydir = TestBase.compute_mydir(__file__) | ||
|
||
def setUp(self): | ||
TestBase.setUp(self) | ||
self.line = line_number('main.cpp', '// break here') | ||
ns = 'ndk' if lldbplatformutil.target_is_android() else '' | ||
self.namespace = 'std::__' + ns + '1' | ||
|
||
@add_test_categories(["libc++"]) | ||
def test(self): | ||
"""Test that std::tuple is displayed correctly""" | ||
self.build() | ||
lldbutil.run_to_source_breakpoint(self, '// break here', | ||
lldb.SBFileSpec("main.cpp", False)) | ||
|
||
tuple_name = self.namespace + '::tuple' | ||
self.expect("frame variable empty", | ||
substrs=[tuple_name, | ||
'size=0', | ||
'{}']) | ||
|
||
self.expect("frame variable one_elt", | ||
substrs=[tuple_name, | ||
'size=1', | ||
'{', | ||
'[0] = 47', | ||
'}']) | ||
|
||
self.expect("frame variable three_elts", | ||
substrs=[tuple_name, | ||
'size=3', | ||
'{', | ||
'[0] = 1', | ||
'[1] = 47', | ||
'[2] = "foo"', | ||
'}']) |
11 changes: 11 additions & 0 deletions
11
...on/lldbsuite/test/functionalities/data-formatter/data-formatter-stl/libcxx/tuple/main.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#include <tuple> | ||
#include <string> | ||
|
||
using namespace std; | ||
|
||
int main() { | ||
tuple<> empty; | ||
tuple<int> one_elt{47}; | ||
tuple<int, long, string> three_elts{1, 47l, "foo"}; | ||
return 0; // break here | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
//===-- LibCxxTuple.cpp -----------------------------------------*- C++ -*-===// | ||
// | ||
// The LLVM Compiler Infrastructure | ||
// | ||
// This file is distributed under the University of Illinois Open Source | ||
// License. See LICENSE.TXT for details. | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "LibCxx.h" | ||
#include "lldb/DataFormatters/FormattersHelpers.h" | ||
|
||
using namespace lldb; | ||
using namespace lldb_private; | ||
|
||
namespace { | ||
|
||
class TupleFrontEnd: public SyntheticChildrenFrontEnd { | ||
public: | ||
TupleFrontEnd(ValueObject &valobj) : SyntheticChildrenFrontEnd(valobj) { | ||
Update(); | ||
} | ||
|
||
size_t GetIndexOfChildWithName(const ConstString &name) override { | ||
return formatters::ExtractIndexFromString(name.GetCString()); | ||
} | ||
|
||
bool MightHaveChildren() override { return true; } | ||
bool Update() override; | ||
size_t CalculateNumChildren() override { return m_elements.size(); } | ||
ValueObjectSP GetChildAtIndex(size_t idx) override; | ||
|
||
private: | ||
std::vector<ValueObjectSP> m_elements; | ||
ValueObjectSP m_base_sp; | ||
}; | ||
} | ||
|
||
bool TupleFrontEnd::Update() { | ||
m_elements.clear(); | ||
m_base_sp = m_backend.GetChildMemberWithName(ConstString("base_"), true); | ||
if (! m_base_sp) | ||
return false; | ||
m_elements.assign(m_base_sp->GetCompilerType().GetNumDirectBaseClasses(), | ||
ValueObjectSP()); | ||
return false; | ||
} | ||
|
||
ValueObjectSP TupleFrontEnd::GetChildAtIndex(size_t idx) { | ||
if (idx >= m_elements.size()) | ||
return ValueObjectSP(); | ||
if (!m_base_sp) | ||
return ValueObjectSP(); | ||
if (m_elements[idx]) | ||
return m_elements[idx]; | ||
|
||
CompilerType holder_type = | ||
m_base_sp->GetCompilerType().GetDirectBaseClassAtIndex(idx, nullptr); | ||
if (!holder_type) | ||
return ValueObjectSP(); | ||
ValueObjectSP holder_sp = m_base_sp->GetChildAtIndex(idx, true); | ||
if (!holder_sp) | ||
return ValueObjectSP(); | ||
|
||
ValueObjectSP elem_sp = holder_sp->GetChildAtIndex(0, true); | ||
if (elem_sp) | ||
m_elements[idx] = | ||
elem_sp->Clone(ConstString(llvm::formatv("[{0}]", idx).str())); | ||
|
||
return m_elements[idx]; | ||
} | ||
|
||
SyntheticChildrenFrontEnd * | ||
formatters::LibcxxTupleFrontEndCreator(CXXSyntheticChildren *, | ||
lldb::ValueObjectSP valobj_sp) { | ||
if (valobj_sp) | ||
return new TupleFrontEnd(*valobj_sp); | ||
return nullptr; | ||
} |