Struct gccjit::RValue

source ·
pub struct RValue<'ctx> { /* private fields */ }
Expand description

An RValue is a value that may or may not have a storage address in gccjit. RValues can be dereferenced, used for field accesses, and are the parameters given to a majority of the gccjit API calls.

Implementations§

source§

impl<'ctx> RValue<'ctx>

source

pub fn get_type(&self) -> Type<'ctx>

Gets the type of this RValue.

source

pub fn access_field( &self, loc: Option<Location<'ctx>>, field: Field<'ctx> ) -> RValue<'ctx>

Given an RValue x and a Field f, returns an RValue representing C’s x.f.

source

pub fn dereference_field( &self, loc: Option<Location<'ctx>>, field: Field<'ctx> ) -> LValue<'ctx>

Given an RValue x and a Field f, returns an LValue representing C’s x->f.

source

pub fn dereference(&self, loc: Option<Location<'ctx>>) -> LValue<'ctx>

Given a RValue x, returns an RValue that represents *x.

Trait Implementations§

source§

impl<'ctx> Add for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the + operator.
source§

fn add(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the + operation. Read more
source§

impl<'ctx> BitAnd for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the & operator.
source§

fn bitand(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the & operation. Read more
source§

impl<'ctx> BitOr for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the | operator.
source§

fn bitor(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the | operation. Read more
source§

impl<'ctx> BitXor for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the ^ operation. Read more
source§

impl<'ctx> Clone for RValue<'ctx>

source§

fn clone(&self) -> RValue<'ctx>

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<'ctx> Debug for RValue<'ctx>

source§

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

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

impl<'ctx> Div for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the / operator.
source§

fn div(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the / operation. Read more
source§

impl<'ctx> Hash for RValue<'ctx>

source§

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

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<'ctx> Mul for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the * operator.
source§

fn mul(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the * operation. Read more
source§

impl<'ctx> PartialEq for RValue<'ctx>

source§

fn eq(&self, other: &RValue<'ctx>) -> 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<'ctx> Rem for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the % operator.
source§

fn rem(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the % operation. Read more
source§

impl<'ctx> Shl for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the << operator.
source§

fn shl(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the << operation. Read more
source§

impl<'ctx> Shr for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the >> operator.
source§

fn shr(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the >> operation. Read more
source§

impl<'ctx> Sub for RValue<'ctx>

§

type Output = RValue<'ctx>

The resulting type after applying the - operator.
source§

fn sub(self, rhs: RValue<'ctx>) -> RValue<'ctx>

Performs the - operation. Read more
source§

impl<'ctx> ToObject<'ctx> for RValue<'ctx>

source§

fn to_object(&self) -> Object<'ctx>

source§

impl<'ctx> ToRValue<'ctx> for RValue<'ctx>

source§

fn to_rvalue(&self) -> RValue<'ctx>

source§

impl<'ctx> Copy for RValue<'ctx>

source§

impl<'ctx> Eq for RValue<'ctx>

source§

impl<'ctx> StructuralPartialEq for RValue<'ctx>

Auto Trait Implementations§

§

impl<'ctx> RefUnwindSafe for RValue<'ctx>

§

impl<'ctx> !Send for RValue<'ctx>

§

impl<'ctx> !Sync for RValue<'ctx>

§

impl<'ctx> Unpin for RValue<'ctx>

§

impl<'ctx> UnwindSafe for RValue<'ctx>

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
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.