请输入您要查询的百科知识:

 

词条 BLISS
释义

  1. Language description

  2. Source example

  3. Versions

  4. Notes

  5. References

  6. External links

      Downloads  
{{Other uses|Bliss (disambiguation){{!}}Bliss}}{{Infobox programming language
| name = BLISS
| logo =
| paradigm = Structured, imperative (procedural)
| year = 1970
| designer = W. A. Wulf, D. B. Russell, A. N. Habermann
| developer = Carnegie Mellon University
| latest_release_version = BLISS-64
| latest release date =
| typing = Typeless
| implementations =
| dialects = Common BLISS
| influenced_by = ALGOL
| influenced =
| operating_system = Cross-platform: PDP-10, PDP-11, VAX, DEC PRISM, MIPS, DEC Alpha, Intel IA-32, Intel IA-64
| license =
| website =
| file_ext =
}}

BLISS is a system programming language developed at Carnegie Mellon University by W. A. Wulf, D. B. Russell, and A. N. Habermann around 1970. It was perhaps the best known systems programming language right up until C made its debut a few years later. Since then, C took off and BLISS faded into obscurity. When C was in its infancy, a few projects within Bell Labs were debating the merits of BLISS vs. C{{citation needed|date=February 2015}}.

BLISS is a typeless block-structured language based on expressions rather than statements, and includes constructs for exception handling, coroutines, and macros. It does not include a goto statement.

The name is variously said to be short for "Basic Language for Implementation of System Software" or "System Software Implementation Language, Backwards". It was sometimes called "Bill's Language for Implementing System Software", after Bill Wulf.

The original Carnegie Mellon compiler was notable for its extensive use of optimizations, and formed the basis of the classic book The Design of an Optimizing Compiler.

DEC developed and maintained BLISS compilers for the PDP-10,[1] PDP-11,[1] VAX,[1] DEC Prism,[2] MIPS,[1] DEC Alpha,[1] and Intel IA-32,[1] The language did not become popular among customers and few had the compiler,[3] but DEC used it heavily in-house into the 1980s; most of the utility programs for the VMS operating system were written in BLISS-32. After its acquisition of DEC, Compaq developed and maintained a BLISS compiler for Intel IA-64.[1]

Language description

{{quote|BLISS has many of the features of other modern high-level languages. It has block structure, an automatic stack, and mechanisms for defining and calling recursive routines ... provides a variety of predefined data structures and ... facilities for testing and iteration ...

On the other hand, BLISS omits certain features of other high-level languages. It does not have built-in facilities for input/output, because a system-software project usually develops its own input/output or builds on basic monitor I/O or screen management services ... it permits access to machine-specific features, because system software often requires this. BLISS has characteristics that are unusual among high-level languages. A name ... is uniformly interpreted as the address of that segment rather than the value of the segment ... Also, BLISS is an "expression language" rather than a "statement language".

This means that every construct of the language that is not a declaration is an expression. Expressions produce a value as well as possibly causing an action such as modification of storage, transfer of control, or execution of a program loop. For example, the counterpart of an assignment "statement" in BLISS is, strictly speaking, an expression that itself has a value. The value of an expression can be either used or discarded in BLISS ... Finally, BLISS includes a macro facility that provides a level of capability usually found only in macro-assemblers.|Bliss Language Manual, Digital Equipment Corporation (1987)[4]}}

The BLISS language has the following characteristics:

  • All constants are full word for the machine being used, e.g. on a 16-bit machine such as the PDP-11, a constant is 16 bits; on a VAX computer, constants are 32 bits, and on a PDP-10, a constant is 36 bits.
  • A reference to a variable is always to the address of that variable. For example, the instruction Z+8 refers to adding 8 to the address of Z, not to its value. If one needs to add 8 to the value of Z, one must prefix the variable with a period; so one would type .Z+8 to perform this function, which adds 8 to the contents of Z.
  • Assignment is done with the standard = symbol, e.g. Z=8 – which says to create a full-word constant containing 8, and store it in the location whose address corresponds to that of Z. So Z+12=14 (or, alternatively 12+Z=14) places the constant 14 into the location which is 12 words after the address of Z. (This is considered bad practice.)
  • Block statements are similar to those of ALGOL: a block is started with a BEGIN statement and terminated with END. As with ALGOL, statements are terminated with the semicolon (";"). When a value is computed, it is saved until the next statement terminator – which means that a value can be computed, assigned to a variable, and carried forward to the next statement, if desired. Alternatively, an open parenthesis may be used to begin a block, with the close parenthesis used to close the block. When parentheses are included in an expression, the standard precedence rules are used, in which parenthesized expressions are computed first,
  • Conditional execution uses the IF expression, which tests a true-false condition, performs alternative actions, and returns a result.
  • Comparison uses keywords such as EQL for equality (as opposed to overloading the = symbol for the same purpose), GTR for Greater Than, and NEQ for not equal. For example, the following code will assign the absolute value of Z to the address indicated by Q:

