Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DZOS.cpp118 SmallString<128> LinkerOptions; in ConstructJob() local
119 LinkerOptions = "AMODE="; in ConstructJob()
120 LinkerOptions += "64"; in ConstructJob()
121 LinkerOptions += ",LIST"; in ConstructJob()
122 LinkerOptions += ",DYNAM=DLL"; in ConstructJob()
123 LinkerOptions += ",MSGLEVEL=4"; in ConstructJob()
124 LinkerOptions += ",CASE=MIXED"; in ConstructJob()
125 LinkerOptions += ",REUS=RENT"; in ConstructJob()
128 CmdArgs.push_back(Args.MakeArgString(LinkerOptions)); in ConstructJob()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAssembler.h132 std::vector<std::vector<std::string>> LinkerOptions; variable
432 return LinkerOptions; in getLinkerOptions()
/freebsd-14.2/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-14.2/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp159 if (NamedMDNode *LinkerOptions = in addModule() local
161 for (MDNode *MDOptions : LinkerOptions->operands()) in addModule()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DCodeGenOptions.h272 std::vector<std::string> LinkerOptions; variable
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DELFYAML.h216 LinkerOptions, enumerator
511 LinkerOptionsSection() : Section(ChunkKind::LinkerOptions) {} in LinkerOptionsSection()
518 return S->Kind == ChunkKind::LinkerOptions; in classof()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp170 for (auto &&Opt : CodeGenOpts.LinkerOptions) in Initialize()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp310 if (NamedMDNode *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitModuleMetadata() local
316 for (const auto *Operand : LinkerOptions->operands()) { in emitModuleMetadata()
1231 if (auto *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitModuleMetadata() local
1232 for (const auto *Option : LinkerOptions->operands()) { in emitModuleMetadata()
1868 if (NamedMDNode *LinkerOptions = M.getNamedMetadata("llvm.linker.options")) { in emitLinkerDirectives() local
1874 for (const auto *Option : LinkerOptions->operands()) { in emitLinkerDirectives()
/freebsd-14.2/contrib/llvm-project/lld/MachO/
H A DInputFiles.h169 void parseLinkerOptions(llvm::SmallVectorImpl<StringRef> &LinkerOptions);
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp103 LinkerOptions.clear(); in reset()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td6933 MarshallingInfoStringVector<CodeGenOpts<"LinkerOptions">>;