Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DZOS.cpp124 SmallString<128> LinkerOptions; in ConstructJob() local
125 LinkerOptions = "AMODE="; in ConstructJob()
126 LinkerOptions += "64"; in ConstructJob()
127 LinkerOptions += ",LIST"; in ConstructJob()
128 LinkerOptions += ",DYNAM=DLL"; in ConstructJob()
129 LinkerOptions += ",MSGLEVEL=4"; in ConstructJob()
130 LinkerOptions += ",CASE=MIXED"; in ConstructJob()
131 LinkerOptions += ",REUS=RENT"; in ConstructJob()
134 CmdArgs.push_back(Args.MakeArgString(LinkerOptions)); in ConstructJob()
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCMachObjectWriter.h168 std::vector<std::vector<std::string>> LinkerOptions; variable
256 return LinkerOptions; in getLinkerOptions()
/freebsd/contrib/llvm-project/llvm/lib/LTO/
H A DLTOModule.cpp633 if (NamedMDNode *LinkerOptions = in parseMetadata() local
635 for (unsigned i = 0, e = LinkerOptions->getNumOperands(); i != e; ++i) { in parseMetadata()
636 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/clang/include/clang/Basic/
H A DCodeGenOptions.h276 std::vector<std::string> LinkerOptions; variable
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMachObjectWriter.cpp63 LinkerOptions.clear(); in reset()
861 for (const auto &Option : LinkerOptions) { in writeObject()
1020 for (const auto &Option : LinkerOptions) in writeObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h228 LinkerOptions, enumerator
523 LinkerOptionsSection() : Section(ChunkKind::LinkerOptions) {} in LinkerOptionsSection()
530 return S->Kind == ChunkKind::LinkerOptions; in classof()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp170 for (auto &&Opt : CodeGenOpts.LinkerOptions) in Initialize()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp309 if (NamedMDNode *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitModuleMetadata() local
315 for (const auto *Operand : LinkerOptions->operands()) { in emitModuleMetadata()
1234 if (auto *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitModuleMetadata() local
1235 for (const auto *Option : LinkerOptions->operands()) { in emitModuleMetadata()
1864 if (NamedMDNode *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitLinkerDirectives() local
1870 for (const auto *Option : LinkerOptions->operands()) { in emitLinkerDirectives()
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7245 MarshallingInfoStringVector<CodeGenOpts<"LinkerOptions">>;