Lines Matching defs:Table
182 // Table#i - Holds instructions which the their memory form
213 void addEntryWithFlags(FoldTable &Table, const CodeGenInstruction *RegInst,
218 void addBroadcastEntry(FoldTable &Table, const CodeGenInstruction *RegInst,
223 void printTable(const FoldTable &Table, StringRef TableName,
227 for (auto &E : Table)
440 void X86FoldTablesEmitter::addEntryWithFlags(FoldTable &Table,
446 assert((IsManual || Table.find(RegInst) == Table.end()) &&
456 Table[RegInst] = Result;
505 Table[RegInst] = Result;
509 FoldTable &Table, const CodeGenInstruction *RegInst,
512 assert(Table.find(RegInst) == Table.end() && "Override entry unexpectedly");
532 Table[RegInst] = Result;
564 // operand is a memory operand, add instructions to Table#i.
732 auto CheckMemFoldTable = [](const FoldTable &Table) -> void {
733 for (const auto &Record : Table) {