Add simple Uimm8 and ImmVector immediate types.

Implement the boxed storage of the UnaryImmVector instruction format.
This commit is contained in:
Jakob Stoklund Olesen
2016-10-12 15:24:59 -07:00
parent 7cf25a073b
commit b8a537bb13
4 changed files with 34 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ Unary = InstructionFormat(value)
UnaryImm = InstructionFormat(imm64)
UnaryIeee32 = InstructionFormat(ieee32)
UnaryIeee64 = InstructionFormat(ieee64)
UnaryImmVector = InstructionFormat(immvector)
UnaryImmVector = InstructionFormat(immvector, boxed_storage=True)
UnarySplit = InstructionFormat(value, multiple_results=True)
Binary = InstructionFormat(value, value)