diff options
author | Greg Brown <greg.brown@cl.cam.ac.uk> | 2022-01-07 10:07:18 +0000 |
---|---|---|
committer | Greg Brown <greg.brown@cl.cam.ac.uk> | 2022-01-07 10:07:18 +0000 |
commit | d84082ef65e311626e73af8e860723dd9d1e6b4f (patch) | |
tree | 25bc1c99328e00d9af1cadd729f50065bcbf9d92 /src/Helium/Instructions.agda | |
parent | 4beda024000a0d0fd5437a07be8e0fb2723d6b1f (diff) |
Introduce semantics for sequences of instructions.
Diffstat (limited to 'src/Helium/Instructions.agda')
-rw-r--r-- | src/Helium/Instructions.agda | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Helium/Instructions.agda b/src/Helium/Instructions.agda index 4bd02ac..41bc74d 100644 --- a/src/Helium/Instructions.agda +++ b/src/Helium/Instructions.agda @@ -88,3 +88,10 @@ record VQDMulH : Set where rounding : Bool open VecOp₂ op₂ public + +data Instruction : Set where + vadd : VAdd → Instruction + vsub : VSub → Instruction + vmul : VMul → Instruction + vmulh : VMulH → Instruction + vqdmulh : VQDMulH → Instruction |