在c ++ lldb中使用重载运算符计算表达式

时间:2013-12-04 23:01:42

标签: c++ xcode lldb

我正在使用lldb在Xcode 5中调试C ++程序,我想在调试器中评估任意表达式,特别是那些使用重载运算符的表达式。

例如,我创建了一个非常简单的Xcode 5 C ++项目,其中包含以下main.cpp和所有编译器/链接器/ etc选项设置为默认值:

#include <iostream>
#include <vector>

int main(int argc, const char * argv[])
{
  std::vector<int> vec;
  vec.push_back(42);
  std::cout << "vec[0] = " << vec[0] << std::endl;
  return 0;
}

我在return 0;行设置断点并运行程序。

然后,在lldb提示符下,整个打印矢量工作正常:

(lldb) expr vec
(std::__1::vector<int, std::__1::allocator<int> >) $0 = size=1 {
  [0] = 42
}

但是,我无法使用重载的operator[]

访问其成员
(lldb) expr vec[0]
error: call to a function 'std::__1::vector<int, std::__1::allocator<int> >::operator[](unsigned long)' ('_ZNSt3__16vectorIiNS_9allocatorIiEEEixEm') that is not present in the target
error: The expression could not be prepared to run in the target

同样,我无法获得迭代器(虽然我的经验较少,所以我的语法可能有误):

(lldb) expr vector<int>::iterator it = vec.begin()
error: use of undeclared identifier 'vector'
error: expected '(' for function-style cast or type construction
error: expected '(' for function-style cast or type construction
error: 3 errors parsing expression

(lldb) expr (vector<int>::iterator) vec.begin()
error: use of undeclared identifier 'vector'
error: expected '(' for function-style cast or type construction
error: expected '(' for function-style cast or type construction
error: 3 errors parsing expression

类似地,打印一个简单的字符串工作正常:

(lldb) expr string("a")
(std::__1::string) $0 = "a"

但是,简单的字符串连接失败:

(lldb) expr string("a") + string("b")
error: invalid operands to binary expression ('string' (aka 'std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >') and 'string')
error: 1 errors parsing expression

我做错了什么? lldb是否支持使用重载运算符进行评估?

提前谢谢!

2 个答案:

答案 0 :(得分:24)

我刚遇到同样的问题,显然发现了一个简单的解决方法。 您可以像这样访问向量vec i -th元素:

(lldb) p vec.__begin_[i]
(int) $1 = 100

答案 1 :(得分:21)

请注意,C ++标准库的设置使它们内联所有模板化的函数,它们可以合理地内联,并且不存在真正的函数副本。例如,当你去打电话std::vector<int>::begin()时,没有这样的功能。它的所有用途都已内联。

这就是为什么你会收到“调用函数...目标中不存在”的错误。可能有函数的内联副本,但我们实际上无法调用。举个例子,如果我构建了一个生成std :: vector的小C ++程序,并将一些元素推送到它上面然后迭代它们,然后执行:

    (lldb) image lookup -r -n begin
    2 matches found in /private/tmp/vector:
        Address: vector[0x0000000100000eaf] (vector.__TEXT.__text + 1071)
        Summary: vector`main + 1071 [inlined] std::__1::vector<int, std::__1::allocator<int> >::begin() at vector.cpp:12
                 vector`main + 1071 at vector.cpp:12        Address: vector[0x0000000100000eaf] (vector.__TEXT.__text + 1071)
        Summary: vector`main + 1071 [inlined] std::__1::vector<int, std::__1::allocator<int> >::begin() at vector.cpp:12
                 vector`main + 1071 at vector.cpp:12

所以开始和放大的所有实例内联std::vector<int>的结尾访问者。更进一步来自std c库本身:

12 matches found in /usr/lib/libc++.1.dylib:
    Address: libc++.1.dylib[0x000000000003e4ec] (libc++.1.dylib.__TEXT.__text + 252188)
    Summary: libc++.1.dylib`std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::begin()        Address: libc++.1.dylib[0x000000000003e51c] (libc++.1.dylib.__TEXT.__text + 252236)
    Summary: libc++.1.dylib`std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> >::begin() const        Address: libc++.1.dylib[0x000000000003e574] (libc++.1.dylib.__TEXT.__text + 252324)

还有一些用于basic_string,而这就是全部。所以我们没有任何真正的实现可以调用。然后,一旦我们只得到了我们可以获得的这些标准物体的真实世界,当你开始推动它时,世界就会以其他奇怪的方式崩溃。

lldb目前还不够聪明,无法弄清楚如何从C ++标准库的头文件中重构模板化的函数/方法。我们没有足够的代码最初编译的环境来执行该任务。

请注意,这对于重载运算符来说并不是一个问题,编译器使用std库的方式更是个问题。对于你自己的课程,事情应该更好,在-O0没有那么多的内联。