Movatterモバイル変換


[0]ホーム

URL:


US6122757A - Code generating system for improved pattern matching in a protocol analyzer - Google Patents

Code generating system for improved pattern matching in a protocol analyzer
Download PDF

Info

Publication number
US6122757A
US6122757AUS08/884,143US88414397AUS6122757AUS 6122757 AUS6122757 AUS 6122757AUS 88414397 AUS88414397 AUS 88414397AUS 6122757 AUS6122757 AUS 6122757A
Authority
US
United States
Prior art keywords
pattern
patterns
relationship
executable code
pattern set
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Expired - Lifetime
Application number
US08/884,143
Inventor
Jeffrey V. Kelley
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Keysight Technologies Singapore Holdings Pte Ltd
Original Assignee
Agilent Technologies Inc
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Agilent Technologies IncfiledCriticalAgilent Technologies Inc
Priority to US08/884,143priorityCriticalpatent/US6122757A/en
Assigned to HEWLETT-PACKARD COMPANYreassignmentHEWLETT-PACKARD COMPANYASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS).Assignors: KELLEY, JEFFREY V.
Priority to CA002226611Aprioritypatent/CA2226611C/en
Assigned to HEWLETT-PACKARD COMPANYreassignmentHEWLETT-PACKARD COMPANYMERGER (SEE DOCUMENT FOR DETAILS).Assignors: HEWLETT-PACKARD COMPANY
Assigned to AGILENT TECHNOLOGIES INCreassignmentAGILENT TECHNOLOGIES INCASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS).Assignors: HEWLETT-PACKARD COMPANY
Application grantedgrantedCritical
Publication of US6122757ApublicationCriticalpatent/US6122757A/en
Assigned to IXIAreassignmentIXIAASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS).Assignors: AGILENT TECHNOLOGIES, INC.
Assigned to BANK OF AMERICA, N.A., AS ADMINISTRATIVE AGENTreassignmentBANK OF AMERICA, N.A., AS ADMINISTRATIVE AGENTSECURITY AGREEMENTAssignors: IXIA
Assigned to SILICON VALLEY BANK, AS SUCCESSOR ADMINISTRATIVE AGENTreassignmentSILICON VALLEY BANK, AS SUCCESSOR ADMINISTRATIVE AGENTNOTICE OF SUBSTITUTION OF ADMINISTRATIVE AGENTAssignors: BANK OF AMERICA, N.A., RESIGNING ADMINISTRATIVE AGENT
Assigned to IXIAreassignmentIXIARELEASE BY SECURED PARTY (SEE DOCUMENT FOR DETAILS).Assignors: SILICON VALLEY BANK, AS SUCCESSOR ADMINISTRATIVE AGENT
Anticipated expirationlegal-statusCritical
Assigned to KEYSIGHT TECHNOLOGIES SINGAPORE (HOLDINGS) PTE. LTD.reassignmentKEYSIGHT TECHNOLOGIES SINGAPORE (HOLDINGS) PTE. LTD.ASSIGNMENT OF ASSIGNORS INTEREST (SEE DOCUMENT FOR DETAILS).Assignors: IXIA
Expired - Lifetimelegal-statusCriticalCurrent

Links

Images

Classifications

Definitions

Landscapes

Abstract

A machine code generating system for improved pattern matching in a protocol analyzer. The code generating system includes a pattern relationship analysis phase and a pattern matching code generation phase. The pattern relationship analysis phase includes evaluating pairs of test patterns to determine the relationship that exists between each pair such as superset, subset, independent, external, and identical. The pattern matching code generation phase includes generating general pattern matching code in addition to generating specialized comparison code that is specific to the types of relationships that exist among a given set of patterns. The machine code that is generated, organizes the patterns into groups to minimize the number of pattern matching comparisons required to a minimum defined in the average case as the sum of the number of patterns and the maximum number of words per pattern. The machine code generated by the code generating system is ready to execute at the completion of the code generating system operation.

Description

