1 / 18

Differential Encoding of DFAs for Fast Regular Expression Matching

Differential Encoding of DFAs for Fast Regular Expression Matching. Author: Domenico Ficara , Andrea Di Pietro , Stefano Giordano , Gregorio Procissi , Fabio Vitucci , Gianni Antichi. Publisher: TRANSACTIONS ON NETWORKING 2011 Presenter: Kai-Yang, Liu Date: 2012/4/18. INTRODUCTION.

kolina
Download Presentation

Differential Encoding of DFAs for Fast Regular Expression Matching

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Differential Encoding of DFAs for Fast Regular Expression Matching Author: Domenico Ficara, Andrea Di Pietro, Stefano Giordano, Gregorio Procissi, Fabio Vitucci, Gianni Antichi. Publisher: TRANSACTIONS ON NETWORKING 2011 Presenter: Kai-Yang, Liu Date: 2012/4/18

  2. INTRODUCTION • This paper presents a new representation for DFAs, called delta finite automata which considerably reduces number of transitions while preserving a transition per character only. • Our idea comes from D2FA [6], which introduces default transitions for this purpose. • Since most adjacent states share several common transitions, it is possible to delete most of them by taking into account the different ones only.

  3. Main Contributions • a novel compact representation of DFA states δFA that allows for iterative reduction of the number of transitions and for faster string matching. • an optimization δNFA that exploits Nth-order relationships within the DFA, thus saving further memory. • a new state encoding scheme based on input characters.

  4. Motivating Example

  5. Main idea of δFA • The target of δFA is to obtain a similar compression as D2FA without giving up the single state traversal per character of DFA. • We use a supplementary structure that locally stores the transition set of the current state. The main idea is to let this local transition set evolve as a new state is reached.

  6. Construction • The algorithm works with the transition table t [s , c] of the input DFA. The final result is a “compressible” transition table tc [s , c] that stores the transitions required by the δFA only. • If, for an input char , the child state stores a different transition than the one associated with any of its parent nodes, we cannot exploit the knowledge we have from the previous state, and this transition must be stored in the tc table.

  7. Lookup • Input string : abc

  8. Main idea of δNFA • we add the concept of temporary transition, thus improving δFA: Instead of specifying the transition set of a state with respect to its direct parents , relaxing this requirement to the adoption of N-step ancestors increases the chances of compression. • Since this optimized technique is an extension to δFA that exploits Nth-order dependence, we name it δNFA.

  9. Define the transition for c in state 3 as temporary in the sense that it does not get stored in the local transition set. • whenever we read state 3, the transition for c in the local transition set is not updated. Then, we can avoid storing the transitions forcin states 2, 4, and 5.

  10. Lookup • Input string : abc

  11. Compression Char-State Pairs • In most cases, the edges reaching a given state are labeled with the same character. • A consistent number of states in the DFA can be associated with a single char and referred to by using a “relative” address (rel-id). • The absolute address of the next state will be retrieved by using a small indirection table, which will be small enough to be kept in local memory.

  12. C-S can take advantage of the same heuristic of δFA : Successive states often present the same set of transitions. • when character c is processed, it is possible to parallelize two memory accesses: • retrieve the data structure corresponding to state S+1; • retrieve the absolute address corresponding to in the local indirection table. • It is quite common that the access to a local memory block is more than twice as fast as that of an off-chip memory bank.

  13. EXPERIMENTAL RESULTS

  14. EXPERIMENTAL RESULTS

More Related