Q = (IF .Z GTR 0 THEN .Z ELSE -.Z);

  • Identifiers (variables and constants) must be declared before use, typically using the OWN keyword. Declaring a variable normally causes the compiler to allocate space for it; when necessary, a variable may be assigned a fixed machine address via the BIND declaration. This feature is primarily used for accessing either machine registers or certain special addresses.
  • Subroutines in the language are called routines, and are declared with the keyword ROUTINE.
  • Macros, which allow for text substitution, are declared with the keyword MACRO.
  • The language supports arrays, which are referred to as structures, and declared with the keyword VECTOR.
  • The language supports some high-level programming constructs such as
    • Alternative execution paths via the CASE expression
    • Looping through use of the INCR expression, which is similar to ALGOL's FOR statement
    • Built-in string functions
    • Certain automatic data conversions (number to string, etc.)

Source example

The following example is taken verbatim from the Bliss Language Manual:[4]

MODULE E1 (MAIN = CTRL) =

BEGIN

FORWARD ROUTINE

    CTRL,    STEP;

ROUTINE CTRL =

+ This routine inputs a value, operates on it, and then outputs the result.-
    BEGIN    EXTERNAL ROUTINE        GETNUM,     ! Input a number from terminal        PUTNUM;     ! Output a number to terminal    LOCAL        X,          ! Storage for input value        Y;          ! Storage for output value    GETNUM(X);    Y = STEP(.X);    PUTNUM(.Y)    END;

ROUTINE STEP(A) =

+ This routine adds 1 to the given value.-

END

ELUDOM

Versions

  • BLISS-10
  • BLISS-11 - a cross compiler for the PDP-11
  • BLISS-16
  • BLISS-16C - DEC version of BLISS-11
  • BLISS-32
  • BLISS-36
  • BLISS-64
  • Common BLISS - portable subset

Notes

1. ^{{cite journal | doi = 10.1002/spe.470 | title=The BLISS programming language: a history | journal=Software: Practice and Experience | date=2002 | volume=32 | issue=10 | pages=955–981 | first=Ronald F. | last=Brender | url = http://www.cs.tufts.edu/~nr/cs257/archive/ronald-brender/bliss.pdf}}
2. ^{{cite web|url=http://bitsavers.org/pdf/dec/prism/mica/870827_DECwest_Compiler_Project.pdf|title=DECWest Compiler Project, Description, and Plan|first1=Don|last1=MacLaren|date=August 27, 1987}}
3. ^{{cite mailing list | url=http://www.columbia.edu/kermit/ftp/e/mail.87a | title=News about Kermit Programs for VAX/VMS | publisher=Kermit Project, Columbia University | mailinglist=Info-Kermit Digest | date=1987-09-16 | accessdate=3 March 2016 | author=da Cruz, Frank}}
4. ^Bliss Language Manual, Digital Equipment Corporation (1987)

References

  • Wulf, W. A.; Russell, D. B.; Habermann, A. N. (1971). BLISS: A Language for Systems Programming. CACM 14(12):780-790, Dec 1971
  • Wulf, W. A.; Johnson, R. K.; Weinstock, C. B.; Hobbs, S. O.; Geschke, C. M. (1975). The Design of an Optimizing Compiler. New York: Elsevier, {{ISBN|0-444-00158-1}}.
  • {{cite journal | doi = 10.1002/spe.470 | title=The BLISS programming language: a history | journal=Software: Practice and Experience | date=2002 | volume=32 | issue=10 | pages=955–981 | first=Ronald F. | last=Brender | url = http://www.cs.tufts.edu/~nr/cs257/archive/ronald-brender/bliss.pdf}}

External links

  • [https://web.archive.org/web/20061207101653/http://decus.decus.de:8080/htbin/webbook/PUBLIC$ROOT%3a%5bUTIL.BLISS%5d4358pro.p7.#1 BLISS Manual at DECUS]
  • Alan Lehotsky posting about BLISS at DEC
  • "BLISS: A Language for Systems Programming" by W.A. Wulf, D.B. Russell, and A.N. Habermann. (PostScript)
  • Session notes for "Introduction to BLISS" by Matthew D. Madison. (PostScript)

Downloads

  • BLISS-10
  • link|date=December 2017 |bot=InternetArchiveBot |fix-attempted=yes }} Older BLISS-11{{Dead link|date=October 2018 |bot=InternetArchiveBot |fix-attempted=yes }}
  • BLISS-36
  • BLISS-11, BLISS-32 and BLISS-64{{Dead link|date=August 2018 |bot=InternetArchiveBot |fix-attempted=yes }}
  • FreeVMS Portable BLISS for GCC
{{Carnegie Mellon}}

6 : Systems programming languages|OpenVMS software|Carnegie Mellon University software|Programming languages|1970 software|Programming languages created in 1970

随便看

 

开放百科全书收录14589846条英语、德语、日语等多语种百科知识,基本涵盖了大多数领域的百科知识,是一部内容自由、开放的电子版国际百科全书。

 

Copyright © 2023 OENC.NET All Rights Reserved
京ICP备2021023879号 更新时间:2024/9/21 15:30:45