BACKGROUND OF THE INVENTION
1. Field of the Invention
This invention relates to the field of protocol analyzing systems, and more particularly to a frame relay protocol analyzing system having an improved pattern matching feature used to match anchored patterns in a protocol to enabled event triggers, filters, and/or statistical patterns in a protocol analyzer. The improved pattern matching feature exploits the relationships among the patterns being tested to facilitate automatic generation of an executable pattern matching program in real time. The executable code in the resulting pattern matching program is designed to optimize pattern matching efficiency by minimizing the number of comparisons required to identify which patterns match the input data.
2. Description of the Related Art
Pattern matching is an analysis technique commonly supported by existing protocol analyzing systems. The pattern matching technique is used to examine the data portion of individual frames that pass along a communication link between a first device and a second device. For anchored pattern matching, examining a frame means that a fixed portion of the frame is compared to a pattern to determine if that portion of the frame matches the pattern. For non-anchored pattern matching, examining a frame means that a variable portion of a frame is compared to a pattern to determine if that portion of the frame matches the pattern.
Depending on the result of a given comparison, the protocol analyzer may or may not initiate a predetermined event. For example, if a match exists between a frame and a given pattern then a predetermined event may occur. Alternatively, if a match does not exist between a frame and a given pattern then a predetermined event may not occur. Reasons for pattern matching include, but are not limited to, triggering events, capturing frames, filtering specific frames or types of frames, and identifying frame errors or statistical patterns within a series of frames.
One problem with pattern matching techniques in existing protocol analyzing systems is that they are performance inefficient. The inefficiencies are often the result of problems in the pattern matching comparison logic can that include, but are not limited to, the number of comparisons that are required between a frame and a single pattern, and the number of times a worst case comparison scenario occurs. Existing protocol analyzing systems use a brute force word-by-word comparison of a pattern against input data from a frame where the comparison process is repeated for each of a plurality of patterns that are enabled at pattern matching run time. In other words, the number of comparisons always equals the number of enabled patterns times the number of words in a pattern. This means that a word-by-word comparison will proceed even if, for example, the number of words in a pattern is greater than the number of words in the data portion of a frame so that no match could possibly occur. For a pattern matching scenario where there are 9 patterns to compare against a single frame of input data at 16 words per pattern, then 9*16=144 comparisons are required to complete the pattern matching against a single frame.
The result of the existing brute force comparison technique is that the worst case number of comparisons occurs for each of a plurality of patterns against each frame of input data. Because the overall performance of the pattern matching comparisons are determined by how quickly the worst case scenario can be processed, a given protocol analyzer using the brute force comparison technique may only be useful for monitoring low-speed communication links because the processing is so slow. One of the only ways to increase existing brute force pattern matching performance so that higher-speed communications links can be monitored is to use a higher performance processing engine in the protocol analyzer. However, using a higher performance processor can significantly increase the overall cost of the protocol analyzer thereby eliminating the market opportunity for a low-cost protocol analyzing equipment. In addition, although certain performance increases might be realized by developing alternative pattern matching comparison strategies for use with different sets of patterns, the alternative pattern matching comparison logic often requires custom pattern matching code from one set of patterns to the next and it is a problem when operator intervention is required to generate this custom code for each new set of patterns being used for each pattern matching session.
For these reasons there exists a long felt need for an improved pattern matching technique for use in a low-cost high-performance protocol analyzing system that addresses at least two problems: 1) the need for increased performance and/or efficiency of the pattern matching comparison logic for any given set of patterns; and 2) eliminating the need for operator intervention to assist in generating all or part of the program code used to execute the pattern matching comparison logic for any given set of patterns. A solution to these problems as disclosed and claimed herein has heretofore not been known.
SUMMARY OF THE INVENTION
The above identified problems are solved and an advancement made in the field by the code generating system for improved pattern matching in a protocol analyzer. The code generating system includes a pattern relationship analysis phase, the result of which is used as the basis of a pattern matching code generation phase.
The pattern relationship analysis phase includes evaluating successive pairs of test patterns to determine the relationship that exists between each pair. Evaluating the pairs of test patterns occurs for each unique set of pairs among a set of patterns and is accomplished on a word-by-word basis for each pair. Types of relationships that can exist include, but are not limited to, superset, subset, independent, exclusive, and identical. The relationships that are identified for each pair are stored in a lookup table for subsequent processing.
The pattern matching code generation phase includes generating general pattern matching code in addition to generating specialized comparison code that is specific to the types of relationships that were identified in the pattern relationship analysis phase. Generating code includes grouping sets of patterns by relationship type and identifying the pattern or patterns P that do not have subset relationships with another pattern. From the pattern P, a hierarchy of comparison code is generated based on the types of relationships that exist among the patterns so that the number of comparisons required to pattern match a given word of input data is minimized. Groups of patterns that can or cannot possibly match as a result of a given input data word comparison, are immediately ruled-in or ruled-out of contention for future comparisons to minimize the number of comparisons that are required in the average case to the arithmetic sum of the number of patterns and the number of words per pattern. The input data against which a pattern is matched is also known as a frame, frame data, or a protocol data unit. The result of the code generation phase is a run-time executable program that is ready to perform pattern matching comparisons. Numerous other features, objects, and advantages of the invention will become apparent from the following detailed description when read in conjunction with the accompanying figures.
BRIEF DESCRIPTION OF THE DRAWINGS
FIG. 1 illustrates a protocol analyzing system architecture and operational environment in block diagram form;
FIG. 2 illustrates an operational overview of the code generating system for improved pattern matching in flow diagram form;
FIG. 3 illustrates the potential relationships that can exist between patterns in Venn diagram form;
FIG. 4 illustrates details of the pattern relationship analyzing steps in flow diagram form;
FIG. 5 illustrates an operational overview and details of code generating steps in flow diagram form;
FIG. 6 illustrates details of comparison code generating steps in flow diagram form; and
FIG. 7 illustrates a Venn diagram of pattern relationships for purposes of a working example of the code generating system for improved pattern matching.
DESCRIPTION OF THE PREFERRED EMBODIMENT
Architectural Overview--FIGS. 1-2
FIG. 1 illustrates an exemplary protocol analyzing system architecture andoperational environment 100 in block diagram form. The architecture andoperational environment 100 includes, but is not limited to, aprotocol analyzing system 130, afirst device 110 under test, and asecond device 120 under test. Thefirst device 110 and thesecond device 120 have acommunication link 115 therebetween. Adrop line 118 connects the protocol analyzingsystem 130 to thecommunication link 115.
Protocol analyzing system 130 includes, but is not limited to including, aline receiver 131, a First-In-First-Out (FIFO)buffer 133, aprocessor 135, anoptional display 136, aprocessor memory 138, and anexternal interface 139. Theline receiver 131 receives raw frame input fromcommunication link 115 by way ofdrop line 118. The raw frame input can be filtered by a preliminary filter inline receiver 131 as needed. For example, a significant portion of the administrative fields of a frame or a packet can be eliminated so that only the data fields are passed to theFIFO 133 to await subsequent processing. TheFIFO 133 that queues data for subsequent processing can be implemented as any other type of buffer and the need or criteria for such an alternative implementation is beyond the scope of the present invention.
Processor 135 performs tasks that include, but are not limited to, the code generating system and improved pattern matching techniques of the present invention.Display 136 can be an internal display as an integral part of theprotocol analyzing system 130 itself. Alternatively or in combination with an internal display,display 136 can be an external display operably connected to theprotocol analyzing system 130 by way of a display connection interface in a manner well known in the industry. In either case,display 136 is controlled byprocessor 135 to display real-time or replayed materials.
Processor memory 138 can be a volatile and/or non-volatile memory that performs a primary role of supporting operations of theprocessor 135.External interface 139 is controlled byprocessor 135 and performs a primary role of passing input and/or output to and/or from an externally connected device such as a Personal Computer (PC). An externally connected PC can be used to perform tasks that include, but are not limited to, additional post processing on raw data passed through theprotocol analyzing system 130, storing and/or viewing real-time data or other information, downloading programs or processing instructions, and/or uploading real-time or temporarily stored processing statistics provided by theprotocol analyzing system 130. An exhaustive listing of possible tasks and/or features other than pattern matching that are supported by aprotocol analyzing system 130 are beyond the scope of the present invention.
FIG. 2 illustrates an overview of theoperational steps 200 in flow diagram form for the code generating system for improved pattern matching. Theoperational steps 200 can be divided into two main processes that include, but are not limited to, pattern relationship analysis of steps 218-250, and pattern matching code generation ofstep 256. More specifically, the pattern relationship analysis of steps 218-250 include the steps illustrated in FIG. 4, and the pattern matching code generation ofstep 256 includes the steps of FIGS. 5-6.
Theoperational steps 200 begin withstep 208 and can be the result of a default process set in motion by powering up or recycling power on the hostprotocol analyzing system 130. Alternatively, theoperational steps 200 can be executed on demand a user or in response to any other input or command from a source internal or external to theprotocol analyzing system 130. For example, a user could construct or retrieve a stored set of patterns that are useful for a particular communication link monitoring purpose, and communicate a request that theprotocol analyzing system 130 prepare and execute pattern matching on the selected set of patterns. In response to such a request, theprotocol analyzing system 130 would perform theoperational steps 200 beginning atstep 208 in a manner as disclosed herein.
Note that the pattern relationship analysis steps 200 are only one example of how the relationships between each pattern in a set of patterns can be determined. Other methods can be use and are considered within the scope of the present topic of pattern relationship analysis. The text below accompanying FIG. 2 illustrates a method for evaluating relationships takes advantage of the symmetry of pattern relationships by recognizing that ifpattern 1 is identical to pattern 2 then pattern 2 is also identical topattern 1. Similarly, ifpattern 1 is a superset of pattern 2 then pattern 2 is a subset ofpattern 1 and so on. Thus, the example pattern relationship analysis steps 200 evaluate any pair of patterns against each other only once by evaluatingpattern 1 against pattern 2 through NUM-- PATTERNS, and pattern 2 against pattern 3 through NUM-- PATTERNS, and so on.
If it is determined adecision step 218 that the total number of patterns NUM-- PATTERNS is less than or equal to 1, then processing quits atstep 260 because there are no patterns to analyze against each other. That is, the purpose of the pattern relationship analysis steps 218-250 are to evaluate relationships among two or more patterns and exploit the relationships that exist among the patterns toward an end of maximum efficiency in pattern matching by minimizing the number of comparisons required between an input data and each of a set of patterns. Alternatively, if it is determined atdecision step 218 that NUM-- PATTERNS is greater than 1, then there are at least two patterns that can be analyzed for relationships and processing proceeds to step 220.
Atstep 220, the variables N, M, and W, are set to 1, N+1, and 0 respectively. The variable N represents an index number for the outer loop base pattern. The variable M represents an index number for the inner loop base pattern. The variable W represents an index number for the present word in a given pattern. Further instep 220, a first pattern P is set to represent pattern N of the total number of patterns, and a second pattern P' is set to represent pattern M of the total number of patterns. Atstep 225, word W of the patterns P and P' are analyzed to determine their relationship type. A complete overview of pattern relationship types is disclosed in the text accompanying FIG. 3.
If it is determined atdecision step 228 that the word index W is less than or equal to the maximum number of words MAX-- WORDS in any one of the patterns, then processing continues atstep 230 so that a word by word evaluation of P and P' continues until all words in the patterns have been analyzed and the relationship between P and P' is ultimately determined. Note, that the relationship between P and P' can differ from word to word. The results of the relationship analysis for each word comparison is stored and indexed in a memory for subsequent use during code generation. Atstep 230 the word index W is incremented by one and the relationship analysis of word W of patterns P and P' proceeds atstep 225 as previously disclosed. Alternatively, if it is determined atdecision step 228 that word index W is greater than the maximum number of words MAX-- WORDS, then processing continues atstep 233.
If it is determined atdecision step 233 that there are more P' patterns among the total number of patterns, then processing continues atstep 235 until all P' patterns have been evaluated for relationships with P. Atstep 235, P' is set to represent a next pattern M++. Alternatively, if it is determined at decision step 223 that there are no more patterns P' that require analyzing for relationships with P, then processing continues atstep 240. Atstep 240 the outer loop variable N is incremented by one and the inner loop variable M is set to N+1, and processing continues atstep 245.
If it is determined atdecision step 245 that the inner loop variable M is not greater than the total number of patterns meaning that there is at least one more pair of patterns P and P' that have not yet been analyzed together for a potential relationship, then processing continues to step 250. Atstep 250, P is set to represent a new pattern number M, and P' is set to represent a new pattern number M. Variable W is also reset to 0 as an index to the 0th byte of patterns P and P' and processing continues atstep 225 as previously disclosed. Alternatively, if it is determined atdecision step 245 that there are no more un-analyzed pairs of patterns P and P', then processing continues to step 256.
Atstep 256 the program code that is used to implement the improved pattern matching of the present invention is dynamically generated. The dynamically generated program code includes custom program code that is indicative of the unique relationships discovered among the patterns evaluated in the pattern relationship analysis steps 218-250 of the present invention. When thecode generating step 256 is complete, a fully operational function or subroutine exists for the improved pattern matching techniques. Processing stops atstep 260.
Pattern Relationship Overview--FIG. 3
FIG. 3 illustrates the types of relationships that can exist inVenn diagram form 300 among a set of patterns. Theset U 310 represents the universe of all possible input data that can be received for pattern match processing. Theset P 330 represents a pattern that matches the input data that falls within its set. From this baseline, all other P' patterns can be analyzed to determine the relationship between P and any given P'. Pattern P'sub 340 is a subset relationship of thepattern P 330 so that any input data matching P'sub will also match thepattern P 330. Alternatively, pattern P'sup 320 is a superset relationship of thepattern P 330 so that any inputdata matching P 330 will also match the pattern P'sup 320.
Pattern P'ind 350 is an independent relationship of the pattern P so that no conclusive relationship can be determined because any input data matching P'ind 350 may or may not matchpattern P 330. Pattern P'exc 360 is an exclusive relationship of thepattern P 330 so that any input data matching P'exc 360 will by definition not matchpattern P 330 and vice-versa. Finally, an identical relationship may also exist between two patterns where input data that matches a first pattern must exactly match the identical second pattern and vice-versa. Note also that by choosing a new pattern P as the baseline from which pattern relationships are analyzed, additional subset, superset, independent, and exclusive relationships can be identified and exploited toward an end of minimizing the number of frame data and pattern comparisons that must take place during pattern matching execution.
A three digit binary example of the patterns and their relationships is illustrated in Table 1. Note that the typical binary digits "1" and "0" exist in addition to "x" which represents a "don't care" or match anything digit.
              TABLE 1                                                     ______________________________________                                            P    11x                                                                  P'.sub.sub                                                                     111                                                                  P'.sub.sup                                                                     1xx                                                                  P'.sub.ind                                                                     1x1                                                                  P'.sub.exc                                                                     0xx                                                          ______________________________________
