Class: AArch64::Instructions::PRFUM
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::PRFUM
- Defined in:
- lib/aarch64/instructions/prfum.rb
Overview
PRFUM – A64 Prefetch Memory (unscaled offset) PRFUM (<prfop>|#<imm5>), [<Xn|SP>#<simm>]
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(rt, rn, imm9) ⇒ PRFUM
constructor
A new instance of PRFUM.
Constructor Details
#initialize(rt, rn, imm9) ⇒ PRFUM
Returns a new instance of PRFUM.
7 8 9 10 11 |
# File 'lib/aarch64/instructions/prfum.rb', line 7 def initialize rt, rn, imm9 @rt = check_mask(rt, 0x1f) @rn = check_mask(rn, 0x1f) @imm9 = check_mask(imm9, 0x1ff) end |
Instance Method Details
#encode(_) ⇒ Object
13 14 15 |
# File 'lib/aarch64/instructions/prfum.rb', line 13 def encode _ PRFUM(@imm9, @rn, @rt) end |