Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个指向数组或变量的指针。我想获取该数组或变量的名称。如何在 LLVM 中得到这个?
我正在尝试检测一个通过指针传递数组或变量的函数。我想获取该数组或变量参数的名称。我正在使用 LLVM 检测我的功能。
您需要为此使用调试信息,因为在一般情况下,原始 C 代码中的名称不会在 LLVM IR 中表示。请参阅调试信息文档。特别是,请查看有关“ @llvm.dbg.declare”和“全局值描述符”的部分
@llvm.dbg.declare