Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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.cpp78 Error executeObjcopyOnBinary(const CommonConfig &Config, const WasmConfig &, in executeObjcopyOnBinary() argument
/netbsd-src/external/apache2/llvm/dist/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;
44 WasmConfig Wasm;
H A Dllvm-objcopy.cpp205 Expected<const WasmConfig &> WasmConfig = Config.getWasmConfig(); in executeObjcopyOnBinary() local
206 if (!WasmConfig) in executeObjcopyOnBinary()
207 return WasmConfig.takeError(); in executeObjcopyOnBinary()
210 *WasmConfig, *WasmBinary, Out); in executeObjcopyOnBinary()
H A DConfigManager.cpp632 Expected<const WasmConfig &> ConfigManager::getWasmConfig() const { in getWasmConfig()