开发者问题收集

在程序上使用 llvm 传递时,出现错误:无法执行命令:段错误(核心转储)

2018-10-18
3523

一个简单的 LLVM 传递示例,适用于 LLVM-7.0.0。 我在尝试运行时收到此错误:

clang -I~/clang_llvm2/include -Xclang -load -Xclang build/skeleton/libSkeletonPass.* test/a.cpp

我看到了一个名为 main 的函数!

...

clang-7:错误:无法执行命令:分段错误(核心转储) clang-7:错误:clang 前端命令由于信号而失败(使用 -v 查看调用) clang 版本 7.0.0 (tags/RELEASE_700/final) 目标:x86_64-unknown-linux-gnu 线程模型:posix clang-7:注意:诊断消息:请向 https://bugs.llvm.org/ 提交错误报告,并包含崩溃回溯、预处理源代码和相关运行脚本。 clang-7:错误:无法执行命令:分段错误(核心转储) clang-7:注意:诊断消息:生成预处理源时出错。

LLVM-7.0.0 的简单 LLVM 传递

#include "llvm/Pass.h"
#include "llvm/IR/Function.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/IR/LegacyPassManager.h"
#include "llvm/Transforms/IPO/PassManagerBuilder.h"
using namespace llvm;

namespace {
  struct SkeletonPass : public FunctionPass {
    static char ID;
    SkeletonPass() : FunctionPass(ID) {}

    bool runOnFunction(Function &F) {
      errs() << "I saw a function called " << F.getName() << "!\n";
      return false;
    }
  };
}

char SkeletonPass::ID = 0;

// Automatically enable the pass.
// http://adriansampson.net/blog/clangpass.html
static void registerSkeletonPass(const PassManagerBuilder &,
                         legacy::PassManagerBase &PM) {
  PM.add(new SkeletonPass());
}
static RegisterStandardPasses
  RegisterMyPass(PassManagerBuilder::EP_EarlyAsPossible,
                 registerSkeletonPass);

a.cpp 程序是一个简单的 hello world 程序。 LLVM_HOME 已正确设置。 使用预构建的 llvm 文件。

2个回答

您并不是唯一遇到此错误的人( https://bugs.llvm.org/show_bug.cgi?id=34573 ),从 LLVM 5 开始,当使用 RegisterStandardPasses 时,LLVM 似乎会在程序结束时崩溃。

根据这个答案: https://github.com/sampsyo/llvm-pass-skeleton/issues/7#issuecomment-401834287 解决方案是添加链接程序时将 -Wl,-znodelete 添加到编译器标志中。它对我有用。

Kuba Beránek
2019-05-29

Compiling LLVM from source is mandatory if you are developing an in-source pass (within LLVM source tree). It can also be convenient in the case of developing out-of-source passes as it gives you full control over the compilation options. For example, a debug build of LLVM is much more pleasant to work with compared to an optimized one. llvm-pass-tutorial

我刚刚遇到了类似的问题。似乎优化的 clang 构建(从 apt install预构建二进制文件 获取的构建)不支持源内传递。我目前知道的唯一选择是从源代码构建 llvm 和 clang。

LLVM 下载页面

WU ZHENWEI
2020-04-01