By exploiting the known relationships among the various patterns, the number of comparisons in a pattern matching exercise can be greatly reduced. For example, in a scenario where there are 9 patterns having 16 words per pattern, there need only be 9+16=25 comparisons in the average worst case comparison scenario. However, where the patterns are independent of each other, the absolute worst case comparison scenario, although far less common, still requires 9*16=144 comparisons.
Pattern Relationship Analysis Details--FIG. 4
FIG. 4 illustrates the operational details of the pattern relationship analysis steps 400 in flow diagram form. The pattern relationship analysis steps 400 begin atstep 408 and are the details ofstep 225 from FIG. 2. Atstep 415, P1 and P2 are set to the pattern bits for word W of the patterns P and P' respectively. Similarly, M1 and M2 are set to the mask bits that correspond to the patterns P and P' respectively. The remainingsteps 420 through 460 identify the type of relationship that exists between the present patterns P and P' and that relationship is cataloged and stored in a memory for future use in the code generating steps disclosed in the text accompanying FIGS. 5-6.
Note that each bit in a pattern P has a corresponding bit in a mask M due to the difficulty in representing any one of three pattern states with a single bit. In theory, there are three states that are represented by a given pattern bit that include a 1, 0, and x, where x represents a "don't care" bit. However in practice because any bit by itself can only be either a 1 or a 0, representing a "don't care" state requires a mask bit that corresponds to each pattern bit. Thus, referring to a three bit pattern as "one, one, don't care", requires viewing the first three bits of the pattern "111 " and the first three bits of the corresponding mask "110" where a 0 mask bit represents a "don't care" pattern bit position and a 1 mask bit represents a "care" or "as stated" pattern bit position. In other words, in the above example it does not matter if the third bit in the pattern "111" is a 1 or a 0 because the third bit in the mask "110" indicates that the third pattern bit can be ignored as a "don't care."
If it is determined atdecision step 420 that the result of ANDing P1, M1 and M2 does not equal the result of ANDing P2, M1 and M2, then pattern P is a mutually exclusive relationship with pattern P' and processing continues atstep 468. Alternatively if it is determined atdecision step 420 that the result of ANDing P1 and M1 does equal the result of ANDing P2 and M2, then processing continues atstep 428.
If it is determined atdecision step 428 that M1 is equal to M2, then pattern P is an identical relationship to the pattern P' and processing continues atstep 468. Alternatively, if it is determined at decisions step 428 that M1 is not equal to M2, then processing continues atstep 440.
If it is determined atdecision step 440 that the result of ANDing M1 and M2 is equal to M2 itself, then pattern P is a subset relationship of P' and processing continues atstep 468. Alternatively, if it is determined atdecision step 440 that the result of ANDing M1 and M2 is not equal to M1 itself, then processing continues atstep 450.
If it is determined atdecision step 450 that the result of ANDing M1 and M2 is equal to M1 itself, then pattern P is a superset relationship of P' and processing continues atstep 468. Alternatively, if it is determined atdecision step 450 that the result of ANDing M1 and M2 is not equal to M2 itself, then processing continues atstep 460. If processing reachesstep 460 then the relationship between pattern P and pattern P' is an independent relationship and processing continues atstep 468.
Generating Pattern Matching Code--FIGS. 5-6
FIG. 5 illustrates an operational overview of thecode generating steps 500 in flow diagram form. Thecode generating steps 500 dynamically generate operational machine code that can be run as the improved pattern matching feature for theprotocol analyzing system 130. Key to the generated code is that it embodies the most advantageous characteristics of the pattern relationships previously identified. Specifically, the resulting generated code is a custom designed function or subroutine that takes full advantage of the pattern relationships toward an end of minimizing the number of comparisons that are required at pattern matching run time between input frame data and any one pattern.
For example, the generated code is ideally based on pattern relationships such that comparing a pattern P1 to any set of input data immediately includes or rules out the need to compare some number of subsequent related patterns P2-P3. Ruling out unnecessary pattern and input data comparisons is most effectively realized if pattern P1 is a pattern that has no subsets. That is, if P1 is a subset of P2, and P2 is a subset of P3, then ruling out P1 as a match with a given input data by definition rules out P2 and P3. Similarly, a match with P1 means that at least P2 must then be compared and so on. However, each comparison is on a word by word basis between a pattern and an input data. This means that the best pattern to use for matching with a given word of input data may change from one word to the next depending on the pattern relationships that exist for each word in each pattern. Using this approach, the greatest number of matches that are required on the average is the sum of the number of patterns and the number of words per pattern. Alternatively, if P1, P2 and P3 are patterns with no supersets, then the generated code is constructed to continue comparing each word of each pattern until no match is found which could be a worst case scenario.
Thecode generating steps 500 begin atstep 508 and are the details ofstep 256 from FIG. 2. Atstep 515, variable Pset represents the set of patterns for which code will be generated, and W represents the present word number of the input data to be tested, which starts atword 0 the first word, and proceeds through to MAX-- WORDS. The variable Return-- Addr represents the address or symbolic address to which the run-time function will return when it exits.
If it is determined atdecision step 521 that the set Pset is an empty set, then the program instruction GOTO Return-- Addr is generated atstep 528 and the code generating process is complete atstep 570. Alternatively, if it is determined atdecision step 521 that the set Pset is not an empty set, then processing continues atstep 535. Atstep 535, the operational variables are set that are required for a successful call to the compare code generating steps of FIG. 6. The variable P is set to a pattern P in Pset that has no subset patterns. The variable Pind represents the set of patterns in Pset that are independent of P. The variable Psucc-- matches represents the patterns in Pset that are identical to or are supersets of P, and these are the set of patterns that may match the input data that matches P itself. The variable Psucc13 rules-- out represents the patterns in Pset that are exclusive of P, and these are the patterns that cannot match the input data if the input data matches P. The variable Pfail-- matches represents the patterns in Pset that are exclusive to or are supersets of P, and are the set of patterns that may match the input data it the input data does not match P. The variable Pfail-- rules-- out represents the patterns in Pset that are identical to P, and these are the set of patterns that cannot match the input data if the input data does not match P. And finally, the variable Fail-- code-- Loc represents the location where code will be generated if the input data does not match P, and the variable Indep-- Code-- Loc represents the location of program code where independent patterns are handled. Atstep 540, the above identified variables are included in a call to the compare code generating steps that are detailed in FIG. 6.
If it is determined atdecision step 542 that the present word number index W is equal to the maximum number of words in a pattern MAX-- WORDS, then this is the last word on which a comparison is performed so a branch program instruction is generated to GOTO Return-- Loc atstep 550 and processing continues atstep 560. Alternatively, if it is determined atdecision step 542 that the present word number index W is not equal to the maximum number of words in a pattern MAX-- WORDS, then subsequent comparisons can occur so processing continues to step 556.
Steps 556, 560, and 566 are recursive calls thecode generating steps 500 to continue generating code for special case situations. Atstep 556, thecode generating steps 500 are recursively called to generate code to test the next word of input data against the set, for the set of patterns represented by the variable Psucc-- matches. Similarly, atstep 560 thecode generating steps 500 are recursively called to generate code for the set of patterns represented by the variable Pfail-- matches. And finally, atstep 566 thecode generating steps 500 are recursively called to generate code for the set of patterns represented by the variable Pind. When processing is complete from all recursive calls to thecode generating steps 500, processing continues atstep 570. FIG. 6 illustrates details of the comparisoncode generating steps 600 in flow diagram form. The comparisoncode generating steps 600 begin atstep 608 and are the details ofstep 540 from FIG. 5. Note that depending on the programming language and detail of the program code being generated, one or more program language instructions may be generated for any of the following steps.
Atstep 615, a program instruction is generated to load word W of the input frame data into a register or memory location so that the data can be compared to a pattern. Atstep 621, a program instruction is generated to perform an AND of the word W of the mask of pattern P against the corresponding word of the input data, to mask off any "don't care" bits.
Atstep 628, a program instruction is generated to compare word W of pattern P with word W of the input frame data. Atstep 635, a program instruction is generated for the condition where result of the pattern and data comparison is not equal or otherwise failed to match, so that the patterns in the set Pfail-- rules-- out are eliminated from the set of patterns that must be subsequently compared to the input frame data. Atstep 648, a program instruction is generated to branch to Fail-- Code-- Loc if the result of the pattern and data comparison is not equal or otherwise failed to match.
Atstep 655, an AND program instruction is generated to eliminate the patterns in the set Psucc-- rules-- out because pattern P was a match therefore none of the set Psucc-- rules-- out can match. Processing continues atstep 660.
The overall logic of the pattern matching code that is generated by the steps in FIGS. 5-6 can be summarized in the following manner for each comparison that is done to compare a word of input frame data with a word of pattern P. Once a comparison is complete, if there is a match then all patterns exclusive to P deleted because they are not needed for future comparisons and comparisons of remaining patterns will continue. Alternatively, if there is not a match, then all patterns identical to P are deleted because they are not needed for future comparisons and comparisons of remaining patterns independent of P will continue.
Note that the ideal pattern to use in the comparisons is a pattern P that has no subsets so that the maximum number of comparisons required to compare input data to a given pattern is at most the sum of the number of patterns and the number of words in each pattern, assuming no independent patterns exist. Further, additional efficiencies can be built into preparing to execute the code generated code by the present invention. One efficiency includes the application of a mask to its pattern prior to run-time to identify or eliminate pattern bits that are "don't care" bits. Another efficiency includes identifying words of a pattern that contain all don't care bits because it is not necessary to compare such a word to anything because a match will always result.
Finally, the code generated by the present invention is an unrolled recursive call tree, and branches are used in the code rather than subroutine calls where ever possible to enhance run-time performance of the generated code. The choice to generate the unrolled recursive call tree code during pattern configuration is a performance optimization. An alternative implementation could choose to use run-time recursion, accepting whatever performance penalties occur. Such an alternative run-time recursive function would look similar to the function disclosed in the pseudo-code example below. The functions in the pseudo-code example that include no-- subsets, supersets, exclusive, identical, and independent, are called by the recursive function used to generate the pattern relationship database that was constructed during the pattern relationship analysis steps disclosed in the text accompanying FIG. 2.
______________________________________                                    Pseudo-Code Example                                                       ______________________________________                                    matching.sub.-- patterns                                                  find.sub.-- pattern.sub.-- matches (input, patterns, wordnum)             /*                                                                        * Parameters:                                                             *   input - input data to be matched against patterns                     *   patterns - set of patterns to test against input                      *   wordnum - word to start matching against [0                           .MAX.sub.-- PATTERN.sub.-- WORDS]                                         * Return value:                                                           *   Those patterns in `patterns` matching `input` from `wordnum` on.      */                                                                        if ( emptyset (patterns) )                                                /* No patterns to test for matches */                                     return patterns;                                                          if ( wordnum >= MAX.sub.-- PATTERN.sub.-- WORDS )                         /* All words of patterns matched, no more words */                        return patterns                                                           P = member.sub.-- of (patterns) && no.sub.-- subsets (P, patterns)        if ( matches (input, P, wordnum))                                         /* P matches => all its supersets also match */                           matching.sub.-- patterns =                                                find.sub.-- pattern.sub.-- matches (input, identical (P) OR supersets     (P),wordnum+1))                                                           else                                                                      /* P doesn't match, exclusive and supersets may match */                  matching.sub.-- patterns =                                                find.sub.-- pattern.sub.-- matches(input, superset(P) OR exclusive(P),    wordnum)                                                                  /* Look for matches of independent patterns */                            matching.sub.-- patterns |= find.sub.-- pattern.sub.-- matches   (input, independent(P),                                                   wordnum)                                                                  return matching.sub.-- patterns;                                          }                                                                         ______________________________________
Working Example--FIG. 7
FIG. 7 illustrates a Venn diagram 700 of pattern relationships for purposes of a working example of the code generating system for improved pattern matching of the present invention. The Venn diagram 700 includes the universe of allinput frame data 710, and threepatterns P1 720,P2 730, andP3 740.Pattern P1 720 is a superset ofP2 730, or conversely,P2 730 is a subset ofP1 720. In either case,pattern P3 740 is exclusive of both patterns P1 and P2. For purposes of example only, assume that the patterns for P1, P2, and P3 are those illustrated in Table 2.
              TABLE 2                                                     ______________________________________                                    P1 = 1xxxx                                                                P2 = 11xxx                                                                P3 = 0xxxx                                                                ______________________________________
