HomeSort by: relevance | last modified time | path
    Searched defs:RelocationModel (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
WebAssembly.cpp 261 llvm::Reloc::Model RelocationModel;
264 std::tie(RelocationModel, PICLevel, IsPIE) =
266 if (RelocationModel == llvm::Reloc::PIC_) {
CommonArgs.cpp 1115 /// (RelocationModel, PICLevel, IsPIE).
1374 llvm::Reloc::Model RelocationModel;
1377 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(ToolChain, Args);
1379 if (RelocationModel != llvm::Reloc::Static)
Gnu.cpp 693 llvm::Reloc::Model RelocationModel;
697 std::tie(RelocationModel, PICLevel, IsPIE) =
854 if (RelocationModel == llvm::Reloc::Static)
Clang.cpp 1898 llvm::Reloc::Model RelocationModel;
1901 std::tie(RelocationModel, PICLevel, IsPIE) =
1905 (RelocationModel == llvm::Reloc::Static && ABIName == "n64");
4708 llvm::Reloc::Model RelocationModel;
4711 std::tie(RelocationModel, PICLevel, IsPIE) = ParsePICArgs(TC, Args);
4713 bool IsROPI = RelocationModel == llvm::Reloc::ROPI ||
4714 RelocationModel == llvm::Reloc::ROPI_RWPI;
4715 bool IsRWPI = RelocationModel == llvm::Reloc::RWPI ||
4716 RelocationModel == llvm::Reloc::ROPI_RWPI;
4730 const char *RMName = RelocationModelName(RelocationModel);
    [all...]
  /src/external/apache2/llvm/dist/clang/tools/driver/
cc1as_main.cpp 141 std::string RelocationModel;
298 Opts.RelocationModel =
397 if (Opts.RelocationModel == "static") {
399 } else if (Opts.RelocationModel == "pic") {
402 assert(Opts.RelocationModel == "dynamic-no-pic" &&
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
CodeGenOptions.h 219 llvm::Reloc::Model RelocationModel;
  /src/external/apache2/llvm/dist/llvm/tools/gold/
gold-plugin.cpp 124 static Optional<Reloc::Model> RelocationModel = None;
365 RelocationModel = Reloc::PIC_;
369 RelocationModel = Reloc::PIC_;
373 RelocationModel = Reloc::Static;
885 Conf.RelocModel = RelocationModel;

Completed in 49 milliseconds