Class: AArch64::Instructions::LDUMIN

Inherits:
Instruction show all
Defined in:
lib/aarch64/instructions/ldumin.rb

Overview

LDUMIN, LDUMINA, LDUMINAL, LDUMINL – A64 Atomic unsigned minimum on word or doubleword in memory LDUMIN <Ws>, <Wt>, [<Xn|SP>] LDUMINA <Ws>, <Wt>, [<Xn|SP>] LDUMINAL <Ws>, <Wt>, [<Xn|SP>] LDUMINL <Ws>, <Wt>, [<Xn|SP>] LDUMIN <Xs>, <Xt>, [<Xn|SP>] LDUMINA <Xs>, <Xt>, [<Xn|SP>] LDUMINAL <Xs>, <Xt>, [<Xn|SP>] LDUMINL <Xs>, <Xt>, [<Xn|SP>]

Instance Method Summary collapse

Constructor Details

#initialize(rs, rt, rn, size, a, r) ⇒ LDUMIN

Returns a new instance of LDUMIN.



14
15
16
17
18
19
20
21
# File 'lib/aarch64/instructions/ldumin.rb', line 14

def initialize rs, rt, rn, size, a, r
  @rs   = check_mask(rs, 0x1f)
  @rt   = check_mask(rt, 0x1f)
  @rn   = check_mask(rn, 0x1f)
  @size = check_mask(size, 0x03)
  @a    = check_mask(a, 0x01)
  @r    = check_mask(r, 0x01)
end

Instance Method Details

#encode(_) ⇒ Object



23
24
25
# File 'lib/aarch64/instructions/ldumin.rb', line 23

def encode _
  LDUMIN(@size, @a, @r, @rs, @rn, @rt)
end