Home | History | Annotate | Download | only in IR

Lines Matching refs:FC

1482   if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1483 return FC;
1819 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1820 return FC; // Fold a few common cases.
1911 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
1912 return FC; // Fold a few common cases.
1948 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1949 return FC; // Fold a few common cases...
1969 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1970 return FC; // Fold a few common cases...
1991 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
1992 return FC; // Fold a few common cases.
2012 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2013 return FC; // Fold a few common cases.
2027 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2028 return FC; // Fold a few common cases.
2052 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2053 return FC;
2073 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2074 return FC;