在LLDB中,我可以调用方法并生成C ++类的实例吗?

时间:2016-10-27 10:14:24

标签: c++ debugging clang lldb

我正在尝试使用Clang和LLDB来探索复杂C ++应用程序的行为。我在我的应用程序中设置了一个断点。一旦我到达那个断点,我想创建一个简单的C ++类的实例,然后在该断点的上下文中调用方法

例如,这是我的申请:

#include <iostream>
#include <vector>

struct Point {
  int x;
  int y;
};

int main() {
  std::vector<Point> points;
  points.push_back(Point{3, 4});
  // <--------- Breakpoint here
  int total = 0;
  for (const auto& p : points) {
    total += p.x * p.y;
  }
  std::cout << "Total: " << total << std::endl;
  return 0;
}

在上面的断点中,我想:

  1. 清除points向量
  2. 创建新的Point实例
  3. 将其添加到矢量
  4. 继续执行
  5. 这个例子很简单,但我经常有一个更大的应用程序。这可以使用expr吗?

    更新

    尝试清除积分时收到此错误:

    (lldb) expr points.clear()
    warning: could not load any Objective-C class information. This will significantly reduce the quality of type information available.
    error: Couldn't lookup symbols:
      __ZNSt3__16vectorI5PointNS_9allocatorIS1_EEE5clearEv
    

    我可以创建一个对象,这很好!

    (lldb) expr auto $x = Point{1, 2}
    (lldb) expr $x
    (Point) $x = {
      x = 1
      y = 2
    }
    

    但是,我无法将其推入我的载体中:

    (lldb) expr points.push_back($x)
    error: Couldn't lookup symbols:
      __ZNSt3__16vectorI5PointNS_9allocatorIS1_EEE9push_backERKS1_
    

1 个答案:

答案 0 :(得分:2)

您可以在调试器中创建对象。告诉调试器要在表达式解析器中创建持久对象的技巧是在创建或引用它时给它起一个以“$”开头的名称。然后lldb将确保该对象持续存在。

但请注意,在使用以下提到的STL类时需要注意:

Printing/Debugging libc++ STL with XCode/LLDB