mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-17 04:24:37 +03:00
[Bug] Fixed VPTERNLOG[D|Q] RW info when the predicate doesn't influence DST
This commit is contained in:
@@ -2236,7 +2236,17 @@ class InstRWInfoTable extends core.Task {
|
||||
}
|
||||
}
|
||||
}
|
||||
return { category: "Generic", rwOps };
|
||||
|
||||
const name = dbInsts.length ? dbInsts[0].name : "";
|
||||
|
||||
switch (name) {
|
||||
case "vpternlogd":
|
||||
case "vpternlogq":
|
||||
return { category: "GenericEx", rwOps };
|
||||
|
||||
default:
|
||||
return { category: "Generic", rwOps };
|
||||
}
|
||||
}
|
||||
|
||||
function queryRwByData(dbInsts, rwOpsArray) {
|
||||
|
||||
Reference in New Issue
Block a user