HomeSort by relevance Sort by last modified time
    Searched refs:CachedTable (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/CodeGen/
DFAPacketizer.cpp 41 // ReadTable - Read the DFA transition table and update CachedTable.
52 // Early exit in case CachedTable has already contains this
54 if (CachedTable.count(UnsignPair(state,
59 CachedTable[UnsignPair(state, DFAStateInputTable[i][0])] =
72 return (CachedTable.count(StateTrans) != 0);
84 assert(CachedTable.count(StateTrans) != 0);
85 CurrentState = CachedTable[StateTrans];
  /external/llvm/include/llvm/CodeGen/
DFAPacketizer.h 51 // CachedTable is a map from <FromState, Input> to ToState.
52 DenseMap<UnsignPair, unsigned> CachedTable;
54 // ReadTable - Read the DFA transition table and update CachedTable.

Completed in 3487 milliseconds