aboutsummaryrefslogtreecommitdiffstats
path: root/powerpc/Asm.v
diff options
context:
space:
mode:
authorBernhard Schommer <bernhardschommer@gmail.com>2015-08-14 16:30:02 +0200
committerBernhard Schommer <bernhardschommer@gmail.com>2015-08-14 16:30:02 +0200
commitc6e03d61ee776aacc859fd162e47cb7ba0fb3079 (patch)
tree9af1c4a23dfed7ab97fda219081666956a0a7e07 /powerpc/Asm.v
parent4eb7fcaf6a5e366c71d95d2152dcc1f3982c404b (diff)
downloadcompcert-kvx-c6e03d61ee776aacc859fd162e47cb7ba0fb3079.tar.gz
compcert-kvx-c6e03d61ee776aacc859fd162e47cb7ba0fb3079.zip
Added builitin for the icbi instruction.
Diffstat (limited to 'powerpc/Asm.v')
-rw-r--r--powerpc/Asm.v2
1 files changed, 2 insertions, 0 deletions
diff --git a/powerpc/Asm.v b/powerpc/Asm.v
index cd4c8d00..4eedfba4 100644
--- a/powerpc/Asm.v
+++ b/powerpc/Asm.v
@@ -201,6 +201,7 @@ Inductive instruction : Type :=
| Pfres: freg -> freg -> instruction (**r approximate inverse *)
| Pfsel: freg -> freg -> freg -> freg -> instruction (**r FP conditional move *)
| Pisync: instruction (**r ISYNC barrier *)
+ | Picbi: ireg -> ireg -> instruction (**r instruction cache invalidate *)
| Plbz: ireg -> constant -> ireg -> instruction (**r load 8-bit unsigned int *)
| Plbzx: ireg -> ireg -> ireg -> instruction (**r same, with 2 index regs *)
| Plfd: freg -> constant -> ireg -> instruction (**r load 64-bit float *)
@@ -870,6 +871,7 @@ Definition exec_instr (f: function) (i: instruction) (rs: regset) (m: mem) : out
| Pfsel _ _ _ _
| Plwarx _ _ _
| Plwbrx _ _ _
+ | Picbi _ _
| Pisync
| Plwsync
| Plhbrx _ _ _