Lines Matching defs:CC
6635 static Value *EmitX86MaskedCompare(CodeGenFunction &CGF, unsigned CC,
6640 if (CC == 3) {
6643 } else if (CC == 7) {
6648 switch (CC) {
7153 unsigned CC = cast<llvm::ConstantInt>(Ops[2])->getZExtValue() & 0x7;
7154 return EmitX86MaskedCompare(*this, CC, true, Ops);
7168 unsigned CC = cast<llvm::ConstantInt>(Ops[2])->getZExtValue() & 0x7;
7169 return EmitX86MaskedCompare(*this, CC, false, Ops);
7294 unsigned CC = cast<llvm::ConstantInt>(Ops[2])->getZExtValue();
7296 if (CC < 8) {
7298 switch (CC) {
7707 /// to an int that receives the post-instruction CC value. At the LLVM level
7708 /// this is represented as a function that returns a {result, cc} pair.
7719 Value *CC = CGF.Builder.CreateExtractValue(Call, 1);
7720 CGF.Builder.CreateStore(CC, CCPtr);
7871 // Vector intrisincs that output the post-instruction CC value.