Enum cretonne_codegen::ir::ArgumentLoc [] [src]

pub enum ArgumentLoc {
    Unassigned,
    Reg(RegUnit),
    Stack(i32),
}

Function argument location.

The ABI specifies how arguments are passed to a function, and where return values appear after the call. Just like a ValueLoc, function arguments can be passed in registers or on the stack.

Function arguments on the stack are accessed differently for the incoming arguments to the current function and the outgoing arguments to a called external function. For this reason, the location of stack arguments is described as an offset into the array of function arguments on the stack.

An ArgumentLoc can be translated to a ValueLoc only when we know if we're talking about an incoming argument or an outgoing argument.

  • For stack arguments, different StackSlot entities are used to represent incoming and outgoing arguments.
  • For register arguments, there is usually no difference, but if we ever add support for a register-window ISA like SPARC, register arguments would also need to be translated.

Variants

This argument has not been assigned to a location yet.

Argument is passed in a register.

Argument is passed on the stack, at the given byte offset into the argument array.

Methods

impl ArgumentLoc
[src]

[src]

Is this an assigned location? (That is, not Unassigned).

[src]

Is this a register location?

[src]

Is this a stack location?

[src]

Return an object that can display this argument location, using the register info from the target ISA.

Trait Implementations

impl Copy for ArgumentLoc
[src]

impl Clone for ArgumentLoc
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ArgumentLoc
[src]

[src]

Formats the value using the given formatter. Read more

impl Eq for ArgumentLoc
[src]

impl PartialEq for ArgumentLoc
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Hash for ArgumentLoc
[src]

[src]

Feeds this value into the given [Hasher]. Read more

1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Default for ArgumentLoc
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations

impl Send for ArgumentLoc

impl Sync for ArgumentLoc