mirror of
https://github.com/vosen/ZLUDA.git
synced 2025-04-26 19:38:49 +03:00
Remove a bunch of unused dependencies
This commit is contained in:
7
.gitmodules
vendored
7
.gitmodules
vendored
@ -1,10 +1,3 @@
|
||||
[submodule "ext/spirv-tools"]
|
||||
path = ext/spirv-tools
|
||||
url = https://github.com/KhronosGroup/SPIRV-Tools
|
||||
branch = master
|
||||
[submodule "ext/spirv-headers"]
|
||||
path = ext/spirv-headers
|
||||
url = https://github.com/KhronosGroup/SPIRV-Headers
|
||||
[submodule "ext/llvm-project"]
|
||||
path = ext/llvm-project
|
||||
url = https://github.com/llvm/llvm-project
|
||||
|
@ -9,9 +9,6 @@ members = [
|
||||
"cuda_base",
|
||||
"cuda_types",
|
||||
"detours-sys",
|
||||
"level_zero-sys",
|
||||
"level_zero",
|
||||
"spirv_tools-sys",
|
||||
"zluda",
|
||||
"zluda_dump",
|
||||
"zluda_lib",
|
||||
|
1
ext/spirv-headers
vendored
1
ext/spirv-headers
vendored
@ -1 +0,0 @@
|
||||
Subproject commit 308bd07424350a6000f35a77b5f85cd4f3da319e
|
1
ext/spirv-tools
vendored
1
ext/spirv-tools
vendored
@ -1 +0,0 @@
|
||||
Subproject commit e128ab0d624ce7beb08eb9656bb260c597a46d0a
|
@ -1,8 +0,0 @@
|
||||
[package]
|
||||
name = "level_zero-sys"
|
||||
version = "1.0.4"
|
||||
authors = ["Andrzej Janik <vosen@vosen.pl>"]
|
||||
edition = "2018"
|
||||
links = "ze_loader"
|
||||
|
||||
[lib]
|
@ -1,4 +0,0 @@
|
||||
sed 's/^typedef uint32_t ze_.*flags_t;$//g' include/ze_api.h > include/level_zero/ze_api.h
|
||||
sed -i -r 's/ze_(.*)_flag_t/ze_\1_flags_t/g' include/level_zero/ze_api.h
|
||||
bindgen --with-derive-default --no-default ".*format_t" --no-default ".*fd_t" --no-default ".*constants_t" --no-default ".*handle_t" --no-default ".*desc_t" --no-default ".*params_t" --size_t-is-usize --default-enum-style=newtype --bitfield-enum ".*flags_t" --whitelist-function "ze.*" --whitelist-type "ze.*" include/level_zero/ze_api.h -o src/ze_api.rs -- -Iinclude
|
||||
sed -i 's/pub struct _ze_result_t/#[must_use]\npub struct _ze_result_t/g' src/ze_api.rs
|
@ -1,17 +0,0 @@
|
||||
use env::VarError;
|
||||
use std::{env, path::PathBuf};
|
||||
|
||||
fn main() -> Result<(), VarError> {
|
||||
println!("cargo:rustc-link-lib=dylib=ze_loader");
|
||||
if cfg!(windows) {
|
||||
let env = env::var("CARGO_CFG_TARGET_ENV")?;
|
||||
if env == "msvc" {
|
||||
let mut path = PathBuf::from(env::var("CARGO_MANIFEST_DIR")?);
|
||||
path.push("lib");
|
||||
println!("cargo:rustc-link-search=native={}", path.display());
|
||||
} else {
|
||||
println!("cargo:rustc-link-search=native=C:\\Windows\\System32");
|
||||
};
|
||||
}
|
||||
Ok(())
|
||||
}
|
1
level_zero-sys/include/level_zero/.gitignore
vendored
1
level_zero-sys/include/level_zero/.gitignore
vendored
@ -1 +0,0 @@
|
||||
ze_api.h
|
File diff suppressed because it is too large
Load Diff
@ -1,316 +0,0 @@
|
||||
EXPORTS
|
||||
zeCommandListAppendBarrier
|
||||
zeCommandListAppendEventReset
|
||||
zeCommandListAppendImageCopy
|
||||
zeCommandListAppendImageCopyFromMemory
|
||||
zeCommandListAppendImageCopyRegion
|
||||
zeCommandListAppendImageCopyToMemory
|
||||
zeCommandListAppendLaunchCooperativeKernel
|
||||
zeCommandListAppendLaunchKernel
|
||||
zeCommandListAppendLaunchKernelIndirect
|
||||
zeCommandListAppendLaunchMultipleKernelsIndirect
|
||||
zeCommandListAppendMemAdvise
|
||||
zeCommandListAppendMemoryCopy
|
||||
zeCommandListAppendMemoryCopyFromContext
|
||||
zeCommandListAppendMemoryCopyRegion
|
||||
zeCommandListAppendMemoryFill
|
||||
zeCommandListAppendMemoryPrefetch
|
||||
zeCommandListAppendMemoryRangesBarrier
|
||||
zeCommandListAppendQueryKernelTimestamps
|
||||
zeCommandListAppendSignalEvent
|
||||
zeCommandListAppendWaitOnEvents
|
||||
zeCommandListAppendWriteGlobalTimestamp
|
||||
zeCommandListClose
|
||||
zeCommandListCreate
|
||||
zeCommandListCreateImmediate
|
||||
zeCommandListDestroy
|
||||
zeCommandListReset
|
||||
zeCommandQueueCreate
|
||||
zeCommandQueueDestroy
|
||||
zeCommandQueueExecuteCommandLists
|
||||
zeCommandQueueSynchronize
|
||||
zeContextCreate
|
||||
zeContextCreateEx
|
||||
zeContextDestroy
|
||||
zeContextEvictImage
|
||||
zeContextEvictMemory
|
||||
zeContextGetStatus
|
||||
zeContextMakeImageResident
|
||||
zeContextMakeMemoryResident
|
||||
zeContextSystemBarrier
|
||||
zeDeviceCanAccessPeer
|
||||
zeDeviceGet
|
||||
zeDeviceGetCacheProperties
|
||||
zeDeviceGetCommandQueueGroupProperties
|
||||
zeDeviceGetComputeProperties
|
||||
zeDeviceGetExternalMemoryProperties
|
||||
zeDeviceGetGlobalTimestamps
|
||||
zeDeviceGetImageProperties
|
||||
zeDeviceGetMemoryAccessProperties
|
||||
zeDeviceGetMemoryProperties
|
||||
zeDeviceGetModuleProperties
|
||||
zeDeviceGetP2PProperties
|
||||
zeDeviceGetProperties
|
||||
zeDeviceGetStatus
|
||||
zeDeviceGetSubDevices
|
||||
zeDriverGet
|
||||
zeDriverGetApiVersion
|
||||
zeDriverGetExtensionFunctionAddress
|
||||
zeDriverGetExtensionProperties
|
||||
zeDriverGetIpcProperties
|
||||
zeDriverGetProperties
|
||||
zeEventCreate
|
||||
zeEventDestroy
|
||||
zeEventHostReset
|
||||
zeEventHostSignal
|
||||
zeEventHostSynchronize
|
||||
zeEventPoolCloseIpcHandle
|
||||
zeEventPoolCreate
|
||||
zeEventPoolDestroy
|
||||
zeEventPoolGetIpcHandle
|
||||
zeEventPoolOpenIpcHandle
|
||||
zeEventQueryKernelTimestamp
|
||||
zeEventQueryStatus
|
||||
zeFenceCreate
|
||||
zeFenceDestroy
|
||||
zeFenceHostSynchronize
|
||||
zeFenceQueryStatus
|
||||
zeFenceReset
|
||||
zeGetCommandListProcAddrTable
|
||||
zeGetCommandQueueProcAddrTable
|
||||
zeGetContextProcAddrTable
|
||||
zeGetDeviceProcAddrTable
|
||||
zeGetDriverProcAddrTable
|
||||
zeGetEventPoolProcAddrTable
|
||||
zeGetEventProcAddrTable
|
||||
zeGetFenceProcAddrTable
|
||||
zeGetGlobalProcAddrTable
|
||||
zeGetImageProcAddrTable
|
||||
zeGetKernelExpProcAddrTable
|
||||
zeGetKernelProcAddrTable
|
||||
zeGetMemProcAddrTable
|
||||
zeGetModuleBuildLogProcAddrTable
|
||||
zeGetModuleProcAddrTable
|
||||
zeGetPhysicalMemProcAddrTable
|
||||
zeGetSamplerProcAddrTable
|
||||
zeGetVirtualMemProcAddrTable
|
||||
zeImageCreate
|
||||
zeImageDestroy
|
||||
zeImageGetProperties
|
||||
zeInit
|
||||
zeKernelCreate
|
||||
zeKernelDestroy
|
||||
zeKernelGetIndirectAccess
|
||||
zeKernelGetName
|
||||
zeKernelGetProperties
|
||||
zeKernelGetSourceAttributes
|
||||
zeKernelSetArgumentValue
|
||||
zeKernelSetCacheConfig
|
||||
zeKernelSetGlobalOffsetExp
|
||||
zeKernelSetGroupSize
|
||||
zeKernelSetIndirectAccess
|
||||
zeKernelSuggestGroupSize
|
||||
zeKernelSuggestMaxCooperativeGroupCount
|
||||
zeLoaderInit
|
||||
zeMemAllocDevice
|
||||
zeMemAllocHost
|
||||
zeMemAllocShared
|
||||
zeMemCloseIpcHandle
|
||||
zeMemFree
|
||||
zeMemGetAddressRange
|
||||
zeMemGetAllocProperties
|
||||
zeMemGetIpcHandle
|
||||
zeMemOpenIpcHandle
|
||||
zeModuleBuildLogDestroy
|
||||
zeModuleBuildLogGetString
|
||||
zeModuleCreate
|
||||
zeModuleDestroy
|
||||
zeModuleDynamicLink
|
||||
zeModuleGetFunctionPointer
|
||||
zeModuleGetGlobalPointer
|
||||
zeModuleGetKernelNames
|
||||
zeModuleGetNativeBinary
|
||||
zeModuleGetProperties
|
||||
zePhysicalMemCreate
|
||||
zePhysicalMemDestroy
|
||||
zeSamplerCreate
|
||||
zeSamplerDestroy
|
||||
zeVirtualMemFree
|
||||
zeVirtualMemGetAccessAttribute
|
||||
zeVirtualMemMap
|
||||
zeVirtualMemQueryPageSize
|
||||
zeVirtualMemReserve
|
||||
zeVirtualMemSetAccessAttribute
|
||||
zeVirtualMemUnmap
|
||||
zelGetTracerApiProcAddrTable
|
||||
zelTracerCreate
|
||||
zelTracerDestroy
|
||||
zelTracerSetEnabled
|
||||
zelTracerSetEpilogues
|
||||
zelTracerSetPrologues
|
||||
zesDeviceEnumDiagnosticTestSuites
|
||||
zesDeviceEnumEngineGroups
|
||||
zesDeviceEnumFabricPorts
|
||||
zesDeviceEnumFans
|
||||
zesDeviceEnumFirmwares
|
||||
zesDeviceEnumFrequencyDomains
|
||||
zesDeviceEnumLeds
|
||||
zesDeviceEnumMemoryModules
|
||||
zesDeviceEnumPerformanceFactorDomains
|
||||
zesDeviceEnumPowerDomains
|
||||
zesDeviceEnumPsus
|
||||
zesDeviceEnumRasErrorSets
|
||||
zesDeviceEnumSchedulers
|
||||
zesDeviceEnumStandbyDomains
|
||||
zesDeviceEnumTemperatureSensors
|
||||
zesDeviceEventRegister
|
||||
zesDeviceGetProperties
|
||||
zesDeviceGetState
|
||||
zesDevicePciGetBars
|
||||
zesDevicePciGetProperties
|
||||
zesDevicePciGetState
|
||||
zesDevicePciGetStats
|
||||
zesDeviceProcessesGetState
|
||||
zesDeviceReset
|
||||
zesDiagnosticsGetProperties
|
||||
zesDiagnosticsGetTests
|
||||
zesDiagnosticsRunTests
|
||||
zesDriverEventListen
|
||||
zesDriverEventListenEx
|
||||
zesEngineGetActivity
|
||||
zesEngineGetProperties
|
||||
zesFabricPortGetConfig
|
||||
zesFabricPortGetLinkType
|
||||
zesFabricPortGetProperties
|
||||
zesFabricPortGetState
|
||||
zesFabricPortGetThroughput
|
||||
zesFabricPortSetConfig
|
||||
zesFanGetConfig
|
||||
zesFanGetProperties
|
||||
zesFanGetState
|
||||
zesFanSetDefaultMode
|
||||
zesFanSetFixedSpeedMode
|
||||
zesFanSetSpeedTableMode
|
||||
zesFirmwareFlash
|
||||
zesFirmwareGetProperties
|
||||
zesFrequencyGetAvailableClocks
|
||||
zesFrequencyGetProperties
|
||||
zesFrequencyGetRange
|
||||
zesFrequencyGetState
|
||||
zesFrequencyGetThrottleTime
|
||||
zesFrequencyOcGetCapabilities
|
||||
zesFrequencyOcGetFrequencyTarget
|
||||
zesFrequencyOcGetIccMax
|
||||
zesFrequencyOcGetMode
|
||||
zesFrequencyOcGetTjMax
|
||||
zesFrequencyOcGetVoltageTarget
|
||||
zesFrequencyOcSetFrequencyTarget
|
||||
zesFrequencyOcSetIccMax
|
||||
zesFrequencyOcSetMode
|
||||
zesFrequencyOcSetTjMax
|
||||
zesFrequencyOcSetVoltageTarget
|
||||
zesFrequencySetRange
|
||||
zesGetDeviceProcAddrTable
|
||||
zesGetDiagnosticsProcAddrTable
|
||||
zesGetDriverProcAddrTable
|
||||
zesGetEngineProcAddrTable
|
||||
zesGetFabricPortProcAddrTable
|
||||
zesGetFanProcAddrTable
|
||||
zesGetFirmwareProcAddrTable
|
||||
zesGetFrequencyProcAddrTable
|
||||
zesGetLedProcAddrTable
|
||||
zesGetMemoryProcAddrTable
|
||||
zesGetPerformanceFactorProcAddrTable
|
||||
zesGetPowerProcAddrTable
|
||||
zesGetPsuProcAddrTable
|
||||
zesGetRasProcAddrTable
|
||||
zesGetSchedulerProcAddrTable
|
||||
zesGetStandbyProcAddrTable
|
||||
zesGetTemperatureProcAddrTable
|
||||
zesLedGetProperties
|
||||
zesLedGetState
|
||||
zesLedSetColor
|
||||
zesLedSetState
|
||||
zesMemoryGetBandwidth
|
||||
zesMemoryGetProperties
|
||||
zesMemoryGetState
|
||||
zesPerformanceFactorGetConfig
|
||||
zesPerformanceFactorGetProperties
|
||||
zesPerformanceFactorSetConfig
|
||||
zesPowerGetEnergyCounter
|
||||
zesPowerGetEnergyThreshold
|
||||
zesPowerGetLimits
|
||||
zesPowerGetProperties
|
||||
zesPowerSetEnergyThreshold
|
||||
zesPowerSetLimits
|
||||
zesPsuGetProperties
|
||||
zesPsuGetState
|
||||
zesRasGetConfig
|
||||
zesRasGetProperties
|
||||
zesRasGetState
|
||||
zesRasSetConfig
|
||||
zesSchedulerGetCurrentMode
|
||||
zesSchedulerGetProperties
|
||||
zesSchedulerGetTimeoutModeProperties
|
||||
zesSchedulerGetTimesliceModeProperties
|
||||
zesSchedulerSetComputeUnitDebugMode
|
||||
zesSchedulerSetExclusiveMode
|
||||
zesSchedulerSetTimeoutMode
|
||||
zesSchedulerSetTimesliceMode
|
||||
zesStandbyGetMode
|
||||
zesStandbyGetProperties
|
||||
zesStandbySetMode
|
||||
zesTemperatureGetConfig
|
||||
zesTemperatureGetProperties
|
||||
zesTemperatureGetState
|
||||
zesTemperatureSetConfig
|
||||
zetCommandListAppendMetricMemoryBarrier
|
||||
zetCommandListAppendMetricQueryBegin
|
||||
zetCommandListAppendMetricQueryEnd
|
||||
zetCommandListAppendMetricStreamerMarker
|
||||
zetContextActivateMetricGroups
|
||||
zetDebugAcknowledgeEvent
|
||||
zetDebugAttach
|
||||
zetDebugDetach
|
||||
zetDebugGetRegisterSetProperties
|
||||
zetDebugInterrupt
|
||||
zetDebugReadEvent
|
||||
zetDebugReadMemory
|
||||
zetDebugReadRegisters
|
||||
zetDebugResume
|
||||
zetDebugWriteMemory
|
||||
zetDebugWriteRegisters
|
||||
zetDeviceGetDebugProperties
|
||||
zetGetCommandListProcAddrTable
|
||||
zetGetContextProcAddrTable
|
||||
zetGetDebugProcAddrTable
|
||||
zetGetDeviceProcAddrTable
|
||||
zetGetKernelProcAddrTable
|
||||
zetGetMetricGroupProcAddrTable
|
||||
zetGetMetricProcAddrTable
|
||||
zetGetMetricQueryPoolProcAddrTable
|
||||
zetGetMetricQueryProcAddrTable
|
||||
zetGetMetricStreamerProcAddrTable
|
||||
zetGetModuleProcAddrTable
|
||||
zetGetTracerExpProcAddrTable
|
||||
zetKernelGetProfileInfo
|
||||
zetMetricGet
|
||||
zetMetricGetProperties
|
||||
zetMetricGroupCalculateMetricValues
|
||||
zetMetricGroupGet
|
||||
zetMetricGroupGetProperties
|
||||
zetMetricQueryCreate
|
||||
zetMetricQueryDestroy
|
||||
zetMetricQueryGetData
|
||||
zetMetricQueryPoolCreate
|
||||
zetMetricQueryPoolDestroy
|
||||
zetMetricQueryReset
|
||||
zetMetricStreamerClose
|
||||
zetMetricStreamerOpen
|
||||
zetMetricStreamerReadData
|
||||
zetModuleGetDebugInfo
|
||||
zetTracerExpCreate
|
||||
zetTracerExpDestroy
|
||||
zetTracerExpSetEnabled
|
||||
zetTracerExpSetEpilogues
|
||||
zetTracerExpSetPrologues
|
Binary file not shown.
@ -1,3 +0,0 @@
|
||||
#![allow(warnings)]
|
||||
pub mod ze_api;
|
||||
pub use ze_api::*;
|
File diff suppressed because it is too large
Load Diff
@ -1,14 +0,0 @@
|
||||
[package]
|
||||
name = "level_zero"
|
||||
version = "0.1.0"
|
||||
authors = ["Andrzej Janik <vosen@vosen.pl>"]
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
|
||||
[dependencies]
|
||||
level_zero-sys = { path = "../level_zero-sys" }
|
||||
|
||||
[dependencies.ocl-core]
|
||||
version = "0.11"
|
||||
features = ["opencl_version_1_2", "opencl_version_2_0", "opencl_version_2_1"]
|
@ -1 +0,0 @@
|
||||
More ergonomic bindings for oneAPI Level Zero
|
@ -1,4 +0,0 @@
|
||||
pub use level_zero_sys as sys;
|
||||
|
||||
pub mod ze;
|
||||
pub use ze::*;
|
1289
level_zero/src/ze.rs
1289
level_zero/src/ze.rs
File diff suppressed because it is too large
Load Diff
@ -1,10 +0,0 @@
|
||||
[package]
|
||||
name = "spirv_tools-sys"
|
||||
version = "0.0.0"
|
||||
authors = ["Andrzej Janik <vosen@vosen.pl>"]
|
||||
edition = "2018"
|
||||
|
||||
[lib]
|
||||
|
||||
[build-dependencies]
|
||||
cmake = "0.1"
|
@ -1 +0,0 @@
|
||||
bindgen --whitelist-type="spv.*" --whitelist-function="spv.*" --size_t-is-usize --default-enum-style=rust --bitfield-enum="spv_text_to_binary_options_t|spv_binary_to_text_options_t" ../ext/SPIRV-Tools/include/spirv-tools/libspirv.h -o src/spirv_tools.rs
|
@ -1,28 +0,0 @@
|
||||
extern crate cmake;
|
||||
|
||||
use cmake::Config;
|
||||
use std::{env::VarError, path::PathBuf};
|
||||
|
||||
fn main() -> Result<(), VarError> {
|
||||
let root_path = std::env::var("CARGO_MANIFEST_DIR")?;
|
||||
let mut headers_path = PathBuf::new();
|
||||
headers_path.push(root_path);
|
||||
headers_path.push("../ext/spirv-headers");
|
||||
let spirv_tools_dir = Config::new("../ext/spirv-tools")
|
||||
.always_configure(false)
|
||||
.define("SPIRV-Headers_SOURCE_DIR", headers_path)
|
||||
.define("SPIRV_SKIP_EXECUTABLES", "ON")
|
||||
.define("SPIRV_SKIP_TESTS", "ON")
|
||||
.build();
|
||||
println!(
|
||||
"cargo:rustc-link-search=native={}/bin",
|
||||
spirv_tools_dir.display()
|
||||
);
|
||||
println!(
|
||||
"cargo:rustc-link-search=native={}/lib",
|
||||
spirv_tools_dir.display()
|
||||
);
|
||||
// dynamic linking to avoid linking to C++ runtime
|
||||
println!("cargo:rustc-link-lib=dylib=SPIRV-Tools-shared");
|
||||
Ok(())
|
||||
}
|
@ -1,3 +0,0 @@
|
||||
#[allow(warnings)]
|
||||
mod spirv_tools;
|
||||
pub use spirv_tools::*;
|
@ -1,972 +0,0 @@
|
||||
/* automatically generated by rust-bindgen 0.54.1 */
|
||||
|
||||
pub type __uint16_t = ::std::os::raw::c_ushort;
|
||||
pub type __uint32_t = ::std::os::raw::c_uint;
|
||||
#[repr(i32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_result_t {
|
||||
SPV_SUCCESS = 0,
|
||||
SPV_UNSUPPORTED = 1,
|
||||
SPV_END_OF_STREAM = 2,
|
||||
SPV_WARNING = 3,
|
||||
SPV_FAILED_MATCH = 4,
|
||||
SPV_REQUESTED_TERMINATION = 5,
|
||||
SPV_ERROR_INTERNAL = -1,
|
||||
SPV_ERROR_OUT_OF_MEMORY = -2,
|
||||
SPV_ERROR_INVALID_POINTER = -3,
|
||||
SPV_ERROR_INVALID_BINARY = -4,
|
||||
SPV_ERROR_INVALID_TEXT = -5,
|
||||
SPV_ERROR_INVALID_TABLE = -6,
|
||||
SPV_ERROR_INVALID_VALUE = -7,
|
||||
SPV_ERROR_INVALID_DIAGNOSTIC = -8,
|
||||
SPV_ERROR_INVALID_LOOKUP = -9,
|
||||
SPV_ERROR_INVALID_ID = -10,
|
||||
SPV_ERROR_INVALID_CFG = -11,
|
||||
SPV_ERROR_INVALID_LAYOUT = -12,
|
||||
SPV_ERROR_INVALID_CAPABILITY = -13,
|
||||
SPV_ERROR_INVALID_DATA = -14,
|
||||
SPV_ERROR_MISSING_EXTENSION = -15,
|
||||
SPV_ERROR_WRONG_VERSION = -16,
|
||||
_spv_result_t = 2147483647,
|
||||
}
|
||||
#[repr(u32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_message_level_t {
|
||||
SPV_MSG_FATAL = 0,
|
||||
SPV_MSG_INTERNAL_ERROR = 1,
|
||||
SPV_MSG_ERROR = 2,
|
||||
SPV_MSG_WARNING = 3,
|
||||
SPV_MSG_INFO = 4,
|
||||
SPV_MSG_DEBUG = 5,
|
||||
}
|
||||
#[repr(u32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_endianness_t {
|
||||
SPV_ENDIANNESS_LITTLE = 0,
|
||||
SPV_ENDIANNESS_BIG = 1,
|
||||
_spv_endianness_t = 2147483647,
|
||||
}
|
||||
impl spv_operand_type_t {
|
||||
pub const SPV_OPERAND_TYPE_FIRST_OPTIONAL_TYPE: spv_operand_type_t =
|
||||
spv_operand_type_t::SPV_OPERAND_TYPE_OPTIONAL_ID;
|
||||
}
|
||||
impl spv_operand_type_t {
|
||||
pub const SPV_OPERAND_TYPE_FIRST_VARIABLE_TYPE: spv_operand_type_t =
|
||||
spv_operand_type_t::SPV_OPERAND_TYPE_VARIABLE_ID;
|
||||
}
|
||||
impl spv_operand_type_t {
|
||||
pub const SPV_OPERAND_TYPE_LAST_VARIABLE_TYPE: spv_operand_type_t =
|
||||
spv_operand_type_t::SPV_OPERAND_TYPE_VARIABLE_ID_LITERAL_INTEGER;
|
||||
}
|
||||
impl spv_operand_type_t {
|
||||
pub const SPV_OPERAND_TYPE_LAST_OPTIONAL_TYPE: spv_operand_type_t =
|
||||
spv_operand_type_t::SPV_OPERAND_TYPE_VARIABLE_ID_LITERAL_INTEGER;
|
||||
}
|
||||
#[repr(u32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_operand_type_t {
|
||||
SPV_OPERAND_TYPE_NONE = 0,
|
||||
SPV_OPERAND_TYPE_ID = 1,
|
||||
SPV_OPERAND_TYPE_TYPE_ID = 2,
|
||||
SPV_OPERAND_TYPE_RESULT_ID = 3,
|
||||
SPV_OPERAND_TYPE_MEMORY_SEMANTICS_ID = 4,
|
||||
SPV_OPERAND_TYPE_SCOPE_ID = 5,
|
||||
SPV_OPERAND_TYPE_LITERAL_INTEGER = 6,
|
||||
SPV_OPERAND_TYPE_EXTENSION_INSTRUCTION_NUMBER = 7,
|
||||
SPV_OPERAND_TYPE_SPEC_CONSTANT_OP_NUMBER = 8,
|
||||
SPV_OPERAND_TYPE_TYPED_LITERAL_NUMBER = 9,
|
||||
SPV_OPERAND_TYPE_LITERAL_STRING = 10,
|
||||
SPV_OPERAND_TYPE_SOURCE_LANGUAGE = 11,
|
||||
SPV_OPERAND_TYPE_EXECUTION_MODEL = 12,
|
||||
SPV_OPERAND_TYPE_ADDRESSING_MODEL = 13,
|
||||
SPV_OPERAND_TYPE_MEMORY_MODEL = 14,
|
||||
SPV_OPERAND_TYPE_EXECUTION_MODE = 15,
|
||||
SPV_OPERAND_TYPE_STORAGE_CLASS = 16,
|
||||
SPV_OPERAND_TYPE_DIMENSIONALITY = 17,
|
||||
SPV_OPERAND_TYPE_SAMPLER_ADDRESSING_MODE = 18,
|
||||
SPV_OPERAND_TYPE_SAMPLER_FILTER_MODE = 19,
|
||||
SPV_OPERAND_TYPE_SAMPLER_IMAGE_FORMAT = 20,
|
||||
SPV_OPERAND_TYPE_IMAGE_CHANNEL_ORDER = 21,
|
||||
SPV_OPERAND_TYPE_IMAGE_CHANNEL_DATA_TYPE = 22,
|
||||
SPV_OPERAND_TYPE_FP_ROUNDING_MODE = 23,
|
||||
SPV_OPERAND_TYPE_LINKAGE_TYPE = 24,
|
||||
SPV_OPERAND_TYPE_ACCESS_QUALIFIER = 25,
|
||||
SPV_OPERAND_TYPE_FUNCTION_PARAMETER_ATTRIBUTE = 26,
|
||||
SPV_OPERAND_TYPE_DECORATION = 27,
|
||||
SPV_OPERAND_TYPE_BUILT_IN = 28,
|
||||
SPV_OPERAND_TYPE_GROUP_OPERATION = 29,
|
||||
SPV_OPERAND_TYPE_KERNEL_ENQ_FLAGS = 30,
|
||||
SPV_OPERAND_TYPE_KERNEL_PROFILING_INFO = 31,
|
||||
SPV_OPERAND_TYPE_CAPABILITY = 32,
|
||||
SPV_OPERAND_TYPE_RAY_FLAGS = 33,
|
||||
SPV_OPERAND_TYPE_RAY_QUERY_INTERSECTION = 34,
|
||||
SPV_OPERAND_TYPE_RAY_QUERY_COMMITTED_INTERSECTION_TYPE = 35,
|
||||
SPV_OPERAND_TYPE_RAY_QUERY_CANDIDATE_INTERSECTION_TYPE = 36,
|
||||
SPV_OPERAND_TYPE_IMAGE = 37,
|
||||
SPV_OPERAND_TYPE_FP_FAST_MATH_MODE = 38,
|
||||
SPV_OPERAND_TYPE_SELECTION_CONTROL = 39,
|
||||
SPV_OPERAND_TYPE_LOOP_CONTROL = 40,
|
||||
SPV_OPERAND_TYPE_FUNCTION_CONTROL = 41,
|
||||
SPV_OPERAND_TYPE_MEMORY_ACCESS = 42,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_ID = 43,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_IMAGE = 44,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_MEMORY_ACCESS = 45,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_LITERAL_INTEGER = 46,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_LITERAL_NUMBER = 47,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_TYPED_LITERAL_INTEGER = 48,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_LITERAL_STRING = 49,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_ACCESS_QUALIFIER = 50,
|
||||
SPV_OPERAND_TYPE_OPTIONAL_CIV = 51,
|
||||
SPV_OPERAND_TYPE_VARIABLE_ID = 52,
|
||||
SPV_OPERAND_TYPE_VARIABLE_LITERAL_INTEGER = 53,
|
||||
SPV_OPERAND_TYPE_VARIABLE_LITERAL_INTEGER_ID = 54,
|
||||
SPV_OPERAND_TYPE_VARIABLE_ID_LITERAL_INTEGER = 55,
|
||||
SPV_OPERAND_TYPE_DEBUG_INFO_FLAGS = 56,
|
||||
SPV_OPERAND_TYPE_DEBUG_BASE_TYPE_ATTRIBUTE_ENCODING = 57,
|
||||
SPV_OPERAND_TYPE_DEBUG_COMPOSITE_TYPE = 58,
|
||||
SPV_OPERAND_TYPE_DEBUG_TYPE_QUALIFIER = 59,
|
||||
SPV_OPERAND_TYPE_DEBUG_OPERATION = 60,
|
||||
SPV_OPERAND_TYPE_CLDEBUG100_DEBUG_INFO_FLAGS = 61,
|
||||
SPV_OPERAND_TYPE_CLDEBUG100_DEBUG_BASE_TYPE_ATTRIBUTE_ENCODING = 62,
|
||||
SPV_OPERAND_TYPE_CLDEBUG100_DEBUG_COMPOSITE_TYPE = 63,
|
||||
SPV_OPERAND_TYPE_CLDEBUG100_DEBUG_TYPE_QUALIFIER = 64,
|
||||
SPV_OPERAND_TYPE_CLDEBUG100_DEBUG_OPERATION = 65,
|
||||
SPV_OPERAND_TYPE_CLDEBUG100_DEBUG_IMPORTED_ENTITY = 66,
|
||||
SPV_OPERAND_TYPE_NUM_OPERAND_TYPES = 67,
|
||||
_spv_operand_type_t = 2147483647,
|
||||
}
|
||||
#[repr(u32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_ext_inst_type_t {
|
||||
SPV_EXT_INST_TYPE_NONE = 0,
|
||||
SPV_EXT_INST_TYPE_GLSL_STD_450 = 1,
|
||||
SPV_EXT_INST_TYPE_OPENCL_STD = 2,
|
||||
SPV_EXT_INST_TYPE_SPV_AMD_SHADER_EXPLICIT_VERTEX_PARAMETER = 3,
|
||||
SPV_EXT_INST_TYPE_SPV_AMD_SHADER_TRINARY_MINMAX = 4,
|
||||
SPV_EXT_INST_TYPE_SPV_AMD_GCN_SHADER = 5,
|
||||
SPV_EXT_INST_TYPE_SPV_AMD_SHADER_BALLOT = 6,
|
||||
SPV_EXT_INST_TYPE_DEBUGINFO = 7,
|
||||
SPV_EXT_INST_TYPE_OPENCL_DEBUGINFO_100 = 8,
|
||||
SPV_EXT_INST_TYPE_NONSEMANTIC_UNKNOWN = 9,
|
||||
_spv_ext_inst_type_t = 2147483647,
|
||||
}
|
||||
#[repr(u32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_number_kind_t {
|
||||
SPV_NUMBER_NONE = 0,
|
||||
SPV_NUMBER_UNSIGNED_INT = 1,
|
||||
SPV_NUMBER_SIGNED_INT = 2,
|
||||
SPV_NUMBER_FLOATING = 3,
|
||||
}
|
||||
impl spv_text_to_binary_options_t {
|
||||
pub const SPV_TEXT_TO_BINARY_OPTION_NONE: spv_text_to_binary_options_t =
|
||||
spv_text_to_binary_options_t(1);
|
||||
}
|
||||
impl spv_text_to_binary_options_t {
|
||||
pub const SPV_TEXT_TO_BINARY_OPTION_PRESERVE_NUMERIC_IDS: spv_text_to_binary_options_t =
|
||||
spv_text_to_binary_options_t(2);
|
||||
}
|
||||
impl spv_text_to_binary_options_t {
|
||||
pub const _spv_text_to_binary_options_t: spv_text_to_binary_options_t =
|
||||
spv_text_to_binary_options_t(2147483647);
|
||||
}
|
||||
impl ::std::ops::BitOr<spv_text_to_binary_options_t> for spv_text_to_binary_options_t {
|
||||
type Output = Self;
|
||||
#[inline]
|
||||
fn bitor(self, other: Self) -> Self {
|
||||
spv_text_to_binary_options_t(self.0 | other.0)
|
||||
}
|
||||
}
|
||||
impl ::std::ops::BitOrAssign for spv_text_to_binary_options_t {
|
||||
#[inline]
|
||||
fn bitor_assign(&mut self, rhs: spv_text_to_binary_options_t) {
|
||||
self.0 |= rhs.0;
|
||||
}
|
||||
}
|
||||
impl ::std::ops::BitAnd<spv_text_to_binary_options_t> for spv_text_to_binary_options_t {
|
||||
type Output = Self;
|
||||
#[inline]
|
||||
fn bitand(self, other: Self) -> Self {
|
||||
spv_text_to_binary_options_t(self.0 & other.0)
|
||||
}
|
||||
}
|
||||
impl ::std::ops::BitAndAssign for spv_text_to_binary_options_t {
|
||||
#[inline]
|
||||
fn bitand_assign(&mut self, rhs: spv_text_to_binary_options_t) {
|
||||
self.0 &= rhs.0;
|
||||
}
|
||||
}
|
||||
#[repr(transparent)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub struct spv_text_to_binary_options_t(pub u32);
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const SPV_BINARY_TO_TEXT_OPTION_NONE: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(1);
|
||||
}
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const SPV_BINARY_TO_TEXT_OPTION_PRINT: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(2);
|
||||
}
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const SPV_BINARY_TO_TEXT_OPTION_COLOR: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(4);
|
||||
}
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const SPV_BINARY_TO_TEXT_OPTION_INDENT: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(8);
|
||||
}
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const SPV_BINARY_TO_TEXT_OPTION_SHOW_BYTE_OFFSET: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(16);
|
||||
}
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const SPV_BINARY_TO_TEXT_OPTION_NO_HEADER: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(32);
|
||||
}
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const SPV_BINARY_TO_TEXT_OPTION_FRIENDLY_NAMES: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(64);
|
||||
}
|
||||
impl spv_binary_to_text_options_t {
|
||||
pub const _spv_binary_to_text_options_t: spv_binary_to_text_options_t =
|
||||
spv_binary_to_text_options_t(2147483647);
|
||||
}
|
||||
impl ::std::ops::BitOr<spv_binary_to_text_options_t> for spv_binary_to_text_options_t {
|
||||
type Output = Self;
|
||||
#[inline]
|
||||
fn bitor(self, other: Self) -> Self {
|
||||
spv_binary_to_text_options_t(self.0 | other.0)
|
||||
}
|
||||
}
|
||||
impl ::std::ops::BitOrAssign for spv_binary_to_text_options_t {
|
||||
#[inline]
|
||||
fn bitor_assign(&mut self, rhs: spv_binary_to_text_options_t) {
|
||||
self.0 |= rhs.0;
|
||||
}
|
||||
}
|
||||
impl ::std::ops::BitAnd<spv_binary_to_text_options_t> for spv_binary_to_text_options_t {
|
||||
type Output = Self;
|
||||
#[inline]
|
||||
fn bitand(self, other: Self) -> Self {
|
||||
spv_binary_to_text_options_t(self.0 & other.0)
|
||||
}
|
||||
}
|
||||
impl ::std::ops::BitAndAssign for spv_binary_to_text_options_t {
|
||||
#[inline]
|
||||
fn bitand_assign(&mut self, rhs: spv_binary_to_text_options_t) {
|
||||
self.0 &= rhs.0;
|
||||
}
|
||||
}
|
||||
#[repr(transparent)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub struct spv_binary_to_text_options_t(pub u32);
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_parsed_operand_t {
|
||||
pub offset: u16,
|
||||
pub num_words: u16,
|
||||
pub type_: spv_operand_type_t,
|
||||
pub number_kind: spv_number_kind_t,
|
||||
pub number_bit_width: u32,
|
||||
}
|
||||
#[test]
|
||||
fn bindgen_test_layout_spv_parsed_operand_t() {
|
||||
assert_eq!(
|
||||
::std::mem::size_of::<spv_parsed_operand_t>(),
|
||||
16usize,
|
||||
concat!("Size of: ", stringify!(spv_parsed_operand_t))
|
||||
);
|
||||
assert_eq!(
|
||||
::std::mem::align_of::<spv_parsed_operand_t>(),
|
||||
4usize,
|
||||
concat!("Alignment of ", stringify!(spv_parsed_operand_t))
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_parsed_operand_t>())).offset as *const _ as usize },
|
||||
0usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_operand_t),
|
||||
"::",
|
||||
stringify!(offset)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_parsed_operand_t>())).num_words as *const _ as usize },
|
||||
2usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_operand_t),
|
||||
"::",
|
||||
stringify!(num_words)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_parsed_operand_t>())).type_ as *const _ as usize },
|
||||
4usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_operand_t),
|
||||
"::",
|
||||
stringify!(type_)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_operand_t>())).number_kind as *const _ as usize
|
||||
},
|
||||
8usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_operand_t),
|
||||
"::",
|
||||
stringify!(number_kind)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_operand_t>())).number_bit_width as *const _ as usize
|
||||
},
|
||||
12usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_operand_t),
|
||||
"::",
|
||||
stringify!(number_bit_width)
|
||||
)
|
||||
);
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_parsed_instruction_t {
|
||||
pub words: *const u32,
|
||||
pub num_words: u16,
|
||||
pub opcode: u16,
|
||||
pub ext_inst_type: spv_ext_inst_type_t,
|
||||
pub type_id: u32,
|
||||
pub result_id: u32,
|
||||
pub operands: *const spv_parsed_operand_t,
|
||||
pub num_operands: u16,
|
||||
}
|
||||
#[test]
|
||||
fn bindgen_test_layout_spv_parsed_instruction_t() {
|
||||
assert_eq!(
|
||||
::std::mem::size_of::<spv_parsed_instruction_t>(),
|
||||
40usize,
|
||||
concat!("Size of: ", stringify!(spv_parsed_instruction_t))
|
||||
);
|
||||
assert_eq!(
|
||||
::std::mem::align_of::<spv_parsed_instruction_t>(),
|
||||
8usize,
|
||||
concat!("Alignment of ", stringify!(spv_parsed_instruction_t))
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_parsed_instruction_t>())).words as *const _ as usize },
|
||||
0usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(words)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_instruction_t>())).num_words as *const _ as usize
|
||||
},
|
||||
8usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(num_words)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_parsed_instruction_t>())).opcode as *const _ as usize },
|
||||
10usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(opcode)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_instruction_t>())).ext_inst_type as *const _ as usize
|
||||
},
|
||||
12usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(ext_inst_type)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_instruction_t>())).type_id as *const _ as usize
|
||||
},
|
||||
16usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(type_id)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_instruction_t>())).result_id as *const _ as usize
|
||||
},
|
||||
20usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(result_id)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_instruction_t>())).operands as *const _ as usize
|
||||
},
|
||||
24usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(operands)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe {
|
||||
&(*(::std::ptr::null::<spv_parsed_instruction_t>())).num_operands as *const _ as usize
|
||||
},
|
||||
32usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_parsed_instruction_t),
|
||||
"::",
|
||||
stringify!(num_operands)
|
||||
)
|
||||
);
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_const_binary_t {
|
||||
pub code: *const u32,
|
||||
pub wordCount: usize,
|
||||
}
|
||||
#[test]
|
||||
fn bindgen_test_layout_spv_const_binary_t() {
|
||||
assert_eq!(
|
||||
::std::mem::size_of::<spv_const_binary_t>(),
|
||||
16usize,
|
||||
concat!("Size of: ", stringify!(spv_const_binary_t))
|
||||
);
|
||||
assert_eq!(
|
||||
::std::mem::align_of::<spv_const_binary_t>(),
|
||||
8usize,
|
||||
concat!("Alignment of ", stringify!(spv_const_binary_t))
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_const_binary_t>())).code as *const _ as usize },
|
||||
0usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_const_binary_t),
|
||||
"::",
|
||||
stringify!(code)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_const_binary_t>())).wordCount as *const _ as usize },
|
||||
8usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_const_binary_t),
|
||||
"::",
|
||||
stringify!(wordCount)
|
||||
)
|
||||
);
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_binary_t {
|
||||
pub code: *mut u32,
|
||||
pub wordCount: usize,
|
||||
}
|
||||
#[test]
|
||||
fn bindgen_test_layout_spv_binary_t() {
|
||||
assert_eq!(
|
||||
::std::mem::size_of::<spv_binary_t>(),
|
||||
16usize,
|
||||
concat!("Size of: ", stringify!(spv_binary_t))
|
||||
);
|
||||
assert_eq!(
|
||||
::std::mem::align_of::<spv_binary_t>(),
|
||||
8usize,
|
||||
concat!("Alignment of ", stringify!(spv_binary_t))
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_binary_t>())).code as *const _ as usize },
|
||||
0usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_binary_t),
|
||||
"::",
|
||||
stringify!(code)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_binary_t>())).wordCount as *const _ as usize },
|
||||
8usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_binary_t),
|
||||
"::",
|
||||
stringify!(wordCount)
|
||||
)
|
||||
);
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_text_t {
|
||||
pub str_: *const ::std::os::raw::c_char,
|
||||
pub length: usize,
|
||||
}
|
||||
#[test]
|
||||
fn bindgen_test_layout_spv_text_t() {
|
||||
assert_eq!(
|
||||
::std::mem::size_of::<spv_text_t>(),
|
||||
16usize,
|
||||
concat!("Size of: ", stringify!(spv_text_t))
|
||||
);
|
||||
assert_eq!(
|
||||
::std::mem::align_of::<spv_text_t>(),
|
||||
8usize,
|
||||
concat!("Alignment of ", stringify!(spv_text_t))
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_text_t>())).str_ as *const _ as usize },
|
||||
0usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_text_t),
|
||||
"::",
|
||||
stringify!(str_)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_text_t>())).length as *const _ as usize },
|
||||
8usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_text_t),
|
||||
"::",
|
||||
stringify!(length)
|
||||
)
|
||||
);
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_position_t {
|
||||
pub line: usize,
|
||||
pub column: usize,
|
||||
pub index: usize,
|
||||
}
|
||||
#[test]
|
||||
fn bindgen_test_layout_spv_position_t() {
|
||||
assert_eq!(
|
||||
::std::mem::size_of::<spv_position_t>(),
|
||||
24usize,
|
||||
concat!("Size of: ", stringify!(spv_position_t))
|
||||
);
|
||||
assert_eq!(
|
||||
::std::mem::align_of::<spv_position_t>(),
|
||||
8usize,
|
||||
concat!("Alignment of ", stringify!(spv_position_t))
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_position_t>())).line as *const _ as usize },
|
||||
0usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_position_t),
|
||||
"::",
|
||||
stringify!(line)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_position_t>())).column as *const _ as usize },
|
||||
8usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_position_t),
|
||||
"::",
|
||||
stringify!(column)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_position_t>())).index as *const _ as usize },
|
||||
16usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_position_t),
|
||||
"::",
|
||||
stringify!(index)
|
||||
)
|
||||
);
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_diagnostic_t {
|
||||
pub position: spv_position_t,
|
||||
pub error: *mut ::std::os::raw::c_char,
|
||||
pub isTextSource: bool,
|
||||
}
|
||||
#[test]
|
||||
fn bindgen_test_layout_spv_diagnostic_t() {
|
||||
assert_eq!(
|
||||
::std::mem::size_of::<spv_diagnostic_t>(),
|
||||
40usize,
|
||||
concat!("Size of: ", stringify!(spv_diagnostic_t))
|
||||
);
|
||||
assert_eq!(
|
||||
::std::mem::align_of::<spv_diagnostic_t>(),
|
||||
8usize,
|
||||
concat!("Alignment of ", stringify!(spv_diagnostic_t))
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_diagnostic_t>())).position as *const _ as usize },
|
||||
0usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_diagnostic_t),
|
||||
"::",
|
||||
stringify!(position)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_diagnostic_t>())).error as *const _ as usize },
|
||||
24usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_diagnostic_t),
|
||||
"::",
|
||||
stringify!(error)
|
||||
)
|
||||
);
|
||||
assert_eq!(
|
||||
unsafe { &(*(::std::ptr::null::<spv_diagnostic_t>())).isTextSource as *const _ as usize },
|
||||
32usize,
|
||||
concat!(
|
||||
"Offset of field: ",
|
||||
stringify!(spv_diagnostic_t),
|
||||
"::",
|
||||
stringify!(isTextSource)
|
||||
)
|
||||
);
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_context_t {
|
||||
_unused: [u8; 0],
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_validator_options_t {
|
||||
_unused: [u8; 0],
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_optimizer_options_t {
|
||||
_unused: [u8; 0],
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_reducer_options_t {
|
||||
_unused: [u8; 0],
|
||||
}
|
||||
#[repr(C)]
|
||||
#[derive(Debug, Copy, Clone)]
|
||||
pub struct spv_fuzzer_options_t {
|
||||
_unused: [u8; 0],
|
||||
}
|
||||
pub type spv_const_binary = *mut spv_const_binary_t;
|
||||
pub type spv_binary = *mut spv_binary_t;
|
||||
pub type spv_text = *mut spv_text_t;
|
||||
pub type spv_position = *mut spv_position_t;
|
||||
pub type spv_diagnostic = *mut spv_diagnostic_t;
|
||||
pub type spv_const_context = *const spv_context_t;
|
||||
pub type spv_context = *mut spv_context_t;
|
||||
pub type spv_validator_options = *mut spv_validator_options_t;
|
||||
pub type spv_const_validator_options = *const spv_validator_options_t;
|
||||
pub type spv_optimizer_options = *mut spv_optimizer_options_t;
|
||||
pub type spv_const_optimizer_options = *const spv_optimizer_options_t;
|
||||
pub type spv_reducer_options = *mut spv_reducer_options_t;
|
||||
pub type spv_const_reducer_options = *const spv_reducer_options_t;
|
||||
pub type spv_fuzzer_options = *mut spv_fuzzer_options_t;
|
||||
pub type spv_const_fuzzer_options = *const spv_fuzzer_options_t;
|
||||
extern "C" {
|
||||
pub fn spvSoftwareVersionString() -> *const ::std::os::raw::c_char;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvSoftwareVersionDetailsString() -> *const ::std::os::raw::c_char;
|
||||
}
|
||||
#[repr(u32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_target_env {
|
||||
SPV_ENV_UNIVERSAL_1_0 = 0,
|
||||
SPV_ENV_VULKAN_1_0 = 1,
|
||||
SPV_ENV_UNIVERSAL_1_1 = 2,
|
||||
SPV_ENV_OPENCL_2_1 = 3,
|
||||
SPV_ENV_OPENCL_2_2 = 4,
|
||||
SPV_ENV_OPENGL_4_0 = 5,
|
||||
SPV_ENV_OPENGL_4_1 = 6,
|
||||
SPV_ENV_OPENGL_4_2 = 7,
|
||||
SPV_ENV_OPENGL_4_3 = 8,
|
||||
SPV_ENV_OPENGL_4_5 = 9,
|
||||
SPV_ENV_UNIVERSAL_1_2 = 10,
|
||||
SPV_ENV_OPENCL_1_2 = 11,
|
||||
SPV_ENV_OPENCL_EMBEDDED_1_2 = 12,
|
||||
SPV_ENV_OPENCL_2_0 = 13,
|
||||
SPV_ENV_OPENCL_EMBEDDED_2_0 = 14,
|
||||
SPV_ENV_OPENCL_EMBEDDED_2_1 = 15,
|
||||
SPV_ENV_OPENCL_EMBEDDED_2_2 = 16,
|
||||
SPV_ENV_UNIVERSAL_1_3 = 17,
|
||||
SPV_ENV_VULKAN_1_1 = 18,
|
||||
SPV_ENV_WEBGPU_0 = 19,
|
||||
SPV_ENV_UNIVERSAL_1_4 = 20,
|
||||
SPV_ENV_VULKAN_1_1_SPIRV_1_4 = 21,
|
||||
SPV_ENV_UNIVERSAL_1_5 = 22,
|
||||
SPV_ENV_VULKAN_1_2 = 23,
|
||||
}
|
||||
#[repr(u32)]
|
||||
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
||||
pub enum spv_validator_limit {
|
||||
spv_validator_limit_max_struct_members = 0,
|
||||
spv_validator_limit_max_struct_depth = 1,
|
||||
spv_validator_limit_max_local_variables = 2,
|
||||
spv_validator_limit_max_global_variables = 3,
|
||||
spv_validator_limit_max_switch_branches = 4,
|
||||
spv_validator_limit_max_function_args = 5,
|
||||
spv_validator_limit_max_control_flow_nesting_depth = 6,
|
||||
spv_validator_limit_max_access_chain_indexes = 7,
|
||||
spv_validator_limit_max_id_bound = 8,
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvTargetEnvDescription(env: spv_target_env) -> *const ::std::os::raw::c_char;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvParseTargetEnv(s: *const ::std::os::raw::c_char, env: *mut spv_target_env) -> bool;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvParseVulkanEnv(vulkan_ver: u32, spirv_ver: u32, env: *mut spv_target_env) -> bool;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvContextCreate(env: spv_target_env) -> spv_context;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvContextDestroy(context: spv_context);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsCreate() -> spv_validator_options;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsDestroy(options: spv_validator_options);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetUniversalLimit(
|
||||
options: spv_validator_options,
|
||||
limit_type: spv_validator_limit,
|
||||
limit: u32,
|
||||
);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetRelaxStoreStruct(options: spv_validator_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetRelaxLogicalPointer(options: spv_validator_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetBeforeHlslLegalization(options: spv_validator_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetRelaxBlockLayout(options: spv_validator_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetUniformBufferStandardLayout(
|
||||
options: spv_validator_options,
|
||||
val: bool,
|
||||
);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetScalarBlockLayout(options: spv_validator_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidatorOptionsSetSkipBlockLayout(options: spv_validator_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOptimizerOptionsCreate() -> spv_optimizer_options;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOptimizerOptionsDestroy(options: spv_optimizer_options);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOptimizerOptionsSetRunValidator(options: spv_optimizer_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOptimizerOptionsSetValidatorOptions(
|
||||
options: spv_optimizer_options,
|
||||
val: spv_validator_options,
|
||||
);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOptimizerOptionsSetMaxIdBound(options: spv_optimizer_options, val: u32);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOptimizerOptionsSetPreserveBindings(options: spv_optimizer_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOptimizerOptionsSetPreserveSpecConstants(options: spv_optimizer_options, val: bool);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvReducerOptionsCreate() -> spv_reducer_options;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvReducerOptionsDestroy(options: spv_reducer_options);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvReducerOptionsSetStepLimit(options: spv_reducer_options, step_limit: u32);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvReducerOptionsSetFailOnValidationError(
|
||||
options: spv_reducer_options,
|
||||
fail_on_validation_error: bool,
|
||||
);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvFuzzerOptionsCreate() -> spv_fuzzer_options;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvFuzzerOptionsDestroy(options: spv_fuzzer_options);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvFuzzerOptionsEnableReplayValidation(options: spv_fuzzer_options);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvFuzzerOptionsSetRandomSeed(options: spv_fuzzer_options, seed: u32);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvFuzzerOptionsSetShrinkerStepLimit(
|
||||
options: spv_fuzzer_options,
|
||||
shrinker_step_limit: u32,
|
||||
);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvFuzzerOptionsEnableFuzzerPassValidation(options: spv_fuzzer_options);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvTextToBinary(
|
||||
context: spv_const_context,
|
||||
text: *const ::std::os::raw::c_char,
|
||||
length: usize,
|
||||
binary: *mut spv_binary,
|
||||
diagnostic: *mut spv_diagnostic,
|
||||
) -> spv_result_t;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvTextToBinaryWithOptions(
|
||||
context: spv_const_context,
|
||||
text: *const ::std::os::raw::c_char,
|
||||
length: usize,
|
||||
options: u32,
|
||||
binary: *mut spv_binary,
|
||||
diagnostic: *mut spv_diagnostic,
|
||||
) -> spv_result_t;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvTextDestroy(text: spv_text);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvBinaryToText(
|
||||
context: spv_const_context,
|
||||
binary: *const u32,
|
||||
word_count: usize,
|
||||
options: u32,
|
||||
text: *mut spv_text,
|
||||
diagnostic: *mut spv_diagnostic,
|
||||
) -> spv_result_t;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvBinaryDestroy(binary: spv_binary);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidate(
|
||||
context: spv_const_context,
|
||||
binary: spv_const_binary,
|
||||
diagnostic: *mut spv_diagnostic,
|
||||
) -> spv_result_t;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidateWithOptions(
|
||||
context: spv_const_context,
|
||||
options: spv_const_validator_options,
|
||||
binary: spv_const_binary,
|
||||
diagnostic: *mut spv_diagnostic,
|
||||
) -> spv_result_t;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvValidateBinary(
|
||||
context: spv_const_context,
|
||||
words: *const u32,
|
||||
num_words: usize,
|
||||
diagnostic: *mut spv_diagnostic,
|
||||
) -> spv_result_t;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvDiagnosticCreate(
|
||||
position: spv_position,
|
||||
message: *const ::std::os::raw::c_char,
|
||||
) -> spv_diagnostic;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvDiagnosticDestroy(diagnostic: spv_diagnostic);
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvDiagnosticPrint(diagnostic: spv_diagnostic) -> spv_result_t;
|
||||
}
|
||||
extern "C" {
|
||||
pub fn spvOpcodeString(opcode: u32) -> *const ::std::os::raw::c_char;
|
||||
}
|
||||
pub type spv_parsed_header_fn_t = ::std::option::Option<
|
||||
unsafe extern "C" fn(
|
||||
user_data: *mut ::std::os::raw::c_void,
|
||||
endian: spv_endianness_t,
|
||||
magic: u32,
|
||||
version: u32,
|
||||
generator: u32,
|
||||
id_bound: u32,
|
||||
reserved: u32,
|
||||
) -> spv_result_t,
|
||||
>;
|
||||
pub type spv_parsed_instruction_fn_t = ::std::option::Option<
|
||||
unsafe extern "C" fn(
|
||||
user_data: *mut ::std::os::raw::c_void,
|
||||
parsed_instruction: *const spv_parsed_instruction_t,
|
||||
) -> spv_result_t,
|
||||
>;
|
||||
extern "C" {
|
||||
pub fn spvBinaryParse(
|
||||
context: spv_const_context,
|
||||
user_data: *mut ::std::os::raw::c_void,
|
||||
words: *const u32,
|
||||
num_words: usize,
|
||||
parse_header: spv_parsed_header_fn_t,
|
||||
parse_instruction: spv_parsed_instruction_fn_t,
|
||||
diagnostic: *mut spv_diagnostic,
|
||||
) -> spv_result_t;
|
||||
}
|
Reference in New Issue
Block a user