diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-12-26 13:10:44 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-12-26 13:10:44 +0900 |
commit | 691ce361a6ccafd1ecb4bfa2a7bee9982c8dad22 (patch) | |
tree | 0132ba9b379bcad43a3530b05735ae1dc8af8fe1 /doc | |
parent | 8d0e78146ebdf70c49820322bbc5224eeddf0433 (diff) | |
download | xbyak-691ce361a6ccafd1ecb4bfa2a7bee9982c8dad22.tar.gz xbyak-691ce361a6ccafd1ecb4bfa2a7bee9982c8dad22.zip |
[doc] update dfv
Diffstat (limited to 'doc')
-rw-r--r-- | doc/usage.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/usage.md b/doc/usage.md index 1c9089b..0911b91 100644 --- a/doc/usage.md +++ b/doc/usage.md @@ -149,11 +149,11 @@ vpdpbusd(xm0, xm1, xm2); // VEX encoding ### ccmpSCC and ctestSCC -- ccmpSCC(op1, op2, dfv); // eflags = eflags == SCC ? cmp(op1, op2) : dfv -- ctestSCC(op1, op2, dfv); // eflags = eflags == SCC ? test(op1, op2) : dfv +- ccmpSCC(op1, op2, dfv = 0); // eflags = eflags == SCC ? cmp(op1, op2) : dfv +- ctestSCC(op1, op2, dfv = 0); // eflags = eflags == SCC ? test(op1, op2) : dfv - SCC means source condition code such as z, a, gt. - See [sample/ccmp.cpp](../sample/ccmp.cpp) -- Specify the union of T_of, T_sf, T_zf, or T_cf for dfv. +- Specify the union of T_of(=8), T_sf(=4), T_zf(=2), or T_cf(=1) for dfv. ## Label |