/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Config.h | 154 struct Config { struct 155 uint8_t osabi = 0; 156 uint32_t andFeatures = 0; 157 llvm::CachePruningPolicy thinLTOCachePolicy; 158 llvm::SetVector<llvm::CachedHashString> dependencyFiles; // for --dependency-file 159 llvm::StringMap<uint64_t> sectionStartMap; 160 llvm::StringRef bfdname; 161 llvm::StringRef chroot; 162 llvm::StringRef dependencyFile; 163 llvm::StringRef dwoDir; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/ |
H A D | Config.h | 41 struct Config { struct 42 enum VisScheme { 48 std::string CPU; 49 TargetOptions Options; 50 std::vector<std::string> MAttrs; 51 std::vector<std::string> MllvmArgs; 52 std::vector<std::string> PassPlugins; 54 std::function<void(legacy::PassManager &)> PreCodeGenPassesHook; 55 std::optional<Reloc::Model> RelocModel = Reloc::PIC_; 56 std::optional<CodeModel::Model> CodeModel; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/Symbolize/ |
H A D | DIPrinter.h | 74 PrinterConfig Config; variable 89 PlainPrinterBase(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in PlainPrinterBase() argument 114 LLVMPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in LLVMPrinter() argument 123 GNUPrinter(raw_ostream &OS, ErrorHandler EH, PrinterConfig &Config) in GNUPrinter() argument 131 PrinterConfig Config; variable 141 JSONPrinter(raw_ostream & OS,PrinterConfig & Config) JSONPrinter() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
H A D | ELFObjcopy.cpp | 157 static std::unique_ptr<Writer> createELFWriter(const CommonConfig &Config, in createELFWriter() 178 static std::unique_ptr<Writer> createWriter(const CommonConfig &Config, in createWriter() 217 Error Object::compressOrDecompressSections(const CommonConfig &Config) { in compressOrDecompressSections() 304 static Error updateAndRemoveSymbols(const CommonConfig &Config, in updateAndRemoveSymbols() 416 static Error replaceAndRemoveSections(const CommonConfig &Config, in replaceAndRemoveSections() 681 static Error handleArgs(const CommonConfig &Config, const ELFConfig &ELFConfig, in handleArgs() 879 static Error writeOutput(const CommonConfig &Config, Object &Obj, in writeOutput() 888 Error objcopy::elf::executeObjcopyOnIHex(const CommonConfig &Config, in executeObjcopyOnIHex() 903 Error objcopy::elf::executeObjcopyOnRawBinary(const CommonConfig &Config, in executeObjcopyOnRawBinary() 921 Error objcopy::elf::executeObjcopyOnBinary(const CommonConfig &Config, in executeObjcopyOnBinary()
|
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/XCOFF/ |
H A D | XCOFFObjcopy.cpp | 23 static Error handleArgs(const CommonConfig &Config, Object &Obj) { in handleArgs() 27 Error executeObjcopyOnBinary(const CommonConfig &Config, const XCOFFConfig &, in executeObjcopyOnBinary()
|
/freebsd/contrib/libfido2/windows/ |
H A D | cygwin.ps1 | 8 [string]$Config = "Release" variable 34 Write-Host "Config: $Config" variable
|
H A D | release.ps1 | 10 $Config = 'Release' variable
|
H A D | build.ps1 | 12 [string]$Config = "Release", variable 85 Write-Host "Config: $Config" variable [all...] |
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/symbolizer/ |
H A D | sanitizer_symbolize.cpp | 35 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/tools/llvm-dwarfutil/ |
H A D | llvm-dwarfutil.cpp | 172 setConfigToAddNewDebugSections(objcopy::ConfigManager & Config,ObjectFile & ObjFile) setConfigToAddNewDebugSections() argument 259 objcopy::ConfigManager Config; saveSeparateDebugInfo() local 283 objcopy::ConfigManager Config; saveNonDebugInfo() local 320 addSectionsFromLinkedData(objcopy::ConfigManager & Config,ObjectFile & InputFile,DebugInfoBits & LinkedDebugInfoBits) addSectionsFromLinkedData() argument 365 objcopy::ConfigManager Config; saveSeparateLinkedDebugInfo() local 396 objcopy::ConfigManager Config; saveSingleLinkedDebugInfo() local 436 objcopy::ConfigManager Config; saveCopyOfFile() local [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/ |
H A D | WasmObjcopy.cpp | 60 static void removeSections(const CommonConfig &Config, Object &Obj) { in removeSections() argument 112 handleArgs(const CommonConfig & Config,Object & Obj) handleArgs() argument 144 executeObjcopyOnBinary(const CommonConfig & Config,const WasmConfig &,object::WasmObjectFile & In,raw_ostream & Out) executeObjcopyOnBinary() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ |
H A D | Archive.cpp | 24 createNewArchiveMembers(const MultiFormatConfig &Config, const Archive &Ar) { in createNewArchiveMembers() argument 97 executeObjcopyOnArchive(const MultiFormatConfig & Config,const object::Archive & Ar) executeObjcopyOnArchive() argument
|
H A D | ObjCopy.cpp | 38 Error executeObjcopyOnBinary(const MultiFormatConfig &Config, in executeObjcopyOnBinary()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | RDFGraph.h | 669 struct Config { struct 671 Config(unsigned Opts) : Options(Opts) {} in Config() function 672 Config(ArrayRef<const TargetRegisterClass *> RCs) : Classes(RCs) {} in Config() argument 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 D | MachOObjcopy.cpp | 55 static Error removeSections(const CommonConfig &Config, Object &Obj) { in removeSections() argument 93 static void updateAndRemoveSymbols(const CommonConfig &Config, in updateAndRemoveSymbols() argument 395 handleArgs(const CommonConfig & Config,const MachOConfig & MachOConfig,Object & Obj) handleArgs() argument 440 executeObjcopyOnBinary(const CommonConfig & Config,const MachOConfig & MachOConfig,object::MachOObjectFile & In,raw_ostream & Out) executeObjcopyOnBinary() argument 478 executeObjcopyOnMachOUniversalBinary(const MultiFormatConfig & Config,const MachOUniversalBinary & In,raw_ostream & Out) executeObjcopyOnMachOUniversalBinary() argument [all...] |
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | FunctionComparator.h | 55 struct Config : ValueMapConfig<GlobalValue *> { struct 59 // Each GlobalValue is mapped to an identifier. The Config ensures when RAUW argument
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
H A D | llvm-objcopy.cpp | 115 const CommonConfig &Config = ConfigMgr.getCommonConfig(); in executeObjcopyOnRawBinary() local 139 CommonConfig &Config = ConfigMgr.Common; in executeObjcopy() local
|
/freebsd/contrib/llvm-project/compiler-rt/lib/xray/ |
H A D | xray_log_interface.cpp | 139 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/cddl/usr.sbin/zfsd/ |
H A D | vdev.h | 175 Vdev::Config() const in Config() function
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | allocator_config.h | 198 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 D | COFFObjcopy.cpp | 157 static Error handleArgs(const CommonConfig &Config, in handleArgs() argument 322 executeObjcopyOnBinary(const CommonConfig & Config,const COFFConfig & COFFConfig,COFFObjectFile & In,raw_ostream & Out) executeObjcopyOnBinary() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | ELFNixPlatform.cpp | 586 modifyPassConfig(MaterializationResponsibility & MR,jitlink::LinkGraph & LG,jitlink::PassConfiguration & Config) modifyPassConfig() argument 620 addInitializerSupportPasses(MaterializationResponsibility & MR,jitlink::PassConfiguration & Config) addInitializerSupportPasses() argument 636 addDSOHandleSupportPasses(MaterializationResponsibility & MR,jitlink::PassConfiguration & Config) addDSOHandleSupportPasses() argument 657 addEHAndTLVSupportPasses(MaterializationResponsibility & MR,jitlink::PassConfiguration & Config) addEHAndTLVSupportPasses() argument [all...] |
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | ELF_riscv.cpp | 506 RelaxConfig Config; member 594 const RelaxConfig &Config, orc::ExecutorAddr Loc, in relaxCall() 623 const RelaxConfig &Config) { in relaxBlock() 970 PassConfiguration Config; in link_ELF_riscv() local
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | ObjectLinkingLayer.h | 68 jitlink::PassConfiguration &Config) {} in modifyPassConfig()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | BalancedPartitioning.h | 170 const BalancedPartitioningConfig &Config; variable
|