Home | History | Annotate | Download | only in IR

Lines Matching refs:FC

1512   if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1513 return FC;
1870 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1871 return FC; // Fold a few common cases.
1974 if (Constant *FC = ConstantFoldGetElementPtr(Ty, C, InBounds, Idxs))
1975 return FC; // Fold a few common cases.
2015 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
2016 return FC; // Fold a few common cases...
2039 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
2040 return FC; // Fold a few common cases...
2065 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
2066 return FC; // Fold a few common cases.
2089 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
2090 return FC; // Fold a few common cases.
2108 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
2109 return FC; // Fold a few common cases.
2137 if (Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs))
2138 return FC;
2161 if (Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs))
2162 return FC;