Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DConfig.h42 struct Config { struct
43 enum VisScheme {
49 std::string CPU;
50 TargetOptions Options;
51 std::vector<std::string> MAttrs;
52 std::vector<std::string> MllvmArgs;
53 std::vector<std::string> PassPlugins;
55 std::function<void(legacy::PassManager &)> PreCodeGenPassesHook;
56 std::optional<Reloc::Model> RelocModel = Reloc::PIC_;
57 std::optional<CodeModel::Model> CodeModel;
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DConfig.h217 struct Config { struct
218 uint8_t osabi = 0;
219 uint32_t andFeatures = 0;
220 llvm::CachePruningPolicy thinLTOCachePolicy;
221 llvm::SetVector<llvm::CachedHashString> dependencyFiles; // for --dependency-file
222 llvm::StringMap<uint64_t> sectionStartMap;
223 llvm::StringRef bfdname;
224 llvm::StringRef chroot;
225 llvm::StringRef dependencyFile;
226 llvm::StringRef dwoDir;
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/Telemetry/
H A DTelemetry.h67 struct Config { struct
73 explicit Config() : EnableTelemetry(BuildTimeEnableTelemetry) {} in Config() argument
79 explicit Config(bool E) : EnableTelemetry(E && BuildTimeEnableTelemetry) {} in Config() argument
81 virtual std::optional<std::string> makeSessionId() { return std::nullopt; } in makeSessionId()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/
H A DDIPrinter.h75 PrinterConfig Config; variable
90 PlainPrinterBase(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in PlainPrinterBase()
115 LLVMPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in LLVMPrinter()
124 GNUPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in GNUPrinter()
131 PrinterConfig Config; variable
141 JSONPrinter(raw_ostream &OS, PrinterConfig &Config) in JSONPrinter()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/XCOFF/
H A DXCOFFObjcopy.cpp22 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs()
26 Error executeObjcopyOnBinary(const CommonConfig &Config, const XCOFFConfig &, in executeObjcopyOnBinary()
/freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/
H A Dllvm-dwarfutil.cpp167 static Error setConfigToAddNewDebugSections(objcopy::ConfigManager &Config, in setConfigToAddNewDebugSections()
254 objcopy::ConfigManager Config; in saveSeparateDebugInfo() local
278 objcopy::ConfigManager Config; in saveNonDebugInfo() local
315 static Error addSectionsFromLinkedData(objcopy::ConfigManager &Config, in addSectionsFromLinkedData()
360 objcopy::ConfigManager Config; in saveSeparateLinkedDebugInfo() local
391 objcopy::ConfigManager Config; in saveSingleLinkedDebugInfo() local
431 objcopy::ConfigManager Config; in saveCopyOfFile() local
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/
H A Dsanitizer_symbolize.cpp35 llvm::symbolize::PrinterConfig Config; getDefaultPrinterConfig() local
68 llvm::symbolize::PrinterConfig Config = getDefaultPrinterConfig(); __sanitizer_symbolize_code() local
96 llvm::symbolize::PrinterConfig Config = getDefaultPrinterConfig(); __sanitizer_symbolize_data() local
[all...]
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp152 static std::unique_ptr<Writer> createELFWriter(const CommonConfig &Config, in createELFWriter()
173 static std::unique_ptr<Writer> createWriter(const CommonConfig &Config, in createWriter()
213 Error Object::compressOrDecompressSections(const CommonConfig &Config) { in compressOrDecompressSections()
300 static Error updateAndRemoveSymbols(const CommonConfig &Config, in updateAndRemoveSymbols()
412 static Error replaceAndRemoveSections(const CommonConfig &Config, in replaceAndRemoveSections()
784 static Error handleArgs(const CommonConfig &Config, const ELFConfig &ELFConfig, in handleArgs()
1037 static Error writeOutput(const CommonConfig &Config, Object &Obj, in writeOutput()
1046 Error objcopy::elf::executeObjcopyOnIHex(const CommonConfig &Config, in executeObjcopyOnIHex()
1061 Error objcopy::elf::executeObjcopyOnRawBinary(const CommonConfig &Config, in executeObjcopyOnRawBinary()
1079 Error objcopy::elf::executeObjcopyOnBinary(const CommonConfig &Config, in executeObjcopyOnBinary()
/freebsd/contrib/libfido2/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
83 Write-Host "Config: $Config" variable
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/
H A DArchive.cpp22 objcopy::createNewArchiveMembers(const MultiFormatConfig &Config, in createNewArchiveMembers()
97 Error objcopy::executeObjcopyOnArchive(const MultiFormatConfig &Config, in executeObjcopyOnArchive()
H A DObjCopy.cpp34 Error objcopy::executeObjcopyOnBinary(const MultiFormatConfig &Config, in executeObjcopyOnBinary()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmObjcopy.cpp60 static void removeSections(const CommonConfig &Config, Object &Obj) { in removeSections()
112 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs()
145 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &, in executeObjcopyOnBinary()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h669 struct Config { struct
671 Config(unsigned Opts) : Options(Opts) {} in Config() function
672 Config(ArrayRef<const TargetRegisterClass *> RCs) : Classes(RCs) {} in Config() function
673 Config(ArrayRef<MCPhysReg> Track) : TrackRegs(Track.begin(), Track.end()) {} in Config() function
674 Config(ArrayRef<RegisterId> Track) in Config() function
677 unsigned Options = BuildOptions::None;
678 SmallVector<const TargetRegisterClass *> Classes;
679 std::set<RegisterId> TrackRegs;
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/
H A DMachOObjcopy.cpp55 static Error removeSections(const CommonConfig &Config, Object &Obj) { in removeSections()
93 static void updateAndRemoveSymbols(const CommonConfig &Config, in updateAndRemoveSymbols()
440 static Error handleArgs(const CommonConfig &Config, in handleArgs()
486 Error objcopy::macho::executeObjcopyOnBinary(const CommonConfig &Config, in executeObjcopyOnBinary()
524 const MultiFormatConfig &Config, const MachOUniversalBinary &In, in executeObjcopyOnMachOUniversalBinary()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DFunctionComparator.h56 struct Config : ValueMapConfig<GlobalValue *> { struct
60 // Each GlobalValue is mapped to an identifier. The Config ensures when RAUW argument
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPreloadKernArgProlog.cpp165 for (const auto &Config : Configs) { in getLoadParameters() local
190 LoadConfig Config = in addBackCompatLoads() local
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp101 const CommonConfig &Config = ConfigMgr.getCommonConfig(); in executeObjcopyOnRawBinary() local
125 CommonConfig &Config = ConfigMgr.Common; in executeObjcopy() local
/freebsd/cddl/usr.sbin/zfsd/
H A Dvdev.h175 Vdev::Config() const in Config() function
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_log_interface.cpp139 XRayLogInitStatus __xray_log_init_mode(const char *Mode, const char *Config) in __xray_log_init_mode()
160 __xray_log_init_mode_bin(const char *Mode, const char *Config, in __xray_log_init_mode_bin()
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dallocator_config.h198 typedef AndroidConfig Config; typedef
200 typedef FuchsiaConfig Config; typedef
202 typedef TrustyConfig Config; typedef
204 typedef DefaultConfig Config; typedef
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/COFF/
H A DCOFFObjcopy.cpp157 static Error handleArgs(const CommonConfig &Config, in handleArgs()
330 Error executeObjcopyOnBinary(const CommonConfig &Config, in executeObjcopyOnBinary()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DXCOFF_ppc64.cpp110 PassConfiguration Config; in link_XCOFF_ppc64() local
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DLinkGraphLinkingLayer.h57 jitlink::PassConfiguration &Config) {} in modifyPassConfig()

123