Home
last modified time | relevance | path

Searched refs:LessRecordByID (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.h1119 std::map<const Record *, SDNodeInfo, LessRecordByID> SDNodes;
1121 std::map<const Record *, NodeXForm, LessRecordByID> SDNodeXForms;
1122 std::map<const Record *, ComplexPattern, LessRecordByID> ComplexPatterns;
1123 std::map<const Record *, std::unique_ptr<TreePattern>, LessRecordByID>
1125 std::map<const Record *, DAGDefaultOperand, LessRecordByID> DefaultOperands;
1126 std::map<const Record *, DAGInstruction, LessRecordByID> Instructions;
1224 typedef std::map<const Record *, DAGInstruction, LessRecordByID> DAGInstMap;
H A DSubtargetFeatureInfo.h22 std::map<const Record *, SubtargetFeatureInfo, LessRecordByID>;
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp144 typedef std::set<const Record *, LessRecordByID> RegisterSet;
249 std::back_inserter(Tmp), LessRecordByID()); in isRelatedTo()
760 typedef std::map<const Record *, ClassInfo *, LessRecordByID>
1252 RHS.end(), LessRecordByID()); in operator ()()
1296 std::inserter(Tmp, Tmp.begin()), LessRecordByID()); in buildRegisterClasses()
1332 if (RS != RS2 && llvm::includes(RS2, RS, LessRecordByID())) in buildRegisterClasses()
H A DAsmWriterEmitter.cpp823 return LessRecordByID()(LHS.first.TheDef, RHS.first.TheDef); in operator ()()
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h2094 struct LessRecordByID { struct