summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorShaked Flur2018-02-08 12:06:00 +0000
committerShaked Flur2018-02-08 12:06:00 +0000
commit043ea8ec3faecadf34ef9010bdd539f595f9c6da (patch)
treeeb44af3b9dec8e1a222872f56d4e32781596fa9e /etc
parent151d86b911c9a266465638ee3514156dfb178e92 (diff)
replaced NIA_LR/CTR/register with NIA_indirect;
removed IK_cond_branch, and added IK_branch
Diffstat (limited to 'etc')
-rw-r--r--etc/regfp.sail6
1 files changed, 2 insertions, 4 deletions
diff --git a/etc/regfp.sail b/etc/regfp.sail
index cc057f2e..9a6172a9 100644
--- a/etc/regfp.sail
+++ b/etc/regfp.sail
@@ -16,9 +16,7 @@ typedef regfps = list <regfp>
typedef niafp = const union {
NIAFP_successor;
(bit[64]) NIAFP_concrete_address;
- NIAFP_LR;
- NIAFP_CTR;
- (regfp) NIAFP_register;
+ NIAFP_indirect_address;
}
typedef niafps = list <niafp>
@@ -90,7 +88,7 @@ typedef instruction_kind = const union {
(read_kind) IK_mem_read;
(write_kind) IK_mem_write;
(read_kind, write_kind) IK_mem_rmw;
- IK_cond_branch;
+ IK_branch;
(trans_kind) IK_trans;
IK_simple
}