Jump to content

Maximal munch

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by EagleFan (talk | contribs) at 00:49, 16 May 2010 (Repairing link to disambiguation page - You can help!). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

In computer programming and computer science, "maximal munch" or "longest match" is the principle that when creating some construct, as much of the available input as possible should be consumed. It is similar, though not entirely identical, to the concept of a greedy algorithm.

Application

For instance, the lexical syntax of many programming languages requires that tokens be built from the maximum possible number of characters from the input stream. This is done to resolve the problem of inherent ambiguity in commonly used regular expressions such as [a-z]+ (one or more lower-case letters).[1]

The term has also been used in the field of compilers to describe a process of "tiling" — determining how a structured tree representing a program in an intermediate language should be converted into linear machine code. An entire subtree might be converted into just one machine instruction, and the problem is how to split the tree into non-overlapping "tiles," each representing one machine instruction. An effective strategy is simply to make a tile of the largest subtree possible at any given point, which is called "maximal munch."[2]

Drawbacks

In some situations, "maximal munch" leads to undesirable or unintuitive outcomes. For example, in C++, the "angle bracket" characters < and > are used in the syntax for template specialization; but two > characters in a row are interpreted as the right-shift operator >>.[3] Therefore, the following C++ code will produce a parse error, because the right-shift operator token is encountered instead of two right-angle-bracket tokens.

    // This is not valid syntax in standard C++.
    std::vector<std::vector<int>> incorrect;
    // Adding whitespace between the brackets yields the correct parse.
    std::vector<std::vector<int> > correct;

The upcoming C++0x standard is expected to amend the grammar so that a right-shift token is accepted as synonymous with a pair of right-angle brackets, as is done in Java, which complicates the grammar but allows the continued use of the maximal munch principle.

Alternatives

Programming languages researchers have also responded by replacing or supplementing the principle of maximal munch with other lexical disambiguation tactics. One approach is to utilize "follow restrictions," which instead of directly taking the longest match will put some restrictions on what characters can follow a valid match. For example, stipulating that strings matching [a-z]+ cannot be followed by an alphabetic character achieves the same effect as maximal munch with that regular expression.[4] Another approach is to keep the principle of maximal munch but make it subordinate to some other principle, such as context (e.g., the right-shift token in C++ or Java would not be matched in the context of a template expression, where it is syntactically invalid).[5]

References

  1. ^ Aho et al., 168.
  2. ^ Page, 470.
  3. ^ Vandevoorde.
  4. ^ Van den Brand et al., 26.
  5. ^ Van Wyk et al., 63.

Bibliography

  • Aho, Alfred V.; Lam, Monica S.; Sethi, Ravi; Ullman, Jeffrey D. (2007). Compilers: Principles, Techniques & Tools (2nd ed.). Boston: Addison-Wesley. ISBN 978-0-321-48681-1. {{cite book}}: Check |isbn= value: checksum (help)
  • Page, Daniel (2009). Practical Introduction to Computer Architecture. London: Springer. ISBN 978-1-84882-255-9.
  • Van den Brand, Mark G.J.; Scheerder, Jeroen; Vinju, Jurgen J.; Visser, Eelco (2002). "Disambiguation Filters for Scannerless Generalized LR Parsers". Lecture Notes in Computer Science. 2304/2002. Berlin/Heidelberg: Springer: 21–44. doi:10.1007/3-540-45937-5_12. ISSN 0302-9743.
  • Vandevoorde, Daveed (14 January 2005). "Right Angle Brackets". Retrieved 31 March 2010.
  • Van Wyk, Eric; Schwerdfeger, August (2007). "Context-Aware Scanning for Parsing Extensible Languages". GPCE '07: Proceedings of the 6th international conference on Generative programming and component engineering. New York: ACM: 63–72. doi:http://doi.acm.org/10.1145/1289971.1289983. {{cite journal}}: Check |doi= value (help); External link in |doi= (help)