Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:CC

2350   AArch64CC::CondCode CC = StringSwitch<AArch64CC::CondCode>(Cond.lower())
2355 .Case("cc", AArch64CC::LO)
2370 return CC;
2382 AArch64CC::CondCode CC = parseCondCodeString(Cond);
2383 if (CC == AArch64CC::Invalid)
2388 if (CC == AArch64CC::AL || CC == AArch64CC::NV)
2390 CC = AArch64CC::getInvertedCondCode(AArch64CC::CondCode(CC));
2394 AArch64Operand::CreateCondCode(CC, S, getLoc(), getContext()));
3327 .Case("bcc", "b.cc")
3375 AArch64CC::CondCode CC = parseCondCodeString(Head);
3376 if (CC == AArch64CC::Invalid)
3381 AArch64Operand::CreateCondCode(CC, NameLoc, NameLoc, getContext()));