HomeSort by relevance Sort by last modified time
    Searched refs:RelocationModel (Results 1 - 9 of 9) sorted by null

  /external/llvm/lib/MC/
MCCodeGenInfo.cpp 20 RelocationModel = RM;
  /external/llvm/include/llvm/MC/
MCCodeGenInfo.h 23 /// RelocationModel - Relocation model: static, pic, etc.
25 Reloc::Model RelocationModel;
40 Reloc::Model getRelocationModel() const { return RelocationModel; }
  /external/clang/lib/Frontend/
CodeGenOptions.cpp 20 RelocationModel = "pic";
CompilerInvocation.cpp 515 Opts.RelocationModel = Args.getLastArgValue(OPT_mrelocation_model, "pic");
    [all...]
  /external/clang/include/clang/Frontend/
CodeGenOptions.h 152 std::string RelocationModel;
  /external/clang/tools/driver/
cc1as_main.cpp 131 std::string RelocationModel;
252 Opts.RelocationModel = Args.getLastArgValue(OPT_mrelocation_model, "pic");
330 if (Opts.RelocationModel == "static") {
332 } else if (Opts.RelocationModel == "pic") {
335 assert(Opts.RelocationModel == "dynamic-no-pic" &&
  /external/llvm/tools/gold/
gold-plugin.cpp 109 static Reloc::Model RelocationModel = Reloc::Default;
224 RelocationModel = Reloc::PIC_;
227 RelocationModel = Reloc::Static;
796 TripleStr, options::mcpu, Features.getString(), Options, RelocationModel,
840 Options, RelocationModel, CodeModel::Default, CGOptLevel);
  /external/clang/lib/CodeGen/
BackendUtil.cpp 483 if (CodeGenOpts.RelocationModel == "static") {
485 } else if (CodeGenOpts.RelocationModel == "pic") {
488 assert(CodeGenOpts.RelocationModel == "dynamic-no-pic" &&
  /external/clang/lib/Driver/
Tools.cpp     [all...]

Completed in 347 milliseconds