Home
last modified time | relevance | path

Searched refs:Config (Results 1 – 25 of 434) sorted by relevance

12345678910>>...18

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp136 static std::unique_ptr<Writer> createELFWriter(const CommonConfig &Config, in createELFWriter() argument
142 return std::make_unique<ELFWriter<ELF32LE>>(Obj, Out, !Config.StripSections, in createELFWriter()
143 Config.OnlyKeepDebug); in createELFWriter()
145 return std::make_unique<ELFWriter<ELF64LE>>(Obj, Out, !Config.StripSections, in createELFWriter()
146 Config.OnlyKeepDebug); in createELFWriter()
148 return std::make_unique<ELFWriter<ELF32BE>>(Obj, Out, !Config.StripSections, in createELFWriter()
149 Config.OnlyKeepDebug); in createELFWriter()
151 return std::make_unique<ELFWriter<ELF64BE>>(Obj, Out, !Config.StripSections, in createELFWriter()
152 Config.OnlyKeepDebug); in createELFWriter()
157 static std::unique_ptr<Writer> createWriter(const CommonConfig &Config, in createWriter() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp156 const CommonConfig &Config = ConfigMgr.getCommonConfig(); in executeObjcopyOnRawBinary() local
157 switch (Config.OutputFormat) { in executeObjcopyOnRawBinary()
169 return elf::executeObjcopyOnRawBinary(Config, *ELFConfig, In, Out); in executeObjcopyOnRawBinary()
177 static Error executeObjcopyOnBinary(const MultiFormatConfig &Config, in executeObjcopyOnBinary() argument
180 Expected<const ELFConfig &> ELFConfig = Config.getELFConfig(); in executeObjcopyOnBinary()
184 return elf::executeObjcopyOnBinary(Config.getCommonConfig(), *ELFConfig, in executeObjcopyOnBinary()
187 Expected<const COFFConfig &> COFFConfig = Config.getCOFFConfig(); in executeObjcopyOnBinary()
191 return coff::executeObjcopyOnBinary(Config.getCommonConfig(), *COFFConfig, in executeObjcopyOnBinary()
194 Expected<const MachOConfig &> MachOConfig = Config.getMachOConfig(); in executeObjcopyOnBinary()
198 return macho::executeObjcopyOnBinary(Config.getCommonConfig(), *MachOConfig, in executeObjcopyOnBinary()
[all …]
H A DConfigManager.cpp707 CommonConfig &Config = ConfigMgr.Common; in parseObjcopyOptions() local
708 Config.InputFilename = Positional[0]; in parseObjcopyOptions()
709 Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1]; in parseObjcopyOptions()
741 Config.InputFormat = StringSwitch<FileFormat>(InputFormat) in parseObjcopyOptions()
750 Config.OutputFormat = StringSwitch<FileFormat>(OutputFormat) in parseObjcopyOptions()
754 if (Config.OutputFormat == FileFormat::Unspecified) { in parseObjcopyOptions()
756 Config.OutputFormat = Config.InputFormat; in parseObjcopyOptions()
762 Config.OutputFormat = Target->Format; in parseObjcopyOptions()
763 Config.OutputArch = Target->Machine; in parseObjcopyOptions()
769 Config.CompressionType = DebugCompressionType::Z; in parseObjcopyOptions()
[all …]
/netbsd-src/external/bsd/libfido2/dist/windows/
H A Drelease.ps110 $Config = 'Release' variable
17 ./build.ps1 -Arch ${Arch} -Type ${Type} -Config ${Config}
24 "${OUTPUT}/pkg/${InstallPrefix}/${Config}/v${SDK}/${Type}"
52 Copy-Item "${SRC}\${LIBRESSL}\crypto\crypto_obj.dir\${Config}\crypto_obj.pdb" ` in Package-PDBs()
54 Copy-Item "${SRC}\${LIBCBOR}\src\cbor.dir\${Config}\vc${SDK}.pdb" ` in Package-PDBs()
56 Copy-Item "${SRC}\${ZLIB}\zlib.dir\${Config}\vc${SDK}.pdb" ` in Package-PDBs()
58 Copy-Item "${SRC}\src\fido2_shared.dir\${Config}\vc${SDK}.pdb" ` in Package-PDBs()
63 Copy-Item "${SRC}\${LIBRESSL}\crypto\crypto_obj.dir\${Config}\crypto_obj.pdb" ` in Package-StaticPDBs()
65 Copy-Item "${SRC}\${LIBCBOR}\src\${Config}\cbor.pdb" ` in Package-StaticPDBs()
67 Copy-Item "${SRC}\${ZLIB}\${Config}\zlibstatic.pdb" ` in Package-StaticPDBs()
[all …]
H A Dbuild.ps112 [string]$Config = "Release", variable
85 Write-Host "Config: $Config" variable
151 & $CMake --build . --config ${Config} --verbose; ExitOnError
152 & $CMake --build . --config ${Config} --target install --verbose; `
170 & $CMake --build . --config ${Config} --verbose; ExitOnError
171 & $CMake --build . --config ${Config} --target install --verbose; `
188 & $CMake --build . --config ${Config} --verbose; ExitOnError
189 & $CMake --build . --config ${Config} --target install --verbose; `
211 -DCMAKE_BUILD_TYPE="${Config}" `
227 & $CMake --build . --config ${Config} --verbose; ExitOnError
[all …]
H A Dcygwin.ps18 [string]$Config = "Release" variable
34 Write-Host "Config: $Config" variable
68 cmake "-DCMAKE_BUILD_TYPE=${Config}" -B "build-${Config}"
69 make -C "build-${Config}"
70 make -C "build-${Config}" regress
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
H A DCOFFObjcopy.cpp134 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs() argument
136 Obj.removeSections([&Config](const Section &Sec) { in handleArgs()
139 if (!Config.OnlySection.empty() && !Config.OnlySection.matches(Sec.Name)) in handleArgs()
142 if (Config.StripDebug || Config.StripAll || Config.StripAllGNU || in handleArgs()
143 Config.DiscardMode == DiscardType::All || Config.StripUnneeded) { in handleArgs()
149 if (Config.ToRemove.matches(Sec.Name)) in handleArgs()
155 if (Config.OnlyKeepDebug) { in handleArgs()
166 if (Config.StripAll || Config.StripAllGNU) in handleArgs()
171 if (Config.StripUnneeded || Config.DiscardMode == DiscardType::All || in handleArgs()
172 !Config.SymbolsToRemove.empty()) in handleArgs()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.cpp52 static Error removeSections(const CommonConfig &Config, Object &Obj) { in removeSections() argument
57 if (!Config.ToRemove.empty()) { in removeSections()
58 RemovePred = [&Config, RemovePred](const std::unique_ptr<Section> &Sec) { in removeSections()
59 return Config.ToRemove.matches(Sec->CanonicalName); in removeSections()
63 if (Config.StripAll || Config.StripDebug) { in removeSections()
73 if (!Config.OnlySection.empty()) { in removeSections()
75 RemovePred = [&Config](const std::unique_ptr<Section> &Sec) { in removeSections()
76 return !Config.OnlySection.matches(Sec->CanonicalName); in removeSections()
90 static void updateAndRemoveSymbols(const CommonConfig &Config, Object &Obj) { in updateAndRemoveSymbols() argument
92 auto I = Config.SymbolsToRename.find(Sym.Name); in updateAndRemoveSymbols()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DLTOCodeGenerator.cpp128 Config.CodeModel = None; in LTOCodeGenerator()
129 Config.StatsFile = LTOStatsFile; in LTOCodeGenerator()
130 Config.PreCodeGenPassesHook = [](legacy::PassManager &PM) { in LTOCodeGenerator()
171 Config.Options = Options; in setTargetOptions()
188 Config.OptLevel = Level; in setOptLevel()
189 Config.PTO.LoopVectorization = Config.OptLevel > 1; in setOptLevel()
190 Config.PTO.SLPVectorization = Config.OptLevel > 1; in setOptLevel()
191 switch (Config.OptLevel) { in setOptLevel()
193 Config.CGOptLevel = CodeGenOpt::None; in setOptLevel()
196 Config.CGOptLevel = CodeGenOpt::Less; in setOptLevel()
[all …]
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dpl_flow_example.txt71 0 4181899457883 Config.pm -> BEGIN
74 0 4181899457906 Config.pm <- BEGIN
75 0 4181899458038 Config.pm -> BEGIN
80 0 4181899458084 Config.pm <- BEGIN
81 0 4181899458426 Config.pm -> TIEHASH
82 0 4181899458435 Config.pm <- TIEHASH
83 0 4181899458476 Config.pm -> import
84 0 4181899458493 Config.pm <- import
112 0 4181899461238 Config.pm -> FETCH
113 0 4181899461250 Config.pm <- FETCH
[all …]
H A Dpl_flowinfo_example.txt80 0 305132 97 Config.pm:5 sub -> BEGIN
83 0 305132 8 Config.pm:5 sub <- BEGIN
84 0 305132 134 Config.pm:31 sub -> BEGIN
89 0 305132 8 Config.pm:31 sub <- BEGIN
90 0 305132 343 Config.pm:60 sub -> TIEHASH
91 0 305132 10 Config.pm:60 sub <- TIEHASH
92 0 305132 44 Config.pm:25 sub -> import
93 0 305132 18 Config.pm:25 sub <- import
121 0 305132 103 Config.pm:52 sub -> FETCH
122 0 305132 12 Config.pm:52 sub <- FETCH
[all …]
H A Dpl_flowtime_example.txt76 0 4201691472650 Config.pm 92 -> BEGIN
79 0 4201691472675 Config.pm 7 <- BEGIN
80 0 4201691472809 Config.pm 133 -> BEGIN
85 0 4201691472876 Config.pm 7 <- BEGIN
86 0 4201691473222 Config.pm 345 -> TIEHASH
87 0 4201691473231 Config.pm 9 <- TIEHASH
88 0 4201691473275 Config.pm 43 -> import
89 0 4201691473292 Config.pm 17 <- import
117 0 4201691475842 Config.pm 102 -> FETCH
118 0 4201691475854 Config.pm 11 <- FETCH
[all …]
H A Dpl_calltime_example.txt65 Config.pm sub DESTROY 1
66 Config.pm sub TIEHASH 1
67 Config.pm sub import 1
75 Config.pm sub BEGIN 2
83 Config.pm sub FETCH 4
94 Config.pm sub TIEHASH 3
95 Config.pm sub DESTROY 9
97 Config.pm sub import 12
98 Config.pm sub FETCH 17
100 Config.pm sub BEGIN 38
[all …]
H A Dpl_cputime_example.txt66 Config.pm sub DESTROY 1
67 Config.pm sub TIEHASH 1
68 Config.pm sub import 1
76 Config.pm sub BEGIN 2
84 Config.pm sub FETCH 4
95 Config.pm sub TIEHASH 2
96 Config.pm sub DESTROY 6
97 Config.pm sub BEGIN 7
99 Config.pm sub import 11
100 Config.pm sub FETCH 12
[all …]
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dpl_flow_example.txt71 0 4181899457883 Config.pm -> BEGIN
74 0 4181899457906 Config.pm <- BEGIN
75 0 4181899458038 Config.pm -> BEGIN
80 0 4181899458084 Config.pm <- BEGIN
81 0 4181899458426 Config.pm -> TIEHASH
82 0 4181899458435 Config.pm <- TIEHASH
83 0 4181899458476 Config.pm -> import
84 0 4181899458493 Config.pm <- import
112 0 4181899461238 Config.pm -> FETCH
113 0 4181899461250 Config.pm <- FETCH
[all …]
H A Dpl_flowtime_example.txt76 0 4201691472650 Config.pm 92 -> BEGIN
79 0 4201691472675 Config.pm 7 <- BEGIN
80 0 4201691472809 Config.pm 133 -> BEGIN
85 0 4201691472876 Config.pm 7 <- BEGIN
86 0 4201691473222 Config.pm 345 -> TIEHASH
87 0 4201691473231 Config.pm 9 <- TIEHASH
88 0 4201691473275 Config.pm 43 -> import
89 0 4201691473292 Config.pm 17 <- import
117 0 4201691475842 Config.pm 102 -> FETCH
118 0 4201691475854 Config.pm 11 <- FETCH
[all …]
H A Dpl_flowinfo_example.txt80 0 305132 97 Config.pm:5 sub -> BEGIN
83 0 305132 8 Config.pm:5 sub <- BEGIN
84 0 305132 134 Config.pm:31 sub -> BEGIN
89 0 305132 8 Config.pm:31 sub <- BEGIN
90 0 305132 343 Config.pm:60 sub -> TIEHASH
91 0 305132 10 Config.pm:60 sub <- TIEHASH
92 0 305132 44 Config.pm:25 sub -> import
93 0 305132 18 Config.pm:25 sub <- import
121 0 305132 103 Config.pm:52 sub -> FETCH
122 0 305132 12 Config.pm:52 sub <- FETCH
[all …]
H A Dpl_calltime_example.txt65 Config.pm sub DESTROY 1
66 Config.pm sub TIEHASH 1
67 Config.pm sub import 1
75 Config.pm sub BEGIN 2
83 Config.pm sub FETCH 4
94 Config.pm sub TIEHASH 3
95 Config.pm sub DESTROY 9
97 Config.pm sub import 12
98 Config.pm sub FETCH 17
100 Config.pm sub BEGIN 38
[all …]
H A Dpl_cputime_example.txt66 Config.pm sub DESTROY 1
67 Config.pm sub TIEHASH 1
68 Config.pm sub import 1
76 Config.pm sub BEGIN 2
84 Config.pm sub FETCH 4
95 Config.pm sub TIEHASH 2
96 Config.pm sub DESTROY 6
97 Config.pm sub BEGIN 7
99 Config.pm sub import 11
100 Config.pm sub FETCH 12
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h73 PrinterConfig Config; variable
88 PlainPrinterBase(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) in PlainPrinterBase() argument
89 : DIPrinter(), OS(OS), ES(ES), Config(Config) {} in PlainPrinterBase()
113 LLVMPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) in LLVMPrinter() argument
114 : PlainPrinterBase(OS, ES, Config) {} in LLVMPrinter()
122 GNUPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) in GNUPrinter() argument
123 : PlainPrinterBase(OS, ES, Config) {} in GNUPrinter()
129 PrinterConfig Config; variable
133 json::OStream JOS(OS, Config.Pretty ? 2 : 0); in printJSON()
139 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) in JSONPrinter() argument
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DValueMap.h46 template<typename KeyT, typename ValueT, typename Config>
84 template<typename KeyT, typename ValueT, typename Config =ValueMapConfig<KeyT>>
86 friend class ValueMapCallbackVH<KeyT, ValueT, Config>;
88 using ValueMapCVH = ValueMapCallbackVH<KeyT, ValueT, Config>;
91 using ExtraData = typename Config::ExtraData;
240 template <typename KeyT, typename ValueT, typename Config>
242 friend class ValueMap<KeyT, ValueT, Config>;
245 using ValueMapT = ValueMap<KeyT, ValueT, Config>;
263 typename Config::mutex_type *M = Config::getMutex(Copy.Map->Data);
264 std::unique_lock<typename Config::mutex_type> Guard;
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
H A DWasmObjcopy.cpp42 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs() argument
44 for (StringRef Flag : Config.DumpSection) { in handleArgs()
52 Obj.removeSections([&Config](const Section &Sec) { in handleArgs()
53 if (Config.ToRemove.matches(Sec.Name)) in handleArgs()
58 for (StringRef Flag : Config.AddSection) { in handleArgs()
78 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &, in executeObjcopyOnBinary() argument
83 return createFileError(Config.InputFilename, ObjOrErr.takeError()); in executeObjcopyOnBinary()
86 if (Error E = handleArgs(Config, *Obj)) in executeObjcopyOnBinary()
90 return createFileError(Config.OutputFilename, std::move(E)); in executeObjcopyOnBinary()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h92 Config.RelocModel = Model; in setCodePICModel()
97 void setFileType(CodeGenFileType FT) { Config.CGFileType = FT; } in setFileType()
99 void setCpu(StringRef MCpu) { Config.CPU = std::string(MCpu); } in setCpu()
100 void setAttrs(std::vector<std::string> MAttrs) { Config.MAttrs = MAttrs; } in setAttrs()
183 void setFreestanding(bool Enabled) { Config.Freestanding = Enabled; } in setFreestanding()
185 void setDisableVerify(bool Value) { Config.DisableVerify = Value; } in setDisableVerify()
187 void setUseNewPM(bool Value) { Config.UseNewPM = Value; } in setUseNewPM()
241 lto::Config Config; member
/netbsd-src/external/bsd/nvi/dist/dist/ExtUtils/
H A DEmbed.pm7 use Config;
36 $lib_ext = $Config{lib_ext} || '.a';
140 @Extensions = sort split /\s+/, $Config{static_ext};
172 push(@potential_libs, $Config{libs}) if defined $std;
204 $MM->catdir("-L$Config{archlib}", "CORE"), " -lperl",
209 my $linkage = "$Config{ldflags} @archives $ld_or_bs";
217 print " $Config{ccflags} ";
221 print " $Config{ccdlflags} ";
225 print " -I$Config{archlib}/CORE ";
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dprocess.d289 Config config = Config.none,
301 Config config = Config.none,
320 Config config = Config.none,
331 Config config = Config.none,
359 Config config,
390 auto envz = createEnv(env, !(config & Config.newEnv));
437 if (config & Config.detached)
443 scope(exit) if (config & Config.detached) close(pidPipe[0]);
457 if (config & Config.detached)
476 if (config & Config.detached)
[all …]

12345678910>>...18