Home
last modified time | relevance | path

Searched refs:LinkerOptions (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DZOS.cpp127 SmallString<128> LinkerOptions; in ConstructJob() local
128 LinkerOptions = "AMODE="; in ConstructJob()
129 LinkerOptions += "64"; in ConstructJob()
130 LinkerOptions += ",LIST"; in ConstructJob()
131 LinkerOptions += ",DYNAM=DLL"; in ConstructJob()
132 LinkerOptions += ",MSGLEVEL=4"; in ConstructJob()
133 LinkerOptions += ",CASE=MIXED"; in ConstructJob()
134 LinkerOptions += ",REUS=RENT"; in ConstructJob()
137 CmdArgs.push_back(Args.MakeArgString(LinkerOptions)); in ConstructJob()
H A DClang.cpp9137 const llvm::DenseSet<unsigned> LinkerOptions{OPT_mllvm, OPT_Zlinker_input}; in ConstructJob() local
9162 else if (ShouldForward(LinkerOptions, A)) in ConstructJob()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h169 std::vector<std::vector<std::string>> LinkerOptions; variable
250 return LinkerOptions; in getLinkerOptions()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOModule.cpp636 if (NamedMDNode *LinkerOptions = in parseMetadata() local
638 for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) { in parseMetadata()
639 MDNode *MDOptions = LinkerOptions->getOperand(i); in parseMetadata()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp157 if (NamedMDNode *LinkerOptions = in addModule() local
159 for (MDNode *MDOptions : LinkerOptions->operands()) in addModule()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h243 LinkerOptions, enumerator
538 LinkerOptionsSection() : Section(ChunkKind::LinkerOptions) {} in LinkerOptionsSection()
545 return S->Kind == ChunkKind::LinkerOptions; in classof()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp59 LinkerOptions.clear(); in reset()
866 for (const auto &Option : LinkerOptions) { in writeObject()
1025 for (const auto &Option : LinkerOptions) in writeObject()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp170 for (auto &&Opt : CodeGenOpts.LinkerOptions) in Initialize()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h284 std::vector<std::string> LinkerOptions; variable
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp372 if (NamedMDNode *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitLinkerDirectives() local
378 for (const auto *Operand : LinkerOptions->operands()) { in emitLinkerDirectives()
1341 if (auto *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitLinkerDirectives() local
1342 for (const auto *Option : LinkerOptions->operands()) { in emitLinkerDirectives()
1924 if (NamedMDNode *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitLinkerDirectives() local
1930 for (const auto *Option : LinkerOptions->operands()) { in emitLinkerDirectives()
/freebsd/contrib/llvm-project/lld/MachO/
H A DInputFiles.h169 void parseLinkerOptions(llvm::SmallVectorImpl<StringRef> &LinkerOptions);
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7779 MarshallingInfoStringVector<CodeGenOpts<"LinkerOptions">>;