Home
last modified time | relevance | path

Searched defs:Config (Results 1 – 25 of 46) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
H A DConfig.h40 struct Config { struct
41 enum VisScheme {
47 std::string CPU;
48 TargetOptions Options;
49 std::vector<std::string> MAttrs;
50 std::vector<std::string> PassPlugins;
52 std::function<void(legacy::PassManager &)> PreCodeGenPassesHook;
53 Optional<Reloc::Model> RelocModel = Reloc::PIC_;
54 Optional<CodeModel::Model> CodeModel = None;
55 CodeGenOpt::Level CGOptLevel = CodeGenOpt::Default;
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/gc/
H A Dconfig.d15 struct Config struct
34 return initConfigOptions(this, "gcopt"); in initialize() argument
37 void help() @nogc nothrow in help()
74 string errorName() @nogc nothrow { return "GC"; } in errorName()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/gc/
H A Dconfig.d25 struct Config struct
27 bool disable; // start disabled
28 ubyte profile; // enable profiling with summary when terminating program
29 string gc = "conservative"; // select gc implementation conservative|manual
31 size_t initReserve; // initial reserve (MB)
32 size_t minPoolSize = 1; // initial and minimum pool size (MB)
33 size_t maxPoolSize = 64; // maximum pool size (MB)
34 size_t incPoolSize = 3; // pool size increment (MB)
35 float heapSizeFactor = 2.0; // heap size to used memory ratio
39 bool initialize() in initialize()
[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()
113 LLVMPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) in LLVMPrinter()
122 GNUPrinter(raw_ostream &OS, raw_ostream &ES, PrinterConfig &Config) in GNUPrinter()
129 PrinterConfig Config; variable
139 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) in JSONPrinter()
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/
H A Dparseoptions.d347 static struct Config struct
349 bool disable; // start disabled
350 ubyte profile; // enable profiling with summary when terminating program
351 string gc = "conservative"; // select gc implementation conservative|manual
355 float heapSizeFactor = 2.0; // heap size to used memory ratio
359 string errorName() @nogc nothrow { return "GC"; } in errorName()
/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()
157 static std::unique_ptr<Writer> createWriter(const CommonConfig &Config, in createWriter()
247 static Error updateAndRemoveSymbols(const CommonConfig &Config, Object &Obj) { in updateAndRemoveSymbols()
342 static Error replaceAndRemoveSections(const CommonConfig &Config, Object &Obj) { in replaceAndRemoveSections()
510 static Error handleArgs(const CommonConfig &Config, const ELFConfig &ELFConfig, in handleArgs()
664 static Error writeOutput(const CommonConfig &Config, Object &Obj, in writeOutput()
673 Error executeObjcopyOnIHex(const CommonConfig &Config, in executeObjcopyOnIHex()
688 Error executeObjcopyOnRawBinary(const CommonConfig &Config, in executeObjcopyOnRawBinary()
707 Error executeObjcopyOnBinary(const CommonConfig &Config, in executeObjcopyOnBinary()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp156 const CommonConfig &Config = ConfigMgr.getCommonConfig(); in executeObjcopyOnRawBinary() local
177 static Error executeObjcopyOnBinary(const MultiFormatConfig &Config, in executeObjcopyOnBinary()
220 createNewArchiveMembers(const MultiFormatConfig &Config, const Archive &Ar) { in createNewArchiveMembers()
264 const CommonConfig &Config = ConfigMgr.getCommonConfig(); in executeObjcopyOnArchive() local
274 const CommonConfig &Config = ConfigMgr.getCommonConfig(); in restoreStatOnFile() local
321 CommonConfig &Config = ConfigMgr.Common; in executeObjcopy() local
H A DConfigManager.cpp707 CommonConfig &Config = ConfigMgr.Common; in parseObjcopyOptions() local
1061 CommonConfig &Config = ConfigMgr.Common; in parseInstallNameToolOptions() local
1193 CommonConfig &Config = ConfigMgr.Common; in parseBitcodeStripOptions() local
1285 CommonConfig &Config = ConfigMgr.Common; in parseStripOptions() local
/netbsd-src/external/bsd/libfido2/dist/windows/
H A Dcygwin.ps18 [string]$Config = "Release" variable
34 Write-Host "Config: $Config" variable
H A Drelease.ps110 $Config = 'Release' variable
H A Dbuild.ps112 [string]$Config = "Release", variable
85 Write-Host "Config: $Config" variable
/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()
90 static void updateAndRemoveSymbols(const CommonConfig &Config, Object &Obj) { in updateAndRemoveSymbols()
140 static Error processLoadCommands(const CommonConfig &Config, Object &Obj) { in processLoadCommands()
334 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs()
374 Error executeObjcopyOnBinary(const CommonConfig &Config, const MachOConfig &, in executeObjcopyOnBinary()
403 Error executeObjcopyOnMachOUniversalBinary(const MultiFormatConfig &Config, in executeObjcopyOnMachOUniversalBinary()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lipo/
H A Dllvm-lipo.cpp111 struct Config { struct
112 SmallVector<InputFile, 1> InputFiles;
113 SmallVector<std::string, 1> VerifyArchList;
114 SmallVector<InputFile, 1> ReplacementFiles;
115 StringMap<const uint32_t> SegmentAlignments;
116 std::string ArchType;
117 std::string OutputFile;
118 LipoAction ActionToPerform;
/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()
78 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &, in executeObjcopyOnBinary()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h55 struct Config : ValueMapConfig<GlobalValue *> { struct
59 // Each GlobalValue is mapped to an identifier. The Config ensures when RAUW argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DYaml.h45 T Config; in getConfiguration() local
/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()
255 Error executeObjcopyOnBinary(const CommonConfig &Config, const COFFConfig &, in executeObjcopyOnBinary()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_log_interface.cc140 XRayLogInitStatus __xray_log_init_mode(const char *Mode, const char *Config) in __xray_log_init_mode()
161 __xray_log_init_mode_bin(const char *Mode, const char *Config, in __xray_log_init_mode_bin()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-libtool-darwin/
H A Dllvm-libtool-darwin.cpp104 struct Config { struct
105 bool Deterministic = true; // Updated by 'D' and 'U' modifiers.
106 uint32_t ArchCPUType;
107 uint32_t ArchCPUSubtype;
/netbsd-src/external/bsd/nsd/dist/contrib/bind2nsd/bind2nsd/
H A DConfig.py49 class Config: class
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/
H A DCodeTemplate.h127 std::string Config; member
H A DBenchmarkResult.h42 std::string Config; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DObjectLinkingLayer.h73 jitlink::PassConfiguration &Config) {} in modifyPassConfig()
/netbsd-src/external/apache2/llvm/dist/llvm/examples/OrcV2Examples/LLJITWithObjectLinkingLayerPlugin/
H A DLLJITWithObjectLinkingLayerPlugin.cpp57 jitlink::PassConfiguration &Config) override { in modifyPassConfig()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
H A DLTOCodeGenerator.h241 lto::Config Config; member

12