LLVM中编译器和编译器驱动程序之间的区别?

时间:2015-09-15 21:04:37

标签: compiler-construction llvm

有人可以解释LLVM中编译器和编译器驱动程序之间的区别吗?

感谢任何帮助。

3 个答案:

答案 0 :(得分:2)

我想,编译器是指整个编译器,而编译器驱动程序对应于驱动编译管道的逻辑。驱动程序任务是为各种文件调用正确的工具(例如,对于C / C ++源clang调用cc,为对象文件调用ld等等)并为它们设置适当的标志

答案 1 :(得分:2)

简单地放置

compiler是编译过程的组成部分; compiler driver是编译过程的串联和管理者。
但是我们通常会混淆这两个概念,并将其称为编译器。

事实上

编译器由多个部分组成,当将程序源编译为可执行文件时,它会经历许多不同的步骤。
Source code -> preprocessing -> compilation -> assembly -> linking
 每个阶段负责一个不同的编译器组件。例如,编译由Compiler负责(c的cc1,cxx的cc1plus,Objective-C的cc1obj等)
*(其中cc1cc1pluscc1obj等实际上是CompilersCompiler使用源代码作为输入,并以汇编形式输出码)。 *
程序集由as负责,链接由ld负责。

为了便于使用,我们通常仅使用
clang hello.c -o hello
完成最终可执行文件的c源代码构建。
但实际上,在此过程中,clang compiler driver ,它以自动化方式连接整个编译过程。它做了很多工作,它以适当的参数和顺序调用编译器中的每个工具,并最终生成一个可执行文件。

特别是

clang hello.c -o hello命令的详细参数可以通过命令clang hello.c -o hello -###

查看。

在我的终端上,它显示:

clang version 8.0.0 (tags/RELEASE_800/final)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /home/huangshaomang/research/LLVM/ollvmsimon/build/bin
 "/home/huangshaomang/research/LLVM/build/bin/clang-8" "-cc1" "-triple" "x86_64-unknown-linux-gnu" "-emit-obj" "-mrelax-all" "-disable-free" "-main-file-name" "hello.c" "-mrelocation-model" "static" "-mthread-model" "posix" "-mdisable-fp-elim" "-fmath-errno" "-masm-verbose" "-mconstructor-aliases" "-munwind-tables" "-fuse-init-array" "-target-cpu" "x86-64" "-dwarf-column-info" "-debugger-tuning=gdb" "-resource-dir" "/home/huangshaomang/research/LLVM/build/lib/clang/8.0.0" "-internal-isystem" "/usr/local/include" "-internal-isystem" "/home/huangshaomang/research/LLVM/build/lib/clang/8.0.0/include" "-internal-externc-isystem" "/usr/include/x86_64-linux-gnu" "-internal-externc-isystem" "/include" "-internal-externc-isystem" "/usr/include" "-fdebug-compilation-dir" "/home/huangshaomang/research/linker_loader/test_constructor" "-ferror-limit" "19" "-fmessage-length" "233" "-fobjc-runtime=gcc" "-fdiagnostics-show-option" "-fcolor-diagnostics" "-o" "/tmp/hello-5168fe.o" "-x" "c" "hello.c" "-faddrsig"
 "/usr/bin/ld" "-z" "relro" "--hash-style=gnu" "--eh-frame-hdr" "-m" "elf_x86_64" "-dynamic-linker" "/lib64/ld-linux-x86-64.so.2" "-o" "hello" "/usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../x86_64-linux-gnu/crt1.o" "/usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../x86_64-linux-gnu/crti.o" "/usr/lib/gcc/x86_64-linux-gnu/5.4.0/crtbegin.o" "-L/usr/lib/gcc/x86_64-linux-gnu/5.4.0" "-L/usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../x86_64-linux-gnu" "-L/lib/x86_64-linux-gnu" "-L/lib/../lib64" "-L/usr/lib/x86_64-linux-gnu" "-L/usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../.." "-L/home/huangshaomang/research/LLVM/build/bin/../lib" "-L/lib" "-L/usr/lib" "/tmp/hello-5168fe.o" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/gcc/x86_64-linux-gnu/5.4.0/crtend.o" "/usr/lib/gcc/x86_64-linux-gnu/5.4.0/../../../x86_64-linux-gnu/crtn.o"

很明显,clangcompiler driver)称为两个工具(cc1Compiler)和ldlinker )),然后使用非常复杂的参数。

此外,在以下链接中,llvm-project使用了术语“编译器驱动程序”,这可能有助于您更好地理解它。

https://llvm.org/docs/HowToCrossCompileLLVM.html
https://llvm.org/docs/LinkTimeOptimization.html

答案 2 :(得分:1)

在llvm中,我们总是使用clang。我将以clang为例解释你的问题。

当您向命令行输入“clang”时,它是编译器驱动程序。编译器驱动程序有很多选项,这些选项将决定调用哪个编译器组件。例如:clang -cc1是前端,clang是驱动程序。驱动程序使用适合您系统的选项调用前端。

所以,我认为编译器驱动程序驱动编译器组件,使它们一起工作。