Class: AArch64::Instructions::STZ2G
- Inherits:
-
Instruction
- Object
- Instruction
- AArch64::Instructions::STZ2G
- Defined in:
- lib/aarch64/instructions/stz2g.rb
Overview
STZ2G – A64 Store Allocation Tags, Zeroing STZ2G <Xt|SP>, [<Xn|SP>], #<simm> STZ2G <Xt|SP>, [<Xn|SP>, #<simm>]! STZ2G <Xt|SP>, [<Xn|SP>#<simm>]
Instance Method Summary collapse
- #encode(_) ⇒ Object
-
#initialize(xt, xn, imm9, opt) ⇒ STZ2G
constructor
A new instance of STZ2G.
Constructor Details
#initialize(xt, xn, imm9, opt) ⇒ STZ2G
Returns a new instance of STZ2G.
9 10 11 12 13 14 |
# File 'lib/aarch64/instructions/stz2g.rb', line 9 def initialize xt, xn, imm9, opt @xt = check_mask(xt, 0x1f) @xn = check_mask(xn, 0x1f) @imm9 = check_mask(imm9, 0x1ff) @opt = check_mask(opt, 0x03) end |
Instance Method Details
#encode(_) ⇒ Object
16 17 18 |
# File 'lib/aarch64/instructions/stz2g.rb', line 16 def encode _ STZ2G(@imm9, @opt, @xn, @xt) end |