Home
last modified time | relevance | path

Searched refs:MergeInTypeInfo (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.h263 bool MergeInTypeInfo(TypeSetByHwMode &Out, const TypeSetByHwMode &In) const;
264 bool MergeInTypeInfo(TypeSetByHwMode &Out, MVT::SimpleValueType InVT) const { in MergeInTypeInfo() function
265 return MergeInTypeInfo(Out, TypeSetByHwMode(InVT)); in MergeInTypeInfo()
267 bool MergeInTypeInfo(TypeSetByHwMode &Out, ValueTypeByHwMode InVT) const { in MergeInTypeInfo() function
268 return MergeInTypeInfo(Out, TypeSetByHwMode(InVT)); in MergeInTypeInfo()
987 return TP.getInfer().MergeInTypeInfo(Types[ResNo], VTS); in UpdateNodeType()
995 return TP.getInfer().MergeInTypeInfo(Types[ResNo], VTS); in UpdateNodeType()
1003 return TP.getInfer().MergeInTypeInfo(Types[ResNo], VTS); in UpdateNodeType()
H A DCodeGenDAGPatterns.cpp362 bool TypeInfer::MergeInTypeInfo(TypeSetByHwMode &Out, in MergeInTypeInfo() function in TypeInfer