Home
last modified time | relevance | path

Searched refs:WasmConfig (Results 1 – 7 of 7) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/wasm/
H A DWasmObjcopy.h22 struct WasmConfig;
25 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &,
H A DWasmConfig.h16 struct WasmConfig {}; struct
H A DWasmObjcopy.cpp144 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &, in executeObjcopyOnBinary() argument
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A DMultiFormatConfig.h21 struct WasmConfig;
31 virtual Expected<const WasmConfig &> getWasmConfig() const = 0;
H A DConfigManager.h33 Expected<const WasmConfig &> getWasmConfig() const override;
40 WasmConfig Wasm;
H A Dllvm-objcopy.cpp199 Expected<const WasmConfig &> WasmConfig = Config.getWasmConfig(); in executeObjcopyOnBinary() local
200 if (!WasmConfig) in executeObjcopyOnBinary()
201 return WasmConfig.takeError(); in executeObjcopyOnBinary()
204 *WasmConfig, *WasmBinary, Out); in executeObjcopyOnBinary()
H A DConfigManager.cpp611 Expected<const WasmConfig &> ConfigManager::getWasmConfig() const { in getWasmConfig()