TTM (programming Language)
   HOME

TheInfoList



OR:

TTM is a string oriented, general purpose macro processing
programming language A programming language is a system of notation for writing computer programs. Most programming languages are text-based formal languages, but they may also be graphical. They are a kind of computer language. The description of a programming ...
developed in 1968 by Steven Caine and E. Kent Gordon at the
California Institute of Technology The California Institute of Technology (branded as Caltech or CIT)The university itself only spells its short form as "Caltech"; the institution considers other spellings such a"Cal Tech" and "CalTech" incorrect. The institute is also occasional ...
.


Description

The following description is taken from the original TTM reference manual and the subsequent batch processing extension. TTM Is a recursive, interpretive language designed primarily for string manipulation, text editing, macro definition and expansion, and other applications generally classified as systems programming. It is derived, primarily, from GAPFarber, D. J., 635 Assembly System - GAP. Bell Telephone Laboratories Computation Center (1964). and GPM.Strachey, C., A General Purpose Macro Generator. Comput J 8, 3(1965), pp. 225-241. Initially, TTM was planned as the macro processing portion of an assembler for the IBM System/360 and, as such, was designed to overcome the restrictions and inconsistencies which existed in the standard assemblers for that system. In addition, it was designed to have all of the power possessed by earlier general macro assemblers but with the unfortunate syntactic and semantic difficulties removed. During the development of TTM, it became apparent that applications other than assembler macro processing were possible. These include data editing, text manipulation, expression compiling, and macro processing for language processors other than assemblers. The initial version of TTM was implemented to run in a conversational manner under the Caltech Basic Time Sharing System for the
IBM System/360 Model 50 The IBM System/360 Model 50 is a member of the IBM System/360 family of computers. The Model 50 was announced in April 1964 with the other initial models of the family, and first shipped in August 1965 to the Bank of America. Models There are fo ...
.Caine, S.H., et al., An Operating Environment for Programming Research. California Institute of Technology, Willis H. Booth Computing Center Programming Report No. 1, 1967. Other versions have been written to run in the batch processing environment of OS/360 and to operate in front of or in conjunction with various language processors.


Syntax and Semantics

The reference implementation assumes that TTM is given a text file containing some combination of ordinary text and TTM function calls (i.e. invocations). The text is scanned character by character. Any ordinary text is passed to the output unchanged (except for
escapes Escape or Escaping may refer to: Computing * Escape character, in computing and telecommunication, a character which signifies that what follows takes an alternative interpretation ** Escape sequence, a series of characters used to trigger some so ...
). If a TTM function is encountered, it is collected and executed. The general form of a TTM function call looks like this
#
where the function name and the arguments are arbitrary character strings not containing characters of significance: '#', '<', '>', and ';'. The function is invoked with the specified arguments and the resulting text is inserted into the original text in place of the function call. If the function call was prefixed by a single '#' character, then scanning will resume just ''before'' the inserted text from the function call. This is called ''active'' invocation. If the function call was prefixed by two '#' characters, then scanning resumes just ''after'' the inserted text. This is called ''passive'' invocation. During the collection of a function call, additional function calls may be encountered, for example, this.
#;...;argn>
The nested function call will be invoked when encountered and the result inserted into the text of the outer function call and scanning of the outer function call resumes at the place indicated by the number of '#' characters preceding the nested call. If a function takes, for example, 2 arguments, any extras are ignored. For user defined functions, if too few arguments are provided, additional one are added with the value of the empty string (""). A function may have a maximum of 62 arguments. As with other
applicative programming language In the classification of programming languages, an applicative programming language is built out of functions applied to arguments. Applicative languages are functional, and applicative is often used as a synonym for functional. However, conc ...
s, a TTM function may be recursive and may be defined as the result of the invocation of a sequence of other function calls. Functions are either ''built-in'' or ''user defined''. A large number of built-in functions exist and are defined in the TTM reference manual


Function definition

User defined functions are created using the following two built-in functions. * # * # The first function, ds for "define string", defines a named string in the TTM dictionary. The name is "name" and its value is "text". Invoking this named string will cause its invocation to be replaced by the value (i.e. "text"). The second function, ss for "segment string", scans the text of a previously defined string looking for occurrences of its arguments: text1, text2, ... textn. When an occurrence is found, it is replaced with a ''segment mark''. All occurrences of each argument are replaced by the same segment mark. When a segmented string is invoked, each argument to the call is substituted for the corresponding segment mark. Consider this example.
 1#
 2#
 3#
The string F is defined (line 1) and its body "abcxxdefyy" is segmented on the two strings "xx" and "yy" (line2). When invoked (line 3), it will return the value "abc11def22". In effect, we have a user defined function F with two arguments.


Escaping

It is possible to escape one or more characters using either of two conventions. # <...> – escape multiple characters. # @ – escape a single character If a string is enclosed in <...>, then it is scanned but not interpreted by TTM. In the scanning process, the outer < and > brackets are removed. If there are nested occurrences of <...>, then they are scanned but the < and > are not removed. The brackets must balance: the number of '<' characters must equal the number of '>' characters. The '@' escape convention causes the interpreter to pass as-is the character after the '@'. The leading '@' is left if it within a <...> escape sequence, otherwise it is removed. One use is to allow unbalanced occurrences of '<' or '>' characters.


Examples


Example 1: Function Definition

The most basic example involves defining a function that is useful for defining additional functions. This "meta" function is called ''def''. It is written as:
#>;##>>
#
We can, for example, use ''def'' to define the string XX as 12345 and then segment XX on 34 by writing this.
#
The call
#
will then produce the string "1200005". The ''def'' function operates by invoking ''ds'' to define the function name and initial text in the TTM dictionary – XX in our example. Then the text of the dictionary entry of XX is segmented with respect to any specified arguments: "34" in this case. When XX is invoked, its argument is substituted for the segment mark.


Example 2: Factorial

The factorial function can be defined (using the above ''##'' function) as follows.
#>>>>>>
Notice that the inner computation (#<mu...) is escaped so it will only be evaluated after the #<lt... functions is executed and returns that nested computation as its result. An example call would look like this.
#
and would return the string 6.


See also

*
TRAC programming language TRAC (for Text Reckoning And Compiling) Language is a programming language developed between 1959–1964 by Calvin Mooers and first implemented on the PDP-1 in 1964 by L. Peter Deutsch. It was one of three "first languages" recommended by Ted Nel ...
The exact relationship between TTM and TRAC is unknown. The TTM documentation indicates that it was derived from GAP and GPM. In any case, the description of the characteristics of TRAC also apply to TTM. However, by removing the syntactic distinction between built-in and user-defined function, TTM would appear to be a much cleaner language.


Notes

{{Reflist


References

* Greenwald, I.D. and Kane, M, The Share 709 System: Programming and Modification. JACM 6 No. 2 (1959). pp. 128–133. * Greenwald, I.D., Handling Macro Instructions. CACM 2, No. 11 (1959), 21-22. * Remington Rand UNIVAC Division, UNIVAC Generalized Programming. Philadelphia, 1957. * McIlroy, M.D., Using SAP Macro Instructions to Manipulate Symbolic Expressions. Bell Telephone Laboratories Computation Center (1960).


External links


Reference implementation for the TTM programming language
on
GitHub GitHub, Inc. () is an Internet hosting service for software development and version control using Git. It provides the distributed version control of Git plus access control, bug tracking, software feature requests, task management, continuous ...
. Macro programming languages