- REDIRECTTemplate:Distinguish
Template:Rcatsh Template:Short description Template:Semantics Template:Formal languages
In programming language theory, semantics is the rigorous mathematical study of the meaning of programming languages.<ref>Template:Cite book</ref> Semantics assigns computational meaning to valid strings in a programming language syntax. It is closely related to, and often crosses over with, the semantics of mathematical proofs.
Semantics describes the processes a computer follows when executing a program in that specific language. This can be done by describing the relationship between the input and output of a program, or giving an explanation of how the program will be executed on a certain platform, thereby creating a model of computation.
HistoryEdit
In 1967, Robert W. Floyd published the paper Assigning meanings to programs; his chief aim was "a rigorous standard for proofs about computer programs, including proofs of correctness, equivalence, and termination".<ref name=floyd>Template:Cite book</ref><ref>{{#invoke:citation/CS1|citation |CitationClass=web }}</ref> Floyd further wrote:Template:R
A semantic definition of a programming language, in our approach, is founded on a syntactic definition. It must specify which of the phrases in a syntactically correct program represent commands, and what conditions must be imposed on an interpretation in the neighborhood of each command.
In 1969, Tony Hoare published a paper on Hoare logic seeded by Floyd's ideas, now sometimes collectively called axiomatic semantics.<ref name="hoare">Template:Cite journal</ref>Template:R
In the 1970s, the terms operational semantics and denotational semantics emerged.<ref name=winskel>Template:Cite book</ref>
OverviewEdit
The field of formal semantics encompasses all of the following:
- The definition of semantic models
- The relations between different semantic models
- The relations between different approaches to meaning
- The relation between computation and the underlying mathematical structures from fields such as logic, set theory, model theory, category theory, etc.
It has close links with other areas of computer science such as programming language design, type theory, compilers and interpreters, program verification and model checking.
ApproachesEdit
There are many approaches to formal semantics; these belong to three major classes:
- Denotational semantics,<ref name=Schmidt1986>Template:Cite book</ref> whereby each phrase in the language is interpreted as a denotation, i.e. a conceptual meaning that can be thought of abstractly. Such denotations are often mathematical objects inhabiting a mathematical space, but it is not a requirement that they should be so. As a practical necessity, denotations are described using some form of mathematical notation, which can in turn be formalized as a denotational metalanguage. For example, denotational semantics of functional languages often translate the language into domain theory. Denotational semantic descriptions can also serve as compositional translations from a programming language into the denotational metalanguage and used as a basis for designing compilers.
- Operational semantics,<ref name=Plotkin1981>Template:Cite report</ref> whereby the execution of the language is described directly (rather than by translation). Operational semantics loosely corresponds to interpretation, although again the "implementation language" of the interpreter is generally a mathematical formalism. Operational semantics may define an abstract machine (such as the SECD machine), and give meaning to phrases by describing the transitions they induce on states of the machine. Alternatively, as with the pure lambda calculus, operational semantics can be defined via syntactic transformations on phrases of the language itself;
- Axiomatic semantics,<ref name=Goguen77>Template:Cite journal</ref> whereby one gives meaning to phrases by describing the axioms that apply to them. Axiomatic semantics makes no distinction between a phrase's meaning and the logical formulas that describe it; its meaning is exactly what can be proven about it in some logic. The canonical example of axiomatic semantics is Hoare logic.
Apart from the choice between denotational, operational, or axiomatic approaches, most variations in formal semantic systems arise from the choice of supporting mathematical formalism.Template:Cn
VariationsEdit
Some variations of formal semantics include the following:
- Action semantics<ref name=Mosses1996>Template:Cite report</ref> is an approach that tries to modularize denotational semantics, splitting the formalization process in two layers (macro and microsemantics) and predefining three semantic entities (actions, data and yielders) to simplify the specification;
- Algebraic semantics<ref name=Goguen77/> is a form of axiomatic semantics based on algebraic laws for describing and reasoning about program semantics in a formal manner. It also supports denotational semantics and operational semantics;
- Attribute grammars<ref>Template:Cite book</ref> define systems that systematically compute "metadata" (called attributes) for the various cases of the language's syntax. Attribute grammars can be understood as a denotational semantics where the target language is simply the original language enriched with attribute annotations. Aside from formal semantics, attribute grammars have also been used for code generation in compilers, and to augment regular or context-free grammars with context-sensitive conditions;
- Categorical (or "functorial") semantics<ref name=Lawvere1963>Template:Cite journal</ref> uses category theory as the core mathematical formalism. Categorical semantics is usually proven to correspond to some axiomatic semantics that gives a syntactic presentation of the categorical structures. Also, denotational semantics are often instances of a general categorical semantics;<ref>Template:Cite journal</ref>
- Concurrency semantics<ref>Template:Cite conference</ref> is a catch-all term for any formal semantics that describes concurrent computations. Historically important concurrent formalisms have included the actor model and process calculi;
- Game semantics<ref name=Abramsky2009>Template:Cite book</ref> uses a metaphor inspired by game theory;
- Predicate transformer semantics,<ref name=Dijkstra1975>Template:Cite journal</ref> developed by Edsger W. Dijkstra, describes the meaning of a program fragment as the function transforming a postcondition to the precondition needed to establish it.
Describing relationshipsEdit
For a variety of reasons, one might wish to describe the relationships between different formal semantics. For example:
- To prove that a particular operational semantics for a language satisfies the logical formulas of an axiomatic semantics for that language. Such a proof demonstrates that it is "sound" to reason about a particular (operational) interpretation strategy using a particular (axiomatic) proof system.
- To prove that operational semantics over a high-level machine is related by a simulation with the semantics over a low-level machine, whereby the low-level abstract machine contains more primitive operations than the high-level abstract machine definition of a given language. Such a proof demonstrates that the low-level machine "faithfully implements" the high-level machine.
It is also possible to relate multiple semantics through abstractions via the theory of abstract interpretation.Template:Cn
See alsoEdit
- Computational semantics
- Formal semantics (logic)
- Formal semantics (linguistics)
- Ontology
- Ontology (information science)
- Semantic equivalence
- Semantic technology
ReferencesEdit
Further readingEdit
- Textbooks
- Template:Cite book
- Template:Cite book
- Template:Cite book
- Template:Cite book
- Template:Cite book
- Template:Cite book
- Template:Cite book
- Template:Cite book
- Template:Cite book
- Template:Cite book (Working draft)
- Template:Cite book
- Template:Cite book
- {{#invoke:citation/CS1|citation
|CitationClass=web }}
- Lecture notes
- {{#invoke:citation/CS1|citation
|CitationClass=web }} Template:Refend
External linksEdit
- Template:Cite book Semantics.