Home | History | Annotate | Download | only in IR

Lines Matching refs:FC

1427   if (Constant *FC = ConstantFoldCastInstruction(opc, C, Ty))
1428 return FC;
1727 if (Constant *FC = ConstantFoldBinaryInstruction(Opcode, C1, C2))
1728 return FC; // Fold a few common cases.
1819 if (Constant *FC = ConstantFoldGetElementPtr(C, InBounds, Idxs))
1820 return FC; // Fold a few common cases.
1856 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1857 return FC; // Fold a few common cases...
1877 if (Constant *FC = ConstantFoldCompareInstruction(pred, LHS, RHS))
1878 return FC; // Fold a few common cases...
1899 if (Constant *FC = ConstantFoldExtractElementInstruction(Val, Idx))
1900 return FC; // Fold a few common cases.
1920 if (Constant *FC = ConstantFoldInsertElementInstruction(Val, Elt, Idx))
1921 return FC; // Fold a few common cases.
1935 if (Constant *FC = ConstantFoldShuffleVectorInstruction(V1, V2, Mask))
1936 return FC; // Fold a few common cases.
1957 Constant *FC = ConstantFoldInsertValueInstruction(Agg, Val, Idxs);
1958 assert(FC && "insertvalue constant expr couldn't be folded!");
1959 return FC;
1973 Constant *FC = ConstantFoldExtractValueInstruction(Agg, Idxs);
1974 assert(FC && "ExtractValue constant expr couldn't be folded!");
1975 return FC;