mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
Restore getInvertedCondCode() from the phased-out backend, fixing disassembly for NV
llvm-svn: 209803
This commit is contained in:
parent
ec5776d81a
commit
f8a8cd09c7
@ -233,23 +233,9 @@ inline static const char *getCondCodeName(CondCode Code) {
|
||||
}
|
||||
|
||||
inline static CondCode getInvertedCondCode(CondCode Code) {
|
||||
switch (Code) {
|
||||
default: llvm_unreachable("Unknown condition code");
|
||||
case EQ: return NE;
|
||||
case NE: return EQ;
|
||||
case HS: return LO;
|
||||
case LO: return HS;
|
||||
case MI: return PL;
|
||||
case PL: return MI;
|
||||
case VS: return VC;
|
||||
case VC: return VS;
|
||||
case HI: return LS;
|
||||
case LS: return HI;
|
||||
case GE: return LT;
|
||||
case LT: return GE;
|
||||
case GT: return LE;
|
||||
case LE: return GT;
|
||||
}
|
||||
// To reverse a condition it's necessary to only invert the low bit:
|
||||
|
||||
return static_cast<CondCode>(static_cast<unsigned>(Code) ^ 0x1);
|
||||
}
|
||||
|
||||
/// Given a condition code, return NZCV flags that would satisfy that condition.
|
||||
|
@ -969,12 +969,14 @@
|
||||
# CHECK: cinv x3, x5, gt
|
||||
# CHECK: cinv xzr, x4, le
|
||||
# CHECK: csetm x9, lt
|
||||
# CHECK: cinv x0, x0, nv
|
||||
0xa3 0xd0 0x85 0x5a
|
||||
0x9f 0xc0 0x84 0x5a
|
||||
0xe9 0xa3 0x9f 0x5a
|
||||
0xa3 0xd0 0x85 0xda
|
||||
0x9f 0xc0 0x84 0xda
|
||||
0xe9 0xa3 0x9f 0xda
|
||||
0x00 0xe0 0x80 0xda
|
||||
|
||||
# CHECK: cneg w3, w5, gt
|
||||
# CHECK: cneg wzr, w4, le
|
||||
|
Loading…
Reference in New Issue
Block a user