First appeared 1989, 1993, 1998 | ||
Designed by Carsten K. Gomard, Neil D. Jones, John Hatcliff |
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. It later resurfaced in their book with Peter Sestoft in 1993, and in John Hatcliff's lecture notes in 1998. The below describes FCL as it appeared in John Hatcliff's lecture notes.
Contents
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
We specify the syntax of Janus using Backus–Naur form.
An FCL program is a list of formal parameter declarations, an entry label, and a sequence of basic blocks:
Initially, the language only allows non-negative integer variables.
A basic block consists of a label, a list of assignments, and a jump.
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:
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:
Where =, <, ... have semantics as in C. The semantics of - is such that if x-y<0, then x-y=0.
Example
We write a program that computes the nth Fibonacci number, for n>2:
(n)(init)init: x1 = 1 x2 = 1fib: x1 = x1 + x2 t = x1 x1 = x2 x2 = t n = -(n 1) if >(n 2) then fib else exitexit: return x2Where 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