Assuming for example purposes that the pattern relationship analysis is complete so that the relationships are known as stated above, the pattern relationship analysis of FIGS. 2 and 4 would look like the following in terms of a notation of Pn.w where n is the pattern number and w is the word index number within the pattern. For the present example the word number is 0 due to the minimal length of the present example for simplicity purposes. The results of the relationship analysis are stored in a cleared memory and more specifically can be stored as a database of relationships.
Step 1--Analyze Pattern Relationships
a. Compare P1.0 with P2.0 and record relationship that P2.0 is a subset of P1.0.
b. Compare P1.0 with P3.0 and record relationship that P3.0 is exclusive of P1.0.
c. Compare P2.0 with P3.0 and record relationship that P3.0 is exclusive of P2.0.
Executing the code generating steps disclosed in the text accompanying FIGS. 5-6 would look like the following the patterns listed in Table 2 and based on the previously identified pattern relationships as discussed instep 1 above.
Step 2--Generate Code
a. Call Generate-- Code with a Pset of (P1, P2, P3) and word=0.
b. Find a pattern in Pset having no subsets, starting with P1.
P2 is a subset of P1 so P1 is no good.
Next look at P2.
P2 has no subsets so P2 is chosen as the starting pattern.
c. Set Pind to the empty set, since P2 has no independent patterns.
Set Psucc-- matches to (P1, P2).
Set Psucc-- rules out to (P3).
Set Pfail-- matches to (P1, P3)
(i.e. if P2 fails to match then P1 or P3 may still match)
Set Pfail-- rules-- out to (P2).
d. Call Generate-- Compare-- Code.
Generate a load instruction for the 1st word of input data.
Generate an AND instruction to mask off all "don't care" bits in P2
Generate a COMPARE instruction to compare the masked input data with the patterns bits for P2.
Generate an ANDNE instruction to remove P2 from the set of matching patterns if the COMPARE result is not equal (NE).
Generate a BNE instruction to branch to the code executed when P2 does not match.
Generate an AND instruction to delete P3 from the set of matching patterns since P2 matched and P3 is exclusive of P2).
e. Does W==MAXWORDS?
YES==>Generate a GOTO Return-- Loc which is the location of the caller of the pattern match function.
f. Call Generate-- Code recursively to generate code for the case where P2 does not match the input data.
Pset is set to Pfail-- matches (P1, P3).
W=0.
g. Find another pattern in Pset with no subsets, starting with P1.
P1 has no subset in Pset.
h. Pind is set to the empty set since P1 has no independent patterns.
Set Psucc-- matches to (P1).
Set Psucc-- rules-- out to (P3).
Set Pfail-- matches to (P3).
Set Pfail-- rules-- out to (P1).
i. Call Generate-- Compare-- Code.
Generate a LOAD instruction for the 1st word of input data.
Generate an AND instruction to mask off all "don't care" bits in P1.
Generate a COMPARE instruction to compare the masked input data with the pattern bits for P1.
Generate an ANDNE instruction to remove P1 from the set of matching patterns if the COMPARE result is not equal (NE).
Generate a BNE instruction to branch to the code to execute when P1 does not match.
Generate an AND instruction to delete P3 from the set of matching patterns.
j. Does W==MAXWORDS?
YES==>Generate a GOTO Return-- Loc.
k. Call Generate-- Code recursively to generate code for the case where P1 does not match.
Pset is Pfail-- matches (P3).
W=0.
l. Find a pattern in Pset with no subsets, starting with P3.
P3.0 has no subset in Pset.
m. Pind is set to the empty set, since P3 has no independent patterns.
Set Psucc-- matches to (P3).
Set Psucc-- rules-- out to the empty set.
Set Pfail-- matches to the empty set.
Set Pfail-- rules-- out to (P3).
n. Call Generate-- Compare-- Code.
Generate a LOAD instruction for the 1st word of input data.
Generate an AND instruction to mask off all "don't care" bits in P3.
Generate a COMPARE instruction to compare the masked input data with the pattern bits for P3.
Generate an ANDNE instruction to remove P3 from the set of matching patterns if the COMPARE result is not equal (NE).
Since the set of patterns to look for when P3 does not match is the empty set, no BNE or AND instruction is generated.
o. Does W==MAXWORDS?
YES==>Generate a GOTO Return-- Loc.
p. Call Generate-- Code for Pind, which is the empty set, until all code is generated.
q. The recursive calls start to return, no additional code is generated because each return includes an empty set for Pind.
Summary
The code generating system for improved pattern matching of the present invention includes the analysis of patterns to determine pattern relationships therebetween, and the dynamic generating of pattern matching code based on the known relationships so that the number of comparisons between input frame data and patterns is minimized. Although specific embodiments of the present invention are disclosed herein, it is expected that persons skilled in the art can and will design alternative code generating systems for improved pattern matching that are within the scope of the following claims either literally or under the Doctrine of Equivalents.

Claims (29)

