DIANA (intermediate language)

From HandWiki
Revision as of 16:19, 6 February 2024 by Steve2012 (talk | contribs) (linkage)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Short description: Intermediate language

DIANA (Descriptive Intermediate Attributed Notation for Ada) is an intermediate language used to represent the semantics of an Ada program.

History

It was originally designed as an interface between the compiler front end (syntactic analysis) and middle end (semantic analysis) of the compiler on the one hand and the compiler back end (code generation and optimization) on the other. It is also used as an internal representation (IR) by other language tools.

DIANA is also used by PL/SQL, which is based on Ada.

DIANA is an abstract data type; its concrete implementations are defined using the IDL specification language.

DIANA descends from TCOL and AIDA, earlier representations of Ada programs.

The Ada-0 subset of Ada at Karlsruhe (1980) was first using AIDA,[1] but later AIDA got replaced by DIANA. The full Karlsruhe Ada compilation system used DIANA as well and the IDL External Representation for marshalling between the middle-end and the code generating back-end.

References

Footnotes

  1. Goos, Gerhard; Winterstein, Georg (1980). "Towards a compiler front-end for Ada". Annual International Conference on Ada. ACM-SIGPLAN. pp. 36–46. http://portal.acm.org/citation.cfm?id=948632.948639. Retrieved 2016-02-10. 

General