Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DGlobalISelEmitter.cpp5537 StringMap<unsigned> OpcodeOrder; in buildMatchTable() local
5541 if (OpcodeOrder.count(Opcode) == 0) in buildMatchTable()
5542 OpcodeOrder[Opcode] = CurrentOrdering++; in buildMatchTable()
5545 llvm::stable_sort(InputRules, [&OpcodeOrder](const Matcher *A, in buildMatchTable()
5549 return std::make_tuple(OpcodeOrder[L->getOpcode()], L->getNumOperands()) < in buildMatchTable()
5550 std::make_tuple(OpcodeOrder[R->getOpcode()], R->getNumOperands()); in buildMatchTable()