What is claimed is:
1. A code generating system for improved pattern matching in a protocol analyzer, said system comprising:
an interface in said protocol analyzer to monitor a plurality of protocol data units on a communication link;
a pattern set in said protocol analyzer;
a pattern relationship analyzer to identify a pattern relationship for each pair of patterns in said pattern set; and
a program code generator to generate executable code unique to said pattern relationship for each of said pair of patterns in said pattern set such that said executable code requires a minimum number of comparisons to determine a match between said pattern set and at least one segment of one of said plurality of protocol data units.
2. A system according to claim 1 wherein said pattern set is a fixed number of at least one pattern originating from at least one source selected from a group comprised of: at least one pattern from a memory device, at least one pattern input by a user in real time, and at least one plurality of patterns that are commonly selected for pattern matching.
3. A system according to claim 2 including:
a non-volatile memory to save and retrieve user selected ones of said at least one pattern originating from said at least one source.
4. A system according to claim 1 wherein said pattern relationship analyzer includes:
a non-volatile memory to save said pattern relationship for each said pair of patterns in said pattern set.
5. A system according to claim 4 including:
said pattern relationship is of at least one type selected from a group comprised of: superset, subset, independent, exclusive, and identical; and
said pattern relationship is determined on a word-by-word basis for each said pair of patterns in said pattern set.
6. A system according to claim 1 wherein said minimum number of comparisons includes:
an arithmetic sum of a maximum number of words in any one pattern of said pattern set and a maximum number of patterns in said pattern set.
7. A system according to claim 1 wherein said program code generator is invoked in real-time in response to said pattern relationship analyzer.
8. A system according to claim 1 wherein said program code generator is invoked in real-time in response to a user input command.
9. A code generating system for improved pattern matching in a protocol analyzer, the system comprising:
an interface in the protocol analyzer to monitor a plurality of protocol data units on a communication link;
a pattern set in the protocol analyzer;
a pattern relationship analyzer to identify a pattern relationship for each pair of patterns in the pattern set; and
a program code generator to generate executable code that includes an unrolled recursive call tree having a minimum of external function calls to enhance run-time performance of the executable code, the executable code being unique to the pattern relationship for each pair of patterns in the pattern set such that the executable code requires a minimum number of comparisons to determine a match between the pattern set and at least one segment of one of the plurality of protocol data units, the minimum number of comparisons including an arithmetic sum of a maximum number of words in any one pattern of said pattern set and a maximum number of patterns in said pattern set.
10. A code generating system for improved pattern matching in a protocol analyzer, the system comprising:
an interface in the protocol analyzer to monitor a plurality of protocol data units on a communication link;
a pattern set in the protocol analyzer;
a pattern relationship analyzer to identify a pattern relationship for each pair of patterns in the pattern set; and
a program code generator to generate executable code unique to the pattern relationship for each pair of patterns in the pattern set such that the executable code requires a minimum number of comparisons to determine a match between the pattern set and at least one segment of one of the plurality of protocol data units, the program code generator including:
a pattern matching code generator to identify a pattern P having no subset patterns and generate at least one decision logic block to rule-in and rule-out subsequent pattern comparisons in view of the pattern P; and
a specialization comparison code generator to generate at least one decision logic block for special case ones of the pattern relationship.
11. A method of generating computer executable code for improved pattern matching in a protocol analyzer, said method comprising:
monitoring a plurality of protocol data units on a communication link by way of a protocol analyzer;
generating at least one pattern set for use in said protocol analyzer;
identifying a pattern relationship for each pair of patterns in a selected one of said at least one pattern set; and
generating executable code unique to said pattern relationship for each of said pair of patterns such that said executable code requires a minimum number of comparisons to determine a match between said selected one of said at least one pattern set and at least one segment of one of said plurality of protocol data units.
12. A method according to claim 11 wherein generating at least one pattern set includes: defining a fixed number of patterns in a given pattern set wherein said fixed number of patterns originates from at least one source selected from a group comprised of: at least one pattern from a memory device, at least one pattern input by a user in real time, and at least one plurality of patterns that are commonly selected for pattern matching.
13. A method according to claim 12 including: saving and retrieving user selected ones of said fixed number of patterns in a non-volatile memory.
14. A method according to claim 11 wherein identifying a pattern relationship includes: saving said pattern relationship for each said pair of patterns in a non-volatile memory.
15. A method according to claim 14 including:
identifying said pattern relationship as at least one type selected from a group comprised of: superset, subset, independent, exclusive, and identical; and
determining said pattern relationship for each word of each said pair of patterns in said pattern set.
16. A method according to claim 11 wherein generating executable code is invoked in real-time in response to identifying a pattern relationship.
17. A method according to claim 11 wherein generating executable code is invoked in real-time in response to a user input command.
18. A method of generating computer executable code for improved pattern matching in a protocol analyzer, the method comprising:
monitoring a plurality of protocol data units on a communication link by way of a protocol analyzer;
generating a pattern set for use in the protocol analyzer;
identifying a pattern relationship for each pair of patterns in the pattern set; and
generating executable code that includes an unrolled recursive call tree having a minimum of external function calls to enhance run-time performance of the executable code, the executable code being unique to the pattern relationship for each pair of patterns such that the executable code requires a minimum number of comparisons to determine a match between the pattern set and at least one segment of one of the protocol data units, the minimum number of comparisons including an arithmetic sum of a maximum number of words in any one pattern of said pattern set and a maximum number of patterns in said pattern set.
19. A method of generating computer executable code for improved pattern matching in a protocol analyzer, the method comprising:
monitoring a plurality of protocol data units on a communication link by way of a protocol analyzer;
generating a pattern set for use in the protocol analyzer;
identifying a pattern relationship for each pair of patterns in the pattern set; and
generating executable code unique to the pattern relationship for each pair of patterns by executing a pattern matching code process to identify a pattern P having no subset patterns and generate at least one decision logic block to rule-in and rule-out subsequent pattern comparisons in view of said pattern P; and executing a specialization comparison code generator to generate at least one decision logic block for special case ones of said pattern relationship such that the executable code requires a minimum number of comparisons to determine a match between the pattern set and at least one segment of one of the protocol data units.
20. A method comprising:
monitoring a plurality of protocol data units on a communication link by way of a protocol analyzer;
generating a pattern set for pattern matching use in said protocol analyzer;
identifying a pattern relationship for each pair of patterns in a selected one of said at least one pattern set, wherein said pattern relationship is selected from at least one of a group comprised of: superset, subset, independent, exclusive, and identical; and
generating executable code unique to said pattern relationship for each of said pair of patterns such that said executable code requires a minimum number of comparisons to determine a match between said selected one of said at least one pattern set and at least one segment of one of said plurality of protocol data units,
wherein said executable code includes creating an unrolled recursive call tree having a minimum of external function calls to enhance run-time performance of said executable code, and
wherein said minimum number of comparisons in said executable code is an arithmetic sum of a maximum number of words in any one pattern of said pattern set and a maximum number of patterns in said pattern set, and
wherein said executable code includes a pattern matching code process to identify a pattern P having no subset patterns and generate at least one decision logic block to rule-in and rule-out subsequent pattern comparisons in view of said pattern P, and a specialization comparison code generator to generate at least one decision logic block for special case ones of said pattern relationship.
21. A computer-readable medium containing computer executable instructions that generate computer executable code for improved pattern matching in a protocol analyzer, the computer executable instructions comprising:
an instruction that monitors a plurality of protocol data units on a communication link by way of a protocol analyzer;
an instruction that generates a pattern set for use in the protocol analyzer;
an instruction that identifies a pattern relationship for each pair of patterns in the pattern set; and
an instruction that generates executable code unique to the pattern relationship for each pair of patterns such that the executable code requires a minimum number of comparisons to determine a match between the pattern set and at least one segment of one of the protocol data units.
22. A computer-readable medium as in claim 21 wherein the instruction that generates the pattern set defines a fixed number of patterns in a given pattern set, the fixed number of patterns originating from at least one source selected from a group comprised of a pattern from a memory device, a pattern input by a user in real time, and a plurality of patterns that are commonly selected for pattern matching.
23. A computer-readable medium as in claim 22 wherein the computer executable instructions comprise an instruction that saves user-selected ones of the fixed number of patterns in a non-volatile memory.
24. A computer-readable medium as in claim 21 wherein the computer executable instructions comprise an instruction that saves the pattern relationship for each pair of patterns in a non-volatile memory.
25. A computer-readable medium as in claim 24 wherein the computer executable instructions comprise an instruction that identifies each pattern relationship as one of the group comprising superset, subset, independent, exclusive, and identical, and determines the pattern relationship for each word of each pair of patterns in the pattern set.
26. A computer-readable medium as in claim 21 wherein the instruction that generates executable code is invoked in real-time in response to the instruction that identifies a pattern relationship.
27. A computer-readable medium as in claim 21 wherein the instruction that generates executable code is invoked in real-time in response to a user input command.
28. A computer-readable medium containing computer executable instructions that generate computer executable code for improved pattern matching in a protocol analyzer, the computer executable instructions comprising:
an instruction that monitors a plurality of protocol data units on a communication link by way of a protocol analyzer;
an instruction that generates a pattern set for use in the protocol analyzer;
an instruction that identifies a pattern relationship for each pair of patterns in the pattern set; and
an instruction that generates executable code that includes an unrolled recursive call tree having a minimum of external function calls to enhance run-time performance of the executable code, the executable code being unique to the pattern relationship for each pair of patterns such that the executable code requires a minimum number of comparisons to determine a match between the pattern set and at least one segment of one of the protocol data units.
29. A computer-readable medium containing computer executable instructions that generate computer executable code for improved pattern matching in a protocol analyzer, the computer executable instructions comprising:
an instruction that monitors a plurality of protocol data units on a communication link by way of a protocol analyzer;
an instruction that generates a pattern set for use in the protocol analyzer;
an instruction that identifies a pattern relationship for each pair of patterns in the pattern set;
an instruction that generates executable code unique to the pattern relationship for each pair of patterns such that the executable code requires a minimum number of comparisons to determine a match between the pattern set and at least one segment of one of the protocol data units;
an instruction that identifies a pattern P having no subset patterns and generates a decision logic block to rule-in and rule-out subsequent pattern comparisons in view of the pattern P; and
an instruction that generates a decision logic block for special case ones of the pattern relationship.
US08/884,1431997-06-271997-06-27Code generating system for improved pattern matching in a protocol analyzerExpired - LifetimeUS6122757A (en)

Priority Applications (2)

Application NumberPriority DateFiling DateTitle
US08/884,143US6122757A (en)1997-06-271997-06-27Code generating system for improved pattern matching in a protocol analyzer
CA002226611ACA2226611C (en)1997-06-271998-01-09Code generating system for imporved pattern matching in a protocol analyzer

Applications Claiming Priority (1)

Application NumberPriority DateFiling DateTitle
US08/884,143US6122757A (en)1997-06-271997-06-27Code generating system for improved pattern matching in a protocol analyzer

Publications (1)

Publication NumberPublication Date
US6122757Atrue US6122757A (en)2000-09-19

Family

ID=25384045

Family Applications (1)

Application NumberTitlePriority DateFiling Date
US08/884,143Expired - LifetimeUS6122757A (en)1997-06-271997-06-27Code generating system for improved pattern matching in a protocol analyzer

Country Status (2)

CountryLink
US (1)US6122757A (en)
CA (1)CA2226611C (en)

