arch-riscv: Make vset*vl* instructions serialize
Current implementation of vset*vl* instructions serialize pipeline and are non-speculative. Change-Id: Ibf93b60133fb3340690b126db12827e36e2c202d
This commit is contained in:
@@ -4344,7 +4344,7 @@ decode QUADRANT default Unknown::unknown() {
|
||||
uint64_t requested_vtype = zimm11;
|
||||
|
||||
Rd_ud = 0;
|
||||
}}, VectorConfigOp, IsDirectControl, IsCondControl);
|
||||
}}, VectorConfigOp, IsSerializeAfter, IsNonSpeculative);
|
||||
0x1: decode BIT30 {
|
||||
0x0: vsetvl({{
|
||||
uint64_t rd_bits = RD;
|
||||
@@ -4353,7 +4353,8 @@ decode QUADRANT default Unknown::unknown() {
|
||||
uint64_t requested_vtype = Rs2_ud;
|
||||
|
||||
Rd_ud = 0;
|
||||
}}, VectorConfigOp, IsDirectControl, IsCondControl);
|
||||
}}, VectorConfigOp, IsSerializeAfter,
|
||||
IsNonSpeculative);
|
||||
0x1: vsetivli({{
|
||||
uint64_t rd_bits = RD;
|
||||
uint64_t rs1_bits = -1;
|
||||
@@ -4361,7 +4362,8 @@ decode QUADRANT default Unknown::unknown() {
|
||||
uint64_t requested_vtype = zimm10;
|
||||
|
||||
Rd_ud = 0;
|
||||
}}, VectorConfigOp, IsDirectControl, IsCondControl);
|
||||
}}, VectorConfigOp, IsSerializeAfter,
|
||||
IsNonSpeculative);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user