pub struct BoundsCheckPolicies {
    pub index: BoundsCheckPolicy,
    pub buffer: BoundsCheckPolicy,
    pub image_load: BoundsCheckPolicy,
    pub image_store: BoundsCheckPolicy,
    pub binding_array: BoundsCheckPolicy,
}
Available on wgpu_core or naga only.
Expand description

Policies for injecting bounds checks during code generation.

Fields§

§index: BoundsCheckPolicy

How should the generated code handle array, vector, or matrix indices that are out of range?

§buffer: BoundsCheckPolicy

How should the generated code handle array, vector, or matrix indices that are out of range, when those values live in a GlobalVariable in the Storage or Uniform address spaces?

Some graphics hardware provides “robust buffer access”, a feature that ensures that using a pointer cannot access memory outside the ‘buffer’ that it was derived from. In Naga terms, this means that the hardware ensures that pointers computed by applying Access and AccessIndex expressions to a GlobalVariable whose space is Storage or Uniform will never read or write memory outside that global variable.

When hardware offers such a feature, it is probably undesirable to have Naga inject bounds checking code for such accesses, since the hardware can probably provide the same protection more efficiently. However, bounds checks are still needed on accesses to indexable values that do not live in buffers, like local variables.

So, this option provides a separate policy that applies only to accesses to storage and uniform globals. When depending on hardware bounds checking, this policy can be Unchecked to avoid unnecessary overhead.

When special hardware support is not available, this should probably be the same as index_bounds_check_policy.

§image_load: BoundsCheckPolicy

How should the generated code handle image texel loads that are out of range?

This controls the behavior of ImageLoad expressions when a coordinate, texture array index, level of detail, or multisampled sample number is out of range.

§image_store: BoundsCheckPolicy

How should the generated code handle image texel stores that are out of range?

This controls the behavior of ImageStore statements when a coordinate, texture array index, level of detail, or multisampled sample number is out of range.

This policy should’t be needed since all backends should ignore OOB writes.

§binding_array: BoundsCheckPolicy

How should the generated code handle binding array indexes that are out of bounds.

Implementations§

source§

impl BoundsCheckPolicies

source

pub fn choose_policy( &self, base: Handle<Expression>, types: &UniqueArena<Type>, info: &FunctionInfo ) -> BoundsCheckPolicy

Available on wgpu_core only.

Determine which policy applies to base.

base is the “base” expression (the expression being indexed) of a Access and AccessIndex expression. This is either a pointer, a value, being directly indexed, or a binding array.

See the documentation for BoundsCheckPolicy for details about when each policy applies.

source

pub fn contains(&self, policy: BoundsCheckPolicy) -> bool

Available on wgpu_core only.

Return true if any of self’s policies are policy.

Trait Implementations§

source§

impl Clone for BoundsCheckPolicies

source§

fn clone(&self) -> BoundsCheckPolicies

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for BoundsCheckPolicies

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl Default for BoundsCheckPolicies

source§

fn default() -> BoundsCheckPolicies

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for BoundsCheckPolicies

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<BoundsCheckPolicies, <__D as Deserializer<'de>>::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Hash for BoundsCheckPolicies

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for BoundsCheckPolicies

source§

fn eq(&self, other: &BoundsCheckPolicies) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Serialize for BoundsCheckPolicies

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Copy for BoundsCheckPolicies

source§

impl Eq for BoundsCheckPolicies

source§

impl StructuralEq for BoundsCheckPolicies

source§

impl StructuralPartialEq for BoundsCheckPolicies

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<T> WasmNotSend for T
where T: Send,

source§

impl<T> WasmNotSendSync for T

source§

impl<T> WasmNotSync for T
where T: Sync,