Class: AArch64::Instructions::AND::LOG_shift

Inherits:
Instruction
  • Object
show all
Defined in:
lib/aarch64/instructions/and/log_shift.rb

Overview

AND (shifted register) – A64 Bitwise AND (shifted register) AND <Wd>, <Wn>, <Wm><shift> #<amount> AND <Xd>, <Xn>, <Xm><shift> #<amount>

Instance Method Summary collapse

Constructor Details

#initialize(xd, xn, xm, shift, amount, sf) ⇒ LOG_shift

Returns a new instance of LOG_shift.



9
10
11
12
13
14
15
16
# File 'lib/aarch64/instructions/and/log_shift.rb', line 9

def initialize xd, xn, xm, shift, amount, sf
  @xd     = check_mask(xd, 0x1f)
  @xn     = check_mask(xn, 0x1f)
  @xm     = check_mask(xm, 0x1f)
  @shift  = check_mask(shift, 0x03)
  @amount = check_mask(amount, 0x3f)
  @sf     = check_mask(sf, 0x01)
end

Instance Method Details

#encode(_) ⇒ Object



18
19
20
# File 'lib/aarch64/instructions/and/log_shift.rb', line 18

def encode _
  AND_log_shift(@sf, @shift, @xm, @amount, @xn, @xd)
end