Cited By (64)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
WO2001025860A1 (en)*1999-10-052001-04-12Togethersoft CorporationMethod for generating and defining a pattern
WO2001051940A1 (en)*2000-01-142001-07-19Parthus Technologies PlcAn algorithmic test pattern generator, with built-in-self-test (bist) capabilities, for functional testing of a circuit
US6266789B1 (en)*1997-11-172001-07-24I-Tech CorporationDeep trace memory system for a protocol analyzer
US6286124B1 (en)*1999-04-212001-09-04International Business Machines Corp.End to end walking print
US20030028693A1 (en)*2001-07-272003-02-06Michael PasumanskyHierarchical display of multilevel protocol for communication data
US20030065500A1 (en)*2001-10-012003-04-03Holaday David A.Reloadable word recognizer for logic analyzer
US20030154194A1 (en)*2001-12-282003-08-14Jonas Jeffrey JamesReal time data warehousing
US20030191847A1 (en)*2002-01-162003-10-09Xerox CorporationSymmetrical structural pattern matching
US20040148415A1 (en)*2003-01-242004-07-29Mistletoe Technologies, Inc.Reconfigurable semantic processor
US20040162802A1 (en)*2003-02-072004-08-19Stokley-Van Camp, Inc.Data set comparison and net change processing
US6785677B1 (en)*2001-05-022004-08-31Unisys CorporationMethod for execution of query to search strings of characters that match pattern with a target string utilizing bit vector
US20040203559A1 (en)*2003-04-092004-10-14Stojanovic Vladimir M.Partial response receiver
US20050060556A1 (en)*2002-12-312005-03-17Jonas Jeffrey J.Authorized anonymous authentication
US20050066182A1 (en)*2003-03-242005-03-24Systems Research & DevelopmentSecure coordinate identification method, system and program
US20050157780A1 (en)*2003-12-172005-07-21Werner Carl W.Signaling system with selectively-inhibited adaptive equalization
US6931574B1 (en)2001-10-242005-08-16Finisar CorporationSystems and methods for interpreting communications packets
US20050203942A1 (en)*2004-03-152005-09-15Ramco Systems LimitedUser interfaces and software reuse in model based software systems
US20050281281A1 (en)*2003-01-242005-12-22Rajesh NairPort input buffer architecture
US20060010193A1 (en)*2003-01-242006-01-12Mistletoe Technologies, Inc.Parser table/production rule table configuration using CAM and SRAM
US20060026378A1 (en)*2004-07-272006-02-02Somsubhra SikdarArray machine context data memory
US20060026377A1 (en)*2004-07-272006-02-02Somsubhra SikdarLookup interface for array machine context data memory
US20060031555A1 (en)*2004-08-052006-02-09Somsubhra SikdarData context switching in a semantic processor
US20060104518A1 (en)*2004-11-152006-05-18Tzu-Jian YangSystem and method of string matching for uniform data classification
US20060106773A1 (en)*2004-11-182006-05-18Shu-Hsin ChangSpiral string matching method
US7058694B1 (en)*2000-09-072006-06-06Clix Network, Inc.Method for comparing two trinary logic representations in the process of customizing radio broadcasting
US20060168324A1 (en)*2004-07-272006-07-27Mistletoe Technologies, Inc.Arbiter for array machine context data memory
US20060259508A1 (en)*2003-01-242006-11-16Mistletoe Technologies, Inc.Method and apparatus for detecting semantic elements using a push down automaton
US20060280272A1 (en)*2003-04-092006-12-14Stojanovic Vladimir MData-level clock recovery
US20070016906A1 (en)*2005-07-182007-01-18Mistletoe Technologies, Inc.Efficient hardware allocation of processes to processors
US20070019661A1 (en)*2005-07-202007-01-25Mistletoe Technologies, Inc.Packet output buffer for semantic processor
US20070022225A1 (en)*2005-07-212007-01-25Mistletoe Technologies, Inc.Memory DMA interface with checksum
US20070022275A1 (en)*2005-07-252007-01-25Mistletoe Technologies, Inc.Processor cluster implementing conditional instruction skip
US20070027991A1 (en)*2005-07-142007-02-01Mistletoe Technologies, Inc.TCP isolation with semantic processor TCP state machine
US20070038664A1 (en)*2002-12-272007-02-15Jonas Jeffrey JReal time data warehousing
US20070043871A1 (en)*2005-07-192007-02-22Mistletoe Technologies, Inc.Debug non-terminal symbol for parser error handling
US7206831B1 (en)2002-08-262007-04-17Finisar CorporationOn card programmable filtering and searching for captured network data
US20080016062A1 (en)*2006-06-302008-01-17Drescher Keith ARequest-response trigger generation in link-connected computing systems
US20080013464A1 (en)*2006-07-112008-01-17Broadweb CorporationMethod and system for blocking the specific function of the P2P application in the network
US20080057913A1 (en)*2006-06-162008-03-06Airdefense, Inc.Systems and Methods for Wireless Network Content Filtering
US20080062989A1 (en)*2006-09-082008-03-13Dominic CoupalSmart match search method for captured data frames
US7398356B2 (en)2004-07-222008-07-08Mistletoe Technologies, Inc.Contextual memory interface for network processor
US7401326B1 (en)2001-10-242008-07-15Finisar CorporationCompiling protocol analysis code using protocol database
US20090164429A1 (en)*2007-12-212009-06-25Concert Technology CorporationTunersphere
US20100017455A1 (en)*2008-07-172010-01-21Lemi Technology, LlcCustomized media broadcast for a broadcast group
US20100107180A1 (en)*2007-06-062010-04-29Andreas UlrichMethod for providing reference data for a diagnosis of a system dependent on an event trace
US20100280835A1 (en)*2009-04-292010-11-04Lemi Technology, LlcDynamic radio client
US7840691B1 (en)2000-09-072010-11-23Zamora Radio, LlcPersonal broadcast server system for providing a customized broadcast
US7900052B2 (en)2002-11-062011-03-01International Business Machines CorporationConfidential data sharing and anonymous entity resolution
US8204831B2 (en)2006-11-132012-06-19International Business Machines CorporationPost-anonymous fuzzy comparisons without the use of pre-anonymization variants
US8281392B2 (en)2006-08-112012-10-02Airdefense, Inc.Methods and systems for wired equivalent privacy and Wi-Fi protected access protection
US8316015B2 (en)2007-12-212012-11-20Lemi Technology, LlcTunersphere
US8494899B2 (en)2008-12-022013-07-23Lemi Technology, LlcDynamic talk radio program scheduling
US8564328B2 (en)2003-12-172013-10-22Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US8755763B2 (en)1998-01-222014-06-17Black Hills MediaMethod and device for an internet radio capable of obtaining playlist content from a content server
US20140208076A1 (en)*2013-01-232014-07-24Lsi CorporationDfa compression and execution
US8806047B2 (en)2009-04-292014-08-12Lemi Technology, LlcSkip feature for a broadcast or multicast media station
US20140258779A1 (en)*2013-03-072014-09-11Microsoft CorporationCommunication Analyzer
WO2015016831A1 (en)*2013-07-302015-02-05Hewlett-Packard Development Company, L.P.Process partial response channel
US9015147B2 (en)2007-12-202015-04-21Porto Technology, LlcSystem and method for generating dynamically filtered content results, including for audio and/or video channels
US9268881B2 (en)2012-10-192016-02-23Intel CorporationChild state pre-fetch in NFAs
US9304768B2 (en)2012-12-182016-04-05Intel CorporationCache prefetch for deterministic finite automaton instructions
US9516370B1 (en)2004-05-052016-12-06Black Hills Media, LlcMethod, device, and system for directing a wireless speaker from a mobile phone to receive and render a playlist from a content server on the internet
US9665664B2 (en)2012-11-262017-05-30Intel CorporationDFA-NFA hybrid
US10133982B2 (en)2012-11-192018-11-20Intel CorporationComplex NFA state matching method that matches input symbols against character classes (CCLS), and compares sequence CCLS in parallel

Citations (15)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US4606069A (en)*1983-06-101986-08-12At&T Bell LaboratoriesApparatus and method for compression of facsimile information by pattern matching
US4783830A (en)*1987-03-241988-11-08American Electronics, Inc.Pattern recognizing content addressable memory system
US4831580A (en)*1985-07-121989-05-16Nippon Electric Industry Co., Ltd.Program generator
US4882756A (en)*1983-10-271989-11-21Nec CorporationPattern matching system using dynamic programming
US4901352A (en)*1984-04-051990-02-13Nec CorporationPattern matching method using restricted matching paths and apparatus therefor
US5014327A (en)*1987-06-151991-05-07Digital Equipment CorporationParallel associative memory having improved selection and decision mechanisms for recognizing and sorting relevant patterns
US5121465A (en)*1987-03-161992-06-09Nec CorporationPattern matching system
US5189709A (en)*1991-08-261993-02-23The United States Of America As Represented By The United States National Aeronautics And Space AdministrationDynamic pattern matcher using incomplete data
US5200888A (en)*1989-06-141993-04-06Atr Communication Systems Research LaboratoriesMethod for automatically designing a program structure
US5463701A (en)*1992-10-201995-10-31International Business Machines CorporationSystem and method for pattern-matching with error control for image and video compression
US5587918A (en)*1992-12-281996-12-24Kabushiki Kaisha ToshibaCircuit pattern comparison apparatus
US5661763A (en)*1995-07-281997-08-26Adtran, Inc.Apparatus and method for detecting programmable length bit pattern in serial digital data stream
US5748769A (en)*1993-06-221998-05-05Kabushiki Kaisha ToshibaPattern recognition apparatus
US5768590A (en)*1994-08-011998-06-16Fujitsu LimitedProgram generating system for application-specific add-on boards using the language of individuals
US5916305A (en)*1996-11-051999-06-29Shomiti Systems, Inc.Pattern recognition in data communications using predictive parsers

Patent Citations (15)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US4606069A (en)*1983-06-101986-08-12At&T Bell LaboratoriesApparatus and method for compression of facsimile information by pattern matching
US4882756A (en)*1983-10-271989-11-21Nec CorporationPattern matching system using dynamic programming
US4901352A (en)*1984-04-051990-02-13Nec CorporationPattern matching method using restricted matching paths and apparatus therefor
US4831580A (en)*1985-07-121989-05-16Nippon Electric Industry Co., Ltd.Program generator
US5121465A (en)*1987-03-161992-06-09Nec CorporationPattern matching system
US4783830A (en)*1987-03-241988-11-08American Electronics, Inc.Pattern recognizing content addressable memory system
US5014327A (en)*1987-06-151991-05-07Digital Equipment CorporationParallel associative memory having improved selection and decision mechanisms for recognizing and sorting relevant patterns
US5200888A (en)*1989-06-141993-04-06Atr Communication Systems Research LaboratoriesMethod for automatically designing a program structure
US5189709A (en)*1991-08-261993-02-23The United States Of America As Represented By The United States National Aeronautics And Space AdministrationDynamic pattern matcher using incomplete data
US5463701A (en)*1992-10-201995-10-31International Business Machines CorporationSystem and method for pattern-matching with error control for image and video compression
US5587918A (en)*1992-12-281996-12-24Kabushiki Kaisha ToshibaCircuit pattern comparison apparatus
US5748769A (en)*1993-06-221998-05-05Kabushiki Kaisha ToshibaPattern recognition apparatus
US5768590A (en)*1994-08-011998-06-16Fujitsu LimitedProgram generating system for application-specific add-on boards using the language of individuals
US5661763A (en)*1995-07-281997-08-26Adtran, Inc.Apparatus and method for detecting programmable length bit pattern in serial digital data stream
US5916305A (en)*1996-11-051999-06-29Shomiti Systems, Inc.Pattern recognition in data communications using predictive parsers

Cited By (142)

