Searched refs:UnaryOp_match (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DMIPatternMatch.h242 template <typename SrcTy, unsigned Opcode> struct UnaryOp_match { struct in namespace:llvm::MIPatternMatch
245 UnaryOp_match(const SrcTy &LHS) : L(LHS) {} function in struct:llvm::MIPatternMatch::UnaryOp_match
259 inline UnaryOp_match<SrcTy, TargetOpcode::G_ANYEXT>
261 return UnaryOp_match<SrcTy, TargetOpcode::G_ANYEXT>(Src);
265 inline UnaryOp_match<SrcTy, TargetOpcode::G_SEXT> m_GSExt(const SrcTy &Src) {
266 return UnaryOp_match<SrcTy, TargetOpcode::G_SEXT>(Src);
270 inline UnaryOp_match<SrcTy, TargetOpcode::G_ZEXT> m_GZExt(const SrcTy &Src) {
271 return UnaryOp_match<SrcTy, TargetOpcode::G_ZEXT>(Src);
275 inline UnaryOp_match<SrcTy, TargetOpcode::G_FPEXT> m_GFPExt(const SrcTy &Src) {
276 return UnaryOp_match<SrcT
[all...]

Completed in 119 milliseconds