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