After parsing blocks in a function, the blocks should be marked as parsed for them to be dumped (see [Function::Dump](e6aefbec78/lldb/source/Symbol/Function.cpp (L446-L447))). As explained in https://github.com/llvm/llvm-project/issues/114906#issuecomment-3255016266, this happens (accidentally?) in the DIA plugin when parsing variables, because it calls `function.GetBlock(can_create=true)` which marks blocks as parsed. In the native plugin, this was never called, so blocks and variables were never included in the `lldb-test symbols` output. The `variables.test` for the DIA plugin tests this. One difference between the plugins is how they specify the location of local variables. This causes the output of the native plugin to be two lines per variable, whereas the DIA plugin has one line: ``` (native): 000002C4B7593020: Variable{0x1c800001}, name = "var_arg1", type = {0000000000000744} 0x000002C4B6CA7900 (int), scope = parameter, location = 0x00000000: [0x000000014000102c, 0x000000014000103e): DW_OP_breg7 RSP+8 ``` ``` (DIA): 000002778C827EE0: Variable{0x0000001b}, name = "var_arg1", type = {0000000000000005} 0x000002778C1FBAB0 (int), scope = parameter, decl = VariablesTest.cpp:32, location = DW_OP_breg7 RSP+8 ``` In the test, I filtered lines starting with spaces followed by `[0x`, so we can still use `CHECK-NEXT`. --- Another difference between the plugins is that DIA marks the `this` pointer as artificial (equivalent to DWARF). This is done if a variable's object kind is `ObjectPtr` ([source](ab898f32c6/lldb/source/Plugins/SymbolFile/PDB/SymbolFilePDB.cpp (L1050))). As far as I know, there isn't anything in the debug info that says "this variable is the `this` pointer" other than the name/type of a variable and the type of the function.
78 lines
4.5 KiB
Plaintext
78 lines
4.5 KiB
Plaintext
REQUIRES: system-windows, msvc
|
|
RUN: mkdir -p %t.dir
|
|
RUN: %build --compiler=clang-cl --mode=compile --arch=64 --nodefaultlib --output=%t.dir/VariablesTest.cpp.obj %S/Inputs/VariablesTest.cpp
|
|
RUN: %build --compiler=msvc --mode=link --arch=64 --nodefaultlib --output=%t.dir/VariablesTest.cpp.exe %t.dir/VariablesTest.cpp.obj
|
|
# Note: The native plugin creates a location list for variables that's only valid for the function.
|
|
# The DIA plugin creates a location expression that's always valid. This causes DIA to output
|
|
# one line per variable where the native plugin would output two (the second would contain the
|
|
# location information). This removes the second line from the output of the native plugin.
|
|
# It's done in both cases, because LLDB might not be compiled with the DIA SDK in which case
|
|
# the native plugin is always used.
|
|
RUN: env LLDB_USE_NATIVE_PDB_READER=0 lldb-test symbols %t.dir/VariablesTest.cpp.exe | sed '/^ \+\[0x/d' > %t.dir/VariablesTest.DIA.out
|
|
RUN: env LLDB_USE_NATIVE_PDB_READER=1 lldb-test symbols %t.dir/VariablesTest.cpp.exe | sed '/^ \+\[0x/d' > %t.dir/VariablesTest.Native.out
|
|
RUN: FileCheck --check-prefix=GLOBALS --input-file=%t.dir/VariablesTest.DIA.out %s
|
|
RUN: FileCheck --check-prefix=GLOBALS --input-file=%t.dir/VariablesTest.Native.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-F --input-file=%t.dir/VariablesTest.DIA.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-F --input-file=%t.dir/VariablesTest.Native.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-MAIN --input-file=%t.dir/VariablesTest.DIA.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-MAIN --input-file=%t.dir/VariablesTest.Native.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-CONSTRUCTOR --input-file=%t.dir/VariablesTest.DIA.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-CONSTRUCTOR --input-file=%t.dir/VariablesTest.Native.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-MEMBER --input-file=%t.dir/VariablesTest.DIA.out %s
|
|
RUN: FileCheck --check-prefix=FUNC-MEMBER --input-file=%t.dir/VariablesTest.Native.out %s
|
|
|
|
GLOBALS: Module [[MOD:.*]]
|
|
GLOBALS: SymbolFile {{(native-)?}}pdb ([[MOD]])
|
|
GLOBALS: CompileUnit{{.*}}, language = "c++", file = '{{.*}}\VariablesTest.cpp'
|
|
GLOBALS-DAG: Variable{{.*}}, name = "g_IntVar"
|
|
GLOBALS-SAME: scope = global, location = {{.*}}, external
|
|
GLOBALS-DAG: Variable{{.*}}, name = "g_pConst"
|
|
GLOBALS-SAME: scope = global, location = {{.*}}, external
|
|
GLOBALS-DAG: Variable{{.*}}, name = "same_name_var"
|
|
GLOBALS-SAME: scope = global, location = {{.*}}, external
|
|
GLOBALS-DAG: Variable{{.*}}, name = "Class::m_StaticClassMember"
|
|
GLOBALS-SAME: scope = global, location = {{.*}}, external
|
|
GLOBALS-DAG: Variable{{.*}}, name = "g_EnumVar"
|
|
GLOBALS-SAME: scope = global, location = {{.*}}, external
|
|
GLOBALS-DAG: Variable{{.*}}, name = "g_tls"
|
|
GLOBALS-SAME: scope = thread local, location = {{.*}}, external
|
|
GLOBALS-DAG: Variable{{.*}}, name = "ClassVar"
|
|
GLOBALS-SAME: scope = global, location = {{.*}}, external
|
|
GLOBALS-DAG: Variable{{.*}}, name = "g_Const"
|
|
GLOBALS-SAME: scope = ??? (2)
|
|
GLOBALS: Function
|
|
|
|
FUNC-F: Function{{.*}}, {{mangled = \?f@@YAHHH@Z|demangled = f}}
|
|
FUNC-F-NEXT: Block
|
|
FUNC-F-NEXT: Variable{{.*}}, name = "var_arg1"
|
|
FUNC-F-SAME: scope = parameter
|
|
FUNC-F-NEXT: Variable{{.*}}, name = "var_arg2"
|
|
FUNC-F-SAME: scope = parameter
|
|
FUNC-F-NEXT: Variable{{.*}}, name = "same_name_var"
|
|
FUNC-F-SAME: scope = local
|
|
|
|
FUNC-MAIN: Function{{.*}}, {{(de)?}}mangled = main
|
|
FUNC-MAIN-NEXT: Block
|
|
FUNC-MAIN-NEXT: Variable{{.*}}, name = "same_name_var"
|
|
FUNC-MAIN-SAME: scope = local
|
|
FUNC-MAIN-NEXT: Variable{{.*}}, name = "local_const"
|
|
FUNC-MAIN-SAME: scope = local
|
|
FUNC-MAIN-NEXT: Variable{{.*}}, name = "local_CString"
|
|
FUNC-MAIN-SAME: scope = local
|
|
FUNC-MAIN-NEXT: Variable{{.*}}, name = "local_pCString"
|
|
FUNC-MAIN-SAME: scope = local
|
|
FUNC-MAIN-NEXT: Variable{{.*}}, name = "a"
|
|
FUNC-MAIN-SAME: scope = local
|
|
|
|
FUNC-CONSTRUCTOR: Function{{.*}}, {{(de)?}}mangled = {{.*}}Class::Class{{.*}}
|
|
FUNC-CONSTRUCTOR-NEXT: Block
|
|
FUNC-CONSTRUCTOR-NEXT: Variable{{.*}}, name = "this"
|
|
FUNC-CONSTRUCTOR-SAME: scope = parameter
|
|
FUNC-CONSTRUCTOR-NEXT: Variable{{.*}}, name = "a"
|
|
FUNC-CONSTRUCTOR-SAME: scope = parameter
|
|
|
|
FUNC-MEMBER: Function{{.*}}, {{(de)?}}mangled = {{.*}}{{(Class::)?}}Func{{.*}}
|
|
FUNC-MEMBER-NEXT: Block
|
|
FUNC-MEMBER-NEXT: Variable{{.*}}, name = "this"
|
|
FUNC-MEMBER-SAME: scope = parameter
|