Flow chart language

From Wikipedia, the free encyclopedia
Flow chart language (FCL)
Paradigmimperative
Designed byCarsten K. Gomard, Neil D. Jones, John Hatcliff
First appeared1989, 1993, 1998

Flow chart language (FCL) is a simple imperative programming language designed for the purposes of explaining fundamental concepts of program analysis and specialization, in particular, partial evaluation. The language was first presented in 1989 by Carsten K. Gomard and Neil D. Jones.[1] It later resurfaced in their book with Peter Sestoft[2] in 1993, and in John Hatcliff's lecture notes[3] in 1998. The below describes FCL as it appeared in John Hatcliff's lecture notes.

FCL is an imperative programming language close to the way a Von Neumann computer executes a program. A program is executed sequentially by following a sequence of commands, while maintaining an implicit state, i.e. the global memory. FCL has no concept of procedures, but does provide conditional and unconditional jumps. FCL lives up to its name as the abstract call-graph of an FCL program is a straightforward flow chart.

An FCL program takes as input a finite series of named values as parameters, and produces a value as a result.

Syntax[edit]

We specify the syntax of FCL using Backus–Naur form.

An FCL program is a list of formal parameter declarations, an entry label, and a sequence of basic blocks:

<p> ::= "(" <x>* ")" "(" <l> ")" <b>+

Initially, the language only allows non-negative integer variables.

A basic block consists of a label, a list of assignments, and a jump.

<b> ::= <l> ":" <a>* <j>

An assignment assigns a variable to an expression. An expression is either a constant, a variable, or application of a built-in n-ary operator:

<a> := <x> ":=" <e>
<e> := <c> | <x> | <o> "(" <e>* ")"

Note, variable names occurring throughout the program need not be declared at the top of the program. The variables declared at the top of the program designate arguments to the program.

As values can only be non-negative integers, so can constants. The list of operations in general is irrelevant, so long as they have no side effects, which includes exceptions, e.g. division by 0:

<c> ::= "0" | "1" | "2" | ...
<o> ::= "+" | "-" | "*" | "=" | "<" | ">" | ...

Where =, <, ... have semantics as in C. The semantics of - is such that if x-y<0, then x-y=0.

Example[edit]

We write a program that computes the nth Fibonacci number, for n>2:

(n)
(init)

init: x1 = 1
      x2 = 1

fib:  x1 = x1 + x2

      t = x1
      x1 = x2
      x2 = t

      n = -(n 1)

      if >(n 2) then fib else exit

exit: return x2

Where the loop invariant of fib is that x1 is the (i+2-1)th and x2 is the (i+2)th Fibonacci number, where i is the number of times fib has been jumped to.

We can check the correctness of the method for n=4 by presenting the execution trace of the program:

Where marks a final state of the program, with the return value .

Variants[edit]

Reversible flow chart language[edit]

Reversible flow chart language (RL) is a simple reversible imperative programming language designed for reversible computing, where each computational process is reversible.[4] RL combines step, test, and assertion in a way that ensures the reversibility of the programs.

RL emphasizes the construction of reversible programs that permit deterministic backward computation, ensuring that no information is lost during processing. This characteristic makes it distinct from traditional flow chart languages, which usually involve irreversible operations. The syntax and example programs for RL would closely resemble traditional flow chart languages but with added constraints to ensure reversibility. These include reversible loops, reversible conditional, and invertibility of atomic computation steps.

Due to the reversibility constraint, RL has less computational power than conventional Turing machines but is equivalent to reversible Turing machines (RTMs), laying the foundation for reversible programming. The reversible variant of the structured program theorem, for instance, can be effectively analyzed using RL, showcasing its significance in the theoretical bases of reversible computing. There is also a structured variant of RL (SRL: structured reversible flow chart language)[4] that combines sequence, selection, and iteration in a way that ensures the reversibility of the programs.

References[edit]

  1. ^ Carsten K. Gomard and Neil D. Jones. Compiler generation by partial evaluation. In G. X. Ritter, editor, Information Processing '89. Proceedings of the IFIP 11th World Computer Congress, pages 1139–1144. IFIP, North-Holland, 1989.
  2. ^ Neil D. Jones, Carsten K. Gomard, and Peter Sestoft. Partial Evaluation and Automatic Program Generation. With chapters by L.O. Andersen and T. Mogensen. Prentice Hall International, June 1993. xii + 415 pages. ISBN 0-13-020249-5. Freely available at http://www.itu.dk/~sestoft/pebook/pebook.html
  3. ^ John Hatcliff. An Introduction to Online and Offline Partial Evaluation using a Simple Flowchart Language. In Partial Evaluation - Practice and Theory, DIKU 1998 International Summer School, John Hatcliff, Torben Æ. Mogensen, and Peter Thiemann (Eds.). 1998. Springer-Verlag, London, UK, 20-82.
  4. ^ a b Yokoyama, Tetsuo; Axelsen, Holger Bock; Glück, Robert (January 2016). "Fundamentals of reversible flowchart languages". Theoretical Computer Science. 611: 87–115. doi:10.1016/j.tcs.2015.07.046.