2 @setfilename ../../info/semantic
3 @set TITLE Semantic Manual
4 @set AUTHOR Eric M. Ludlam, David Ponce, and Richard Y. Kim
5 @settitle @value{TITLE}
7 @c *************************************************************************
9 @c *************************************************************************
11 @c Merge all indexes into a single index for now.
12 @c We can always separate them later into two or more as needed.
19 @c @footnotestyle separate
25 This manual documents the Semantic library and utilities.
27 Copyright @copyright{} 1999-2005, 2007, 2009-2012 Free Software Foundation, Inc.
30 Permission is granted to copy, distribute and/or modify this document
31 under the terms of the GNU Free Documentation License, Version 1.3 or
32 any later version published by the Free Software Foundation; with no
33 Invariant Sections, with the Front-Cover texts being ``A GNU Manual,''
34 and with the Back-Cover Texts as in (a) below. A copy of the license
35 is included in the section entitled ``GNU Free Documentation License.''
37 (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and
38 modify this GNU manual. Buying copies from the FSF supports it in
39 developing GNU and promoting software freedom.''
43 @dircategory Emacs misc features
45 * Semantic: (semantic). Source code parser library and utilities.
49 @center @titlefont{Semantic}
51 @center by @value{AUTHOR}
64 @macro obsolete{old,new}
66 @strong{Compatibility}:
67 @code{\new\} introduced in @semantic{} version 2.0 supersedes
68 @code{\old\} which is now obsolete.
71 @c *************************************************************************
73 @c *************************************************************************
79 @semantic{} is a suite of Emacs libraries and utilities for parsing
80 source code. At its core is a lexical analyzer and two parser
81 generators (@code{bovinator} and @code{wisent}) written in Emacs Lisp.
82 @semantic{} provides a variety of tools for making use of the parser
83 output, including user commands for code navigation and completion, as
84 well as enhancements for imenu, speedbar, whichfunc, eldoc,
85 hippie-expand, and several other parts of Emacs.
87 To send bug reports, or participate in discussions about semantic,
88 use the mailing list cedet-semantic@@sourceforge.net via the URL:
89 @url{http://lists.sourceforge.net/lists/listinfo/cedet-semantic}
98 * Semantic Internals::
100 * GNU Free Documentation License::
105 @chapter Introduction
107 This chapter gives an overview of @semantic{} and its goals.
109 Ordinarily, Emacs uses regular expressions (and syntax tables) to
110 analyze source code for purposes such as syntax highlighting. This
111 approach, though simple and efficient, has its limitations: roughly
112 speaking, it only ``guesses'' the meaning of each piece of source code
113 in the context of the programming language, instead of rigorously
114 ``understanding'' it.
116 @semantic{} provides a new infrastructure to analyze source code using
117 @dfn{parsers} instead of regular expressions. It contains two
118 built-in parser generators (an @acronym{LL} generator named
119 @code{Bovine} and an @acronym{LALR} generator named @code{Wisent},
120 both written in Emacs Lisp), and parsers for several common
121 programming languages. It can also make use of @dfn{external
122 parsers}---programs such as GNU Global and GNU IDUtils.
124 @semantic{} provides a uniform, language-independent @acronym{API} for
125 accessing the parser output. This output can be used by other Emacs
126 Lisp programs to implement ``syntax-aware'' behavior. @semantic{}
127 itself includes several such utilities, including user-level Emacs
128 commands for navigating, searching, and completing source code.
130 The following diagram illustrates the structure of the @semantic{}
135 The words in all-capital are those that @semantic{} itself provides.
136 Others are current or future languages or applications that are not
137 distributed along with @semantic{}.
146 +---------------+ +--------+ +--------+
147 C --->| C PARSER |--->| | | |
148 +---------------+ | | | |
149 +---------------+ | COMMON | | COMMON |<--- SPEEDBAR
150 Java --->| JAVA PARSER |--->| PARSE | | |
151 +---------------+ | TREE | | PARSE |<--- SEMANTICDB
152 +---------------+ | FORMAT | | API |
153 Scheme --->| SCHEME PARSER |--->| | | |<--- ecb
154 +---------------+ | | | |
155 +---------------+ | | | |
156 Texinfo --->| TEXI. PARSER |--->| | | |
157 +---------------+ | | | |
161 +---------------+ | | | |
162 Lang. Y --->| Y Parser |--->| | | |<--- app. ?
163 +---------------+ | | | |
164 +---------------+ | | | |<--- app. ?
165 Lang. Z --->| Z Parser |--->| | | |
166 +---------------+ +--------+ +--------+
170 * Semantic Components::
173 @node Semantic Components
174 @section Semantic Components
176 In this section, we provide a more detailed description of the major
177 components of @semantic{}, and how they interact with one another.
179 The first step in parsing a source code file is to break it up into
180 its fundamental components. This step is called lexical analysis:
183 syntax table, keywords list, and options
187 input file ----> Lexer ----> token stream
191 The output of the lexical analyzer is a list of tokens that make up
192 the file. The next step is the actual parsing, shown below:
198 token stream ---> Parser ----> parse tree
202 The end result, the parse tree, is @semantic{}'s internal
203 representation of the language grammar. @semantic{} provides an
204 @acronym{API} for Emacs Lisp programs to access the parse tree.
206 Parsing large files can take several seconds or more. By default,
207 @semantic{} automatically caches parse trees by saving them in your
208 @file{.emacs.d} directory. When you revisit a previously-parsed file,
209 the parse tree is automatically reloaded from this cache, to save
210 time. @xref{SemanticDB}.
213 @chapter Using Semantic
215 @include sem-user.texi
217 @node Semantic Internals
218 @chapter Semantic Internals
220 This chapter provides an overview of the internals of @semantic{}.
221 This information is usually not needed by application developers or
222 grammar developers; it is useful mostly for the hackers who would like
223 to learn more about how @semantic{} works.
226 * Parser code :: Code used for the parsers
227 * Tag handling :: Code used for manipulating tags
228 * Semanticdb Internals :: Code used in the semantic database
229 * Analyzer Internals :: Code used in the code analyzer
230 * Tools :: Code used in user tools
231 * Tests :: Code used for testing
237 @semantic{} parsing code is spread across a range of files.
241 The core infrastructure sets up buffers for parsing, and has all the
242 core parsing routines. Most parsing routines are overloadable, so the
243 actual implementation may be somewhere else.
245 @item semantic-edit.el
246 Incremental reparse based on user edits.
248 @item semantic-grammar.el
249 @itemx semantic-grammar.wy
250 Parser for the different grammar languages, and a major mode for
251 editing grammars in Emacs.
253 @item semantic-lex.el
254 Infrastructure for implementing lexical analyzers. Provides macros
255 for creating individual analyzers for specific features, and a way to
256 combine them together.
258 @item semantic-lex-spp.el
259 Infrastructure for a lexical symbolic preprocessor. This was written
260 to implement the C preprocessor, but could be used for other lexical
263 @item bovine/bovine-grammar.el
264 @itemx bovine/bovine-grammar-macros.el
265 @itemx bovine/semantic-bovine.el
266 The ``bovine'' grammar. This is the first grammar mode written for
267 @semantic{} and is useful for simple creating simple parsers.
269 @item wisent/wisent.el
270 @itemx wisent/bison-wisent.el
271 @itemx wisent/semantic-wisent.el
272 @itemx wisent/semantic-debug-grammar.el
273 A port of bison to Emacs. This infrastructure lets you create LALR
274 based parsers for @semantic{}.
276 @item semantic-ast.el
277 Manage Abstract Syntax Trees for parsers.
279 @item semantic-debug.el
280 Infrastructure for debugging grammars.
282 @item semantic-util.el
283 Various utilities for manipulating tags, such as describing the tag
284 under point, adding labels, and the all important
285 @code{semantic-something-to-tag-table}.
290 @section Tag handling
292 A tag represents an individual item found in a buffer, such as a
293 function or variable. Tag handling is handled in several source
297 @item semantic-tag.el
298 Basic tag creation, queries, cloning, binding, and unbinding.
300 @item semantic-tag-write.el
301 Write a tag or tag list to a stream. These routines are used by
302 @file{semanticdb-file.el} when saving a list of tags.
304 @item semantic-tag-file.el
305 Files associated with tags. Goto-tag, file for include, and file for
308 @item semantic-tag-ls.el
309 Language dependent features of a tag, such as parent calculation, slot
310 protection, and other states like abstract, virtual, static, and leaf.
312 @item semantic-dep.el
313 Include file handling. Contains the include path concepts, and
314 routines for looking up file names in the include path.
316 @item semantic-format.el
317 Convert a tag into a nicely formatted and colored string. Use
318 @code{semantic-test-all-format-tag-functions} to test different output
321 @item semantic-find.el
322 Find tags matching different conditions in a tag table.
323 These routines are used by @file{semanticdb-find.el} once the database
324 has been converted into a simpler tag table.
326 @item semantic-sort.el
327 Sorting lists of tags in different ways. Includes sorting a plain
328 list of tags forward or backward. Includes binning tags based on
329 attributes (bucketize), and tag adoption for multiple references to
332 @item semantic-doc.el
333 Capture documentation comments from near a tag.
337 @node Semanticdb Internals
338 @section Semanticdb Internals
340 @acronym{Semanticdb} complexity is certainly an issue. It is a rather
341 hairy problem to try and solve.
345 Defines a @dfn{database} and a @dfn{table} base class. You can
346 instantiate these classes, and use them, but they are not persistent.
348 This file also provides support for @code{semanticdb-minor-mode},
349 which automatically associates files with tables in databases so that
350 tags are @emph{saved} while a buffer is not in memory.
352 The database and tables both also provide applicable cache information,
353 and cache flushing system. The semanticdb search routines use caches
354 to save datastructures that are complex to calculate.
356 Lastly, it provides the concept of @dfn{project root}. It is a system
357 by which a file can be associated with the root of a project, so if
358 you have a tree of directories and source files, it can find the root,
359 and allow a tag-search to span all available databases in that
362 @item semanticdb-file.el
363 Provides a subclass of the basic table so that it can be saved to
364 disk. Implements all the code needed to unbind/rebind tags to a
365 buffer and writing them to a file.
367 @item semanticdb-el.el
368 Implements a special kind of @dfn{system} database that uses Emacs
369 internals to perform queries.
371 @item semanticdb-ebrowse.el
372 Implements a system database that uses Ebrowse to parse files into a
373 table that can be queried for tag names. Successful tag hits during a
374 find causes @semantic{} to pick up and parse the reference files to
375 get the full details.
377 @item semanticdb-find.el
378 Infrastructure for searching groups @semantic{} databases, and dealing
379 with the search results format.
381 @item semanticdb-ref.el
382 Tracks crossreferences. Cross references are needed when buffer is
383 reparsed, and must alert other tables that any dependent caches may
384 need to be flushed. References are in the form of include files.
388 @node Analyzer Internals
389 @section Analyzer Internals
391 The @semantic{} analyzer is a complex engine which has been broken
392 down across several modules. When the @semantic{} analyzer fails,
393 start with @code{semantic-analyze-debug-assist}, then dive into some
397 @item semantic-analyze.el
398 The core analyzer for defining the @dfn{current context}. The
399 current context is an object that contains references to aspects of
400 the local context including the current prefix, and a tag list
401 defining what the prefix means.
403 @item semantic-analyze-complete.el
404 Provides @code{semantic-analyze-possible-completions}.
406 @item semantic-analyze-debug.el
407 The analyzer debugger. Useful when attempting to get everything
410 @item semantic-analyze-fcn.el
411 Various support functions needed by the analyzer.
413 @item semantic-ctxt.el
414 Local context parser. Contains overloadable functions used to move
415 around through different scopes, get local variables, and collect the
416 current prefix used when doing completion.
418 @item semantic-scope.el
419 Calculate @dfn{scope} for a location in a buffer. The scope includes
420 local variables, and tag lists in scope for various reasons, such as
421 C++ using statements.
423 @item semanticdb-typecache.el
424 The typecache is part of @code{semanticdb}, but is used primarily by
425 the analyzer to look up datatypes and complex names. The typecache is
426 bound across source files and builds a master lookup table for data
430 Interactive Analyzer functions. Simple routines that do completion or
431 lookups based on the results from the Analyzer. These routines are
432 meant as examples for application writers, but are quite useful as
435 @item semantic-ia-sb.el
436 Speedbar support for the analyzer, displaying context info, and
444 These files contain various tools a user can use.
447 @item semantic-idle.el
448 Idle scheduler for @semantic{}. Manages reparsing buffers after
449 edits, and large work tasks in idle time. Includes modes for showing
450 summary help and pop-up completion.
453 The @semantic{} navigator. Provides many ways to move through a
454 buffer based on the active tag table.
456 @item semantic-decorate.el
457 A minor mode for decorating tags based on details from the parser.
458 Includes overlines for functions, or coloring class fields based on
461 @item semantic-decorate-include.el
462 A decoration mode for include files, which assists users in setting up
463 parsing for their includes.
465 @item semantic-complete.el
466 Advanced completion prompts for reading tag names in the minibuffer, or
469 @item semantic-imenu.el
470 Imenu support for using @semantic{} tags in imenu.
472 @item semantic-mru-bookmark.el
473 Automatic bookmarking based on tags. Jump to locations you've been
474 before based on tag name.
477 Support for @semantic{} tag usage in Speedbar.
479 @item semantic-util-modes.el
480 A bunch of small minor-modes that exposes aspects of the semantic
481 parser state. Includes @code{semantic-stickyfunc-mode}.
484 @itemx document-vars.el
485 Create an update comments for tags.
487 @item semantic-adebug.el
488 Extensions of @file{data-debug.el} for @semantic{}.
490 @item semantic-chart.el
491 Draw some charts from stats generated from parsing.
494 @item semantic-elp.el
495 Profiler for helping to optimize the @semantic{} analyzer.
505 @item semantic-utest.el
506 Basic testing of parsing and incremental parsing for most supported
509 @item semantic-ia-utest.el
510 Test the semantic analyzer's ability to provide smart completions.
512 @item semantic-utest-c.el
513 Tests for the C parser's lexical pre-processor.
515 @item semantic-regtest.el
516 Regression tests from the older Semantic 1.x API.
525 In semantic 1.4, a BNF file represented ``Bovine Normal Form'', the
526 grammar file used for the 1.4 parser generator. This was a play on
527 Backus-Naur Form which proved too confusing.
530 A verb representing what happens when a bovine parser parses a file.
533 In a bovine, or LL parser, the bovine lambda is a function to execute
534 when a specific set of match rules has succeeded in matching text from
538 A parser using the bovine parser generator. It is an LL parser
539 suitable for small simple languages.
546 A program which converts text into a stream of tokens by analyzing
547 them lexically. Lexers will commonly create strings, symbols,
548 keywords and punctuation, and strip whitespaces and comments.
553 A nonterminal symbol or simply a nonterminal stands for a class of
554 syntactically equivalent groupings. A nonterminal symbol name is used
555 in writing grammar rules.
558 Some functions are defined via @code{define-overload}.
559 These can be overloaded via ....
562 A program that converts @b{tokens} to @b{tags}.
565 A tag is a representation of some entity in a language file, such as a
566 function, variable, or include statement. In semantic, the word tag is
567 used the same way it is used for the etags or ctags tools.
569 A tag is usually bound to a buffer region via overlay, or it just
570 specifies character locations in a file.
573 A single atomic item returned from a lexer. It represents some set
574 of characters found in a buffer.
577 The output of the lexer as well as the input to the parser.
580 A parser using the wisent parser generator. It is a port of bison to
581 Emacs Lisp. It is an LALR parser suitable for complex languages.
585 @node GNU Free Documentation License
586 @appendix GNU Free Documentation License
587 @include doclicense.texi
600 @c Following comments are for the benefit of ispell.
602 @c LocalWords: alist API APIs arg argc args argv asis assoc autoload Wisent
603 @c LocalWords: backquote bnf bovinate bovinates LALR
604 @c LocalWords: bovinating bovination bovinator bucketize
605 @c LocalWords: cb cdr charquote checkcache cindex CLOS
606 @c LocalWords: concat concocting const constantness ctxt Decl defcustom
607 @c LocalWords: deffn deffnx defun defvar destructor's dfn diff dir
608 @c LocalWords: doc docstring EDE EIEIO elisp emacsman emph enum
609 @c LocalWords: eq Exp EXPANDFULL expression fn foo func funcall
610 @c LocalWords: ia ids iff ifinfo imenu imenus init int isearch itemx java kbd
611 @c LocalWords: keymap keywordtable lang languagemode lexer lexing Ludlam
612 @c LocalWords: menubar metaparent metaparents min minibuffer Misc mode's
613 @c LocalWords: multitable NAvigaTOR noindent nomedian nonterm noselect
614 @c LocalWords: nosnarf obarray OLE OO outputfile paren parsetable POINT's
615 @c LocalWords: popup positionalonly positiononly positionormarker pre
616 @c LocalWords: printf printindex Programmatically pt quotemode
617 @c LocalWords: ref regex regexp Regexps reparse resetfile samp sb
618 @c LocalWords: scopestart SEmantic semanticdb setfilename setq
619 @c LocalWords: settitle setupfunction sexp sp SPC speedbar speedbar's
620 @c LocalWords: streamorbuffer struct subalist submenu submenus
621 @c LocalWords: subsubsection sw sym texi texinfo titlefont titlepage
622 @c LocalWords: tok TOKEN's toplevel typemodifiers uml unset untar
623 @c LocalWords: uref usedb var vskip xref yak