Andy Hippo

Results 6 issues of Andy Hippo

Assuming the program: ```c++ int main(int argc, char* argv[]) { return 0; } ``` `EvaluateExpression("main")` should return an object holding a function pointer to `main`. This can be implemented via...

Some functionality of `lldb-eval` depends on the patches we contributed to LLDB -- https://github.com/google/lldb-eval/blob/master/docs/lldb-patches.md Some of the patches are not yet submitted or not available in earlier versions of LLVM....

enhancement

Some targets might be not available depending on the config set, so `bazel build` needs use all the configs that were provided by the user.

LLDB's `EvaluateExpression()` supports macros (if they're present in the debug info) -- https://github.com/llvm/llvm-project/commit/a0fb69d17b4d7501a85554010727837340e7b52f We should see what it would take to support them in `lldb-eval` as well.

``` struct Base1 { int x; int y; }; struct Base2 : Base1 { }; struct Base3 { int z; }; struct Foo : Base2, Base3 { }; Foo foo;...