Lines Matching refs:Tables
1 //===- X86DisassemblerTables.cpp - Disassembler tables ----------*- C++ -*-===//
11 // It contains the implementation of the disassembler tables.
373 for (i = 0; i < array_lengthof(Tables); i++) {
374 Tables[i] = new ContextDecision;
375 memset(Tables[i], 0, sizeof(ContextDecision));
384 for (i = 0; i < array_lengthof(Tables); i++)
385 delete Tables[i];
703 emitContextDecision(o1, o2, i1, i2, *Tables[0], ONEBYTE_STR);
704 emitContextDecision(o1, o2, i1, i2, *Tables[1], TWOBYTE_STR);
705 emitContextDecision(o1, o2, i1, i2, *Tables[2], THREEBYTE38_STR);
706 emitContextDecision(o1, o2, i1, i2, *Tables[3], THREEBYTE3A_STR);
707 emitContextDecision(o1, o2, i1, i2, *Tables[4], THREEBYTEA6_STR);
708 emitContextDecision(o1, o2, i1, i2, *Tables[5], THREEBYTEA7_STR);
793 ContextDecision &decision = *Tables[type];