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

References

include/llvm/IR/PatternMatch.h
 1288 inline CastClass_match<OpTy, Instruction::BitCast> m_BitCast(const OpTy &Op) {
 1289   return CastClass_match<OpTy, Instruction::BitCast>(Op);
 1294 inline CastClass_match<OpTy, Instruction::PtrToInt> m_PtrToInt(const OpTy &Op) {
 1295   return CastClass_match<OpTy, Instruction::PtrToInt>(Op);
 1300 inline CastClass_match<OpTy, Instruction::Trunc> m_Trunc(const OpTy &Op) {
 1301   return CastClass_match<OpTy, Instruction::Trunc>(Op);
 1305 inline match_combine_or<CastClass_match<OpTy, Instruction::Trunc>, OpTy>
 1312 inline CastClass_match<OpTy, Instruction::SExt> m_SExt(const OpTy &Op) {
 1313   return CastClass_match<OpTy, Instruction::SExt>(Op);
 1318 inline CastClass_match<OpTy, Instruction::ZExt> m_ZExt(const OpTy &Op) {
 1319   return CastClass_match<OpTy, Instruction::ZExt>(Op);
 1323 inline match_combine_or<CastClass_match<OpTy, Instruction::ZExt>, OpTy>
 1329 inline match_combine_or<CastClass_match<OpTy, Instruction::SExt>, OpTy>
 1335 inline match_combine_or<CastClass_match<OpTy, Instruction::ZExt>,
 1336                         CastClass_match<OpTy, Instruction::SExt>>
 1343     match_combine_or<CastClass_match<OpTy, Instruction::ZExt>,
 1344                      CastClass_match<OpTy, Instruction::SExt>>,
 1352 inline CastClass_match<OpTy, Instruction::UIToFP> m_UIToFP(const OpTy &Op) {
 1353   return CastClass_match<OpTy, Instruction::UIToFP>(Op);
 1358 inline CastClass_match<OpTy, Instruction::SIToFP> m_SIToFP(const OpTy &Op) {
 1359   return CastClass_match<OpTy, Instruction::SIToFP>(Op);
 1364 inline CastClass_match<OpTy, Instruction::FPTrunc> m_FPTrunc(const OpTy &Op) {
 1365   return CastClass_match<OpTy, Instruction::FPTrunc>(Op);
 1370 inline CastClass_match<OpTy, Instruction::FPExt> m_FPExt(const OpTy &Op) {
 1371   return CastClass_match<OpTy, Instruction::FPExt>(Op);