Home | History | Annotate | Download | only in VMCore

Lines Matching refs:FC

1350   if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1351 return FC;
1650 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1651 return FC; // Fold a few common cases.
1742 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
1743 return FC; // Fold a few common cases.
1772 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1773 return FC; // Fold a few common cases...
1795 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1796 return FC; // Fold a few common cases...
1819 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
1820 return FC; // Fold a few common cases.
1841 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1842 return FC; // Fold a few common cases.
1858 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1859 return FC; // Fold a few common cases.
1882 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
1883 assert(FC && "insertvalue constant expr couldn't be folded!");
1884 return FC;
1898 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
1899 assert(FC && "ExtractValue constant expr couldn't be folded!");
1900 return FC;