* Cited by examiner, † Cited by third party
Publication numberPriority datePublication dateAssigneeTitle
US6266789B1 (en)*1997-11-172001-07-24I-Tech CorporationDeep trace memory system for a protocol analyzer
US6393587B2 (en)1997-11-172002-05-21I-Tech CorporationDeep trace memory system for a protocol analyzer
US9552188B1 (en)1998-01-222017-01-24Black Hills Media, LlcMethod and device for displaying supplemental information while rendering a playlist
US9312827B2 (en)1998-01-222016-04-12Black Hills Media, LlcNetwork enabled audio device and radio site
US9549001B1 (en)1998-01-222017-01-17Black Hills Media, LlcMethod and device for sourcing and constructing a playlist
US9397627B2 (en)1998-01-222016-07-19Black Hills Media, LlcNetwork-enabled audio device
US8755763B2 (en)1998-01-222014-06-17Black Hills MediaMethod and device for an internet radio capable of obtaining playlist content from a content server
US8792850B2 (en)1998-01-222014-07-29Black Hills MediaMethod and device for obtaining playlist content over a network
US8918480B2 (en)1998-01-222014-12-23Black Hills Media, LlcMethod, system, and device for the distribution of internet radio content
US6286124B1 (en)*1999-04-212001-09-04International Business Machines Corp.End to end walking print
US6851105B1 (en)*1999-10-052005-02-01Borland Software CorporationMethod and system for generating, applying, and defining a pattern
WO2001025860A1 (en)*1999-10-052001-04-12Togethersoft CorporationMethod for generating and defining a pattern
US7062696B2 (en)2000-01-142006-06-13National SemiconductorAlgorithmic test pattern generator, with built-in-self-test (BIST) capabilities, for functional testing of a circuit
WO2001051940A1 (en)*2000-01-142001-07-19Parthus Technologies PlcAn algorithmic test pattern generator, with built-in-self-test (bist) capabilities, for functional testing of a circuit
US20010034866A1 (en)*2000-01-142001-10-25Barry John LeeAlgorithmic test pattern generator, with built-in-self-test (BIST) capabilities, for functional testing of a circuit
US8667161B2 (en)2000-09-072014-03-04Black Hills MediaPersonal broadcast server system for providing a customized broadcast
US7840691B1 (en)2000-09-072010-11-23Zamora Radio, LlcPersonal broadcast server system for providing a customized broadcast
US9268775B1 (en)2000-09-072016-02-23Black Hills Media, LlcMethod and system for providing an audio element cache in a customized personal radio broadcast
US7058694B1 (en)*2000-09-072006-06-06Clix Network, Inc.Method for comparing two trinary logic representations in the process of customizing radio broadcasting
US9369101B2 (en)2000-11-082016-06-14Black Hills Media, LlcUnitary electronic speaker device for receiving an assignment of a playlist from a home personal computer and rendering the playlist
US10067739B2 (en)2000-11-082018-09-04Black Hills Media, LlcUnitary electronic speaker device for receiving digital audio data and rendering the digital audio data
US6785677B1 (en)*2001-05-022004-08-31Unisys CorporationMethod for execution of query to search strings of characters that match pattern with a target string utilizing bit vector
US6826639B2 (en)*2001-07-272004-11-30Computer Access Technology CorporationHierarchical display of multilevel protocol for communication data
US20030028693A1 (en)*2001-07-272003-02-06Michael PasumanskyHierarchical display of multilevel protocol for communication data
US20030065500A1 (en)*2001-10-012003-04-03Holaday David A.Reloadable word recognizer for logic analyzer
US7272528B2 (en)*2001-10-012007-09-18Tektronix, Inc.Reloadable word recognizer for logic analyzer
US7401326B1 (en)2001-10-242008-07-15Finisar CorporationCompiling protocol analysis code using protocol database
US6931574B1 (en)2001-10-242005-08-16Finisar CorporationSystems and methods for interpreting communications packets
US20030154194A1 (en)*2001-12-282003-08-14Jonas Jeffrey JamesReal time data warehousing
US8615521B2 (en)2001-12-282013-12-24International Business Machines CorporationReal time data warehousing
US20060010119A1 (en)*2001-12-282006-01-12International Business Machines CorporationReal time data warehousing
US8452787B2 (en)2001-12-282013-05-28International Business Machines CorporationReal time data warehousing
US7543015B2 (en)*2002-01-162009-06-02Xerox CorporationSymmetrical structural pattern matching
US20030191847A1 (en)*2002-01-162003-10-09Xerox CorporationSymmetrical structural pattern matching
US7206831B1 (en)2002-08-262007-04-17Finisar CorporationOn card programmable filtering and searching for captured network data
US7900052B2 (en)2002-11-062011-03-01International Business Machines CorporationConfidential data sharing and anonymous entity resolution
US8620937B2 (en)2002-12-272013-12-31International Business Machines CorporationReal time data warehousing
US20070038664A1 (en)*2002-12-272007-02-15Jonas Jeffrey JReal time data warehousing
US7702919B2 (en)2002-12-312010-04-20International Business Machines CorporationAuthorized anonymous authentication
US20050060556A1 (en)*2002-12-312005-03-17Jonas Jeffrey J.Authorized anonymous authentication
US8352746B2 (en)2002-12-312013-01-08International Business Machines CorporationAuthorized anonymous authentication
US7415596B2 (en)2003-01-242008-08-19Gigafin Networks, Inc.Parser table/production rule table configuration using CAM and SRAM
WO2004068271A3 (en)*2003-01-242005-02-10Mistletoe Technologies IncA reconfigurable semantic processor
US20040148415A1 (en)*2003-01-242004-07-29Mistletoe Technologies, Inc.Reconfigurable semantic processor
US20060259508A1 (en)*2003-01-242006-11-16Mistletoe Technologies, Inc.Method and apparatus for detecting semantic elements using a push down automaton
US20050281281A1 (en)*2003-01-242005-12-22Rajesh NairPort input buffer architecture
US7478223B2 (en)2003-01-242009-01-13Gigafin Networks, Inc.Symbol parsing architecture
US20070083858A1 (en)*2003-01-242007-04-12Mistletoe Technologies, Inc.Reconfigurable semantic processor
US7130987B2 (en)2003-01-242006-10-31Mistletoe Technologies, Inc.Reconfigurable semantic processor
US20060010193A1 (en)*2003-01-242006-01-12Mistletoe Technologies, Inc.Parser table/production rule table configuration using CAM and SRAM
US20060168309A1 (en)*2003-01-242006-07-27Mistletoe Technologies, Inc.Symbol parsing architecture
US20040162802A1 (en)*2003-02-072004-08-19Stokley-Van Camp, Inc.Data set comparison and net change processing
US7200602B2 (en)2003-02-072007-04-03International Business Machines CorporationData set comparison and net change processing
US20050066182A1 (en)*2003-03-242005-03-24Systems Research & DevelopmentSecure coordinate identification method, system and program
US7962757B2 (en)2003-03-242011-06-14International Business Machines CorporationSecure coordinate identification method, system and program
US8428196B2 (en)2003-04-092013-04-23Rambus Inc.Equalizing receiver
US20050111585A1 (en)*2003-04-092005-05-26Rambus Inc.Partial response receiver
US7397848B2 (en)2003-04-092008-07-08Rambus Inc.Partial response receiver
US7412016B2 (en)2003-04-092008-08-12Rambus Inc.Data-level clock recovery
US10764094B2 (en)2003-04-092020-09-01Rambus Inc.Partial response receiver
US9917708B2 (en)2003-04-092018-03-13Rambus Inc.Partial response receiver
US7433397B2 (en)2003-04-092008-10-07Rambus Inc.Partial response receiver with clock data recovery
US10225111B2 (en)2003-04-092019-03-05Rambus Inc.Partial response receiver
US9025678B2 (en)2003-04-092015-05-05Rambus Inc.Partial response receiver
US20060280272A1 (en)*2003-04-092006-12-14Stojanovic Vladimir MData-level clock recovery
US20060233291A1 (en)*2003-04-092006-10-19Garlepp Bruno WPartial response receiver with clock data recovery
US20040203559A1 (en)*2003-04-092004-10-14Stojanovic Vladimir M.Partial response receiver
US20090175326A1 (en)*2003-04-092009-07-09Stojanovic Vladimir MPartial response receiver
US7715509B2 (en)2003-04-092010-05-11Rambus Inc.Partial response receiver
US11502878B2 (en)2003-04-092022-11-15Rambus Inc.Partial response receiver
US7715501B2 (en)2003-04-092010-05-11Rambus, Inc.Partial response receiver
US9407473B2 (en)2003-04-092016-08-02Rambus Inc.Partial response receiver
US8994398B2 (en)2003-12-172015-03-31Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US9000803B2 (en)2003-12-172015-04-07Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US8564328B2 (en)2003-12-172013-10-22Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US7715471B2 (en)2003-12-172010-05-11Rambus, Inc.Signaling system with selectively-inhibited adaptive equalization
US11233678B2 (en)2003-12-172022-01-25Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US11706061B2 (en)2003-12-172023-07-18Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US20050157780A1 (en)*2003-12-172005-07-21Werner Carl W.Signaling system with selectively-inhibited adaptive equalization
US9705710B2 (en)2003-12-172017-07-11Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US10411923B2 (en)2003-12-172019-09-10Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US10771295B2 (en)2003-12-172020-09-08Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US9287909B2 (en)2003-12-172016-03-15Rambus Inc.High speed signaling system with adaptive transmit pre-emphasis
US8307339B2 (en)*2004-03-152012-11-06Ramco Systems LimitedSoftware reuse in model based software systems
US20050203942A1 (en)*2004-03-152005-09-15Ramco Systems LimitedUser interfaces and software reuse in model based software systems
US8572563B2 (en)*2004-03-152013-10-29Ramco Systems LimitedUser interfaces and software reuse in model based software systems
US20090024657A1 (en)*2004-03-152009-01-22Ramco Systems LimitedUser interfaces and software reuse in model based software systems
US9516370B1 (en)2004-05-052016-12-06Black Hills Media, LlcMethod, device, and system for directing a wireless speaker from a mobile phone to receive and render a playlist from a content server on the internet
US9554405B2 (en)2004-05-052017-01-24Black Hills Media, LlcWireless speaker for receiving from a mobile phone directions to receive and render a playlist from a content server on the internet
US7398356B2 (en)2004-07-222008-07-08Mistletoe Technologies, Inc.Contextual memory interface for network processor
US7424571B2 (en)2004-07-272008-09-09Gigafin Networks, Inc.Array machine context data memory
US7451268B2 (en)2004-07-272008-11-11Gigafin Networks, Inc.Arbiter for array machine context data memory
US20060168324A1 (en)*2004-07-272006-07-27Mistletoe Technologies, Inc.Arbiter for array machine context data memory
US20060026378A1 (en)*2004-07-272006-02-02Somsubhra SikdarArray machine context data memory
US20060026377A1 (en)*2004-07-272006-02-02Somsubhra SikdarLookup interface for array machine context data memory
US20060031555A1 (en)*2004-08-052006-02-09Somsubhra SikdarData context switching in a semantic processor
US20060104518A1 (en)*2004-11-152006-05-18Tzu-Jian YangSystem and method of string matching for uniform data classification
US7574742B2 (en)2004-11-152009-08-11Industrial Technology Research InstituteSystem and method of string matching for uniform data classification
US7359895B2 (en)2004-11-182008-04-15Industrial Technology Research InstituteSpiral string matching method
US20060106773A1 (en)*2004-11-182006-05-18Shu-Hsin ChangSpiral string matching method
US20070027991A1 (en)*2005-07-142007-02-01Mistletoe Technologies, Inc.TCP isolation with semantic processor TCP state machine
US20070016906A1 (en)*2005-07-182007-01-18Mistletoe Technologies, Inc.Efficient hardware allocation of processes to processors
US20070043871A1 (en)*2005-07-192007-02-22Mistletoe Technologies, Inc.Debug non-terminal symbol for parser error handling
US20070019661A1 (en)*2005-07-202007-01-25Mistletoe Technologies, Inc.Packet output buffer for semantic processor
US20070022225A1 (en)*2005-07-212007-01-25Mistletoe Technologies, Inc.Memory DMA interface with checksum
US20070022275A1 (en)*2005-07-252007-01-25Mistletoe Technologies, Inc.Processor cluster implementing conditional instruction skip
US20080057913A1 (en)*2006-06-162008-03-06Airdefense, Inc.Systems and Methods for Wireless Network Content Filtering
US7970013B2 (en)*2006-06-162011-06-28Airdefense, Inc.Systems and methods for wireless network content filtering
US20080016062A1 (en)*2006-06-302008-01-17Drescher Keith ARequest-response trigger generation in link-connected computing systems
US20080013464A1 (en)*2006-07-112008-01-17Broadweb CorporationMethod and system for blocking the specific function of the P2P application in the network
US8281392B2 (en)2006-08-112012-10-02Airdefense, Inc.Methods and systems for wired equivalent privacy and Wi-Fi protected access protection
US7710892B2 (en)2006-09-082010-05-04Dominic CoupalSmart match search method for captured data frames
US20080062989A1 (en)*2006-09-082008-03-13Dominic CoupalSmart match search method for captured data frames
US8204831B2 (en)2006-11-132012-06-19International Business Machines CorporationPost-anonymous fuzzy comparisons without the use of pre-anonymization variants
US20100107180A1 (en)*2007-06-062010-04-29Andreas UlrichMethod for providing reference data for a diagnosis of a system dependent on an event trace
US8505035B2 (en)*2007-06-062013-08-06Siemens AktiengesellschaftMethod for providing reference data for a diagnosis of a system dependent on an event trace
US9311364B2 (en)2007-12-202016-04-12Porto Technology, LlcSystem and method for generating dynamically filtered content results, including for audio and/or video channels
US9015147B2 (en)2007-12-202015-04-21Porto Technology, LlcSystem and method for generating dynamically filtered content results, including for audio and/or video channels
US8983937B2 (en)2007-12-212015-03-17Lemi Technology, LlcTunersphere
US9552428B2 (en)2007-12-212017-01-24Lemi Technology, LlcSystem for generating media recommendations in a distributed environment based on seed information
US20090164429A1 (en)*2007-12-212009-06-25Concert Technology CorporationTunersphere
US9275138B2 (en)2007-12-212016-03-01Lemi Technology, LlcSystem for generating media recommendations in a distributed environment based on seed information
US8577874B2 (en)2007-12-212013-11-05Lemi Technology, LlcTunersphere
US8316015B2 (en)2007-12-212012-11-20Lemi Technology, LlcTunersphere
US8874554B2 (en)2007-12-212014-10-28Lemi Technology, LlcTurnersphere
US8117193B2 (en)2007-12-212012-02-14Lemi Technology, LlcTunersphere
US20100017455A1 (en)*2008-07-172010-01-21Lemi Technology, LlcCustomized media broadcast for a broadcast group
US8494899B2 (en)2008-12-022013-07-23Lemi Technology, LlcDynamic talk radio program scheduling
US8977770B2 (en)2009-04-292015-03-10Lemi Technolgy, LLCSkip feature for a broadcast or multicast media station
US8806047B2 (en)2009-04-292014-08-12Lemi Technology, LlcSkip feature for a broadcast or multicast media station
US20100280835A1 (en)*2009-04-292010-11-04Lemi Technology, LlcDynamic radio client
US8463930B2 (en)2009-04-292013-06-11Lemi Technology, LlcSkip feature for a broadcast or multicast media station
US9432423B2 (en)2009-04-292016-08-30Lemi Technology, LlcSkip feature for a broadcast or multicast media station
US9268881B2 (en)2012-10-192016-02-23Intel CorporationChild state pre-fetch in NFAs
US10133982B2 (en)2012-11-192018-11-20Intel CorporationComplex NFA state matching method that matches input symbols against character classes (CCLS), and compares sequence CCLS in parallel
US9665664B2 (en)2012-11-262017-05-30Intel CorporationDFA-NFA hybrid
US9304768B2 (en)2012-12-182016-04-05Intel CorporationCache prefetch for deterministic finite automaton instructions
US9268570B2 (en)*2013-01-232016-02-23Intel CorporationDFA compression and execution
US20140208076A1 (en)*2013-01-232014-07-24Lsi CorporationDfa compression and execution
US20140258779A1 (en)*2013-03-072014-09-11Microsoft CorporationCommunication Analyzer
US9432278B2 (en)*2013-03-072016-08-30Microsoft Technology Licensing, LlcSimulation of interactions between network endpoints
WO2015016831A1 (en)*2013-07-302015-02-05Hewlett-Packard Development Company, L.P.Process partial response channel

