reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/CodeGen/FastISel.h
  537   bool selectCast(const User *I, unsigned Opcode);

References

lib/CodeGen/SelectionDAG/FastISel.cpp
 1884     return selectCast(I, ISD::FP_TO_SINT);
 1886     return selectCast(I, ISD::ZERO_EXTEND);
 1888     return selectCast(I, ISD::SIGN_EXTEND);
 1890     return selectCast(I, ISD::TRUNCATE);
 1892     return selectCast(I, ISD::SINT_TO_FP);
 1899       return selectCast(I, ISD::ZERO_EXTEND);
 1901       return selectCast(I, ISD::TRUNCATE);
lib/Target/AArch64/AArch64FastISel.cpp
 5185     if (!selectCast(I, ISD::FP_TO_SINT))
 5194     if (!selectCast(I, ISD::TRUNCATE))
 5202     if (!selectCast(I, ISD::SINT_TO_FP))