Also Published As

Publication numberPublication date
CA2226611A1 (en)1998-12-27
CA2226611C (en)2006-07-11

Similar Documents

PublicationPublication DateTitle
US6122757A (en)Code generating system for improved pattern matching in a protocol analyzer
US7464254B2 (en)Programmable processor apparatus integrating dedicated search registers and dedicated state machine registers with associated execution hardware to support rapid application of rulesets to data
US7185081B1 (en)Method and apparatus for programmable lexical packet classifier
DE60318722T2 (en) A PROGRAMMABLE RULE PROCESSING DEVICE FOR HIGH-SPEED CONTEXT SEARCHING AND RECOGNITION OF PATTERNS IN DATA
US7188168B1 (en)Method and apparatus for grammatical packet classifier
US5321837A (en)Event handling mechanism having a process and an action association process
US5608662A (en)Packet filter engine
US7254632B2 (en)Apparatus and method for pattern matching in text based protocol
EP1581841B1 (en)Methods and apparatuses for evaluation of regular expressions of arbitrary size
US7411418B2 (en)Efficient representation of state transition tables
TW200301429A (en)A method of improving the lookup performance of tree-type knowledge base searches
US7672941B2 (en)Pattern matching using deterministic finite automata and organization of such automata
US20040100956A1 (en)Packet search device, packet processing search method used for the same, and program for the same
Benson et al.Multiplicative programming problems: analysis and efficient point search heuristic
CA2281103C (en)N-way processing of bit strings in a dataflow architecture
Law et al.An O (log n) randomized resource discovery algorithm
CN117332374B (en)AI chip calculation and communication fusion method and device and AI chip
US5809035A (en)Method and apparatus to apply prioritization policy in electronic systems
US5872642A (en)System for transmitting information over a data communications network
US20020100026A1 (en)System and method for generating machine-language code from readable text code for information filtering
JPH06290021A (en)Method for compressing source program
US20250322204A1 (en)Methods and devices for programming a state machine engine
US5771395A (en)System for processing information from scanned documents using event driven interface with patterns loaded in RAM and with address generator for addressing bit patterns
Govindarajan et al.Dynamic bounding of successor force computations in the force directed list scheduling algorithm
JP3443356B2 (en) Packet classifier

Legal Events

DateCodeTitleDescription
ASAssignment

Owner name:HEWLETT-PACKARD COMPANY, CALIFORNIA

Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:KELLEY, JEFFREY V.;REEL/FRAME:008789/0239

Effective date:19970903

ASAssignment

Owner name:HEWLETT-PACKARD COMPANY, COLORADO

Free format text:MERGER;ASSIGNOR:HEWLETT-PACKARD COMPANY;REEL/FRAME:010759/0049

Effective date:19980520

ASAssignment

Owner name:AGILENT TECHNOLOGIES INC, CALIFORNIA

Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:HEWLETT-PACKARD COMPANY;REEL/FRAME:010977/0540

Effective date:19991101

STCFInformation on status: patent grant

Free format text:PATENTED CASE

FEPPFee payment procedure

Free format text:PAYOR NUMBER ASSIGNED (ORIGINAL EVENT CODE: ASPN); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY

FPAYFee payment

Year of fee payment:4

FPAYFee payment

Year of fee payment:8

ASAssignment

Owner name:IXIA, CALIFORNIA

Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:AGILENT TECHNOLOGIES, INC.;REEL/FRAME:023574/0675

Effective date:20091030

FPAYFee payment

Year of fee payment:12

ASAssignment

Owner name:BANK OF AMERICA, N.A., AS ADMINISTRATIVE AGENT, TE

Free format text:SECURITY AGREEMENT;ASSIGNOR:IXIA;REEL/FRAME:029698/0060

Effective date:20121221

ASAssignment

Owner name:SILICON VALLEY BANK, AS SUCCESSOR ADMINISTRATIVE A

Free format text:NOTICE OF SUBSTITUTION OF ADMINISTRATIVE AGENT;ASSIGNOR:BANK OF AMERICA, N.A., RESIGNING ADMINISTRATIVE AGENT;REEL/FRAME:034870/0598

Effective date:20150130

ASAssignment

Owner name:IXIA, CALIFORNIA

Free format text:RELEASE BY SECURED PARTY;ASSIGNOR:SILICON VALLEY BANK, AS SUCCESSOR ADMINISTRATIVE AGENT;REEL/FRAME:042335/0465

Effective date:20170417

ASAssignment

Owner name:KEYSIGHT TECHNOLOGIES SINGAPORE (HOLDINGS) PTE. LTD., SINGAPORE

Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:IXIA;REEL/FRAME:044222/0695

Effective date:20170930

Owner name:KEYSIGHT TECHNOLOGIES SINGAPORE (HOLDINGS) PTE. LT

Free format text:ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNOR:IXIA;REEL/FRAME:044222/0695

Effective date:20170930


[8]ページ先頭

©2009-2025 Movatter.jp