RPL (programming language)

RPL (programming language)

The RPL programming language (RPL meaning ROM-based procedural language or, alternatively, Reverse Polish LISP) is a handheld calculator system and application programming language used on Hewlett-Packard's engineering graphing RPN calculators of the HP-28, HP-48, and HP-49 series.

RPL is a structured programming language based on RPN but equally capable of processing algebraic expressions and formulae. RPL has many similarities to Forth, both languages being stack-based, and of course the list-based LISP. Contrary to previous HP RPN calculators, which had a fixed four-level stack, the stack used by RPL is only limited by available calculator RAM.

RPL originated from HP's Corvallis, Oregon development facility in 1984 as a replacement for the previous practice of implementing the operating systems of calculators in assembly language. [http://www.hpcalc.org/hp48/docs/programming/rplman.zip] According to a quote by Dr. William Wickes, one of the original RPL developers, "the development team never calls it anything but (the initials) RPL." [http://www.faqs.org/faqs/hp/hp48-faq/part2/]

Variants

The internal low- to medium-level variant of RPL, called System RPL (or SysRPL) is used on some earlier HP calculators as well as the aforementioned ones, as part of their operating system implementation language. This variant of RPL is not accessible to the calculator user without the use of external tools. It is possible to cause a serious crash while coding in SysRPL, so caution must be used while using it. The high-level User RPL (or UserRPL) version of the language is available on said graphing calculators for developing textual as well as graphical application programs. All UserRPL programs are internally represented as SysRPL programs, but use only a safe subset of the available SysRPL commands. The error checking that is a part of UserRPL commands, however, makes UserRPL programs noticeably slower than equivalent SysRPL programs. The UserRPL command SYSEVAL tells the calculator to process designated parts of a UserRPL program as SysRPL code.

Control Blocks

RPL control blocks are not strictly postfix. Although there are some notable exceptions, the control block structures appear as they would in a standard infix language. The calculator manages this by allowing the implementation of these blocks to skip ahead in the program stream as necessary.

Conditional Statements

IF/THEN/ELSE/END

RPL supports basic conditional testing through the IF/THEN/ELSE structure. The basic syntax of this block is:

IF condition THEN if-true [ELSE if-false] END

The following example tests to see if the number at the bottom of the stack is "1" and, if so, replaces it with "Equal to one":

« IF 1 = THEN "Equal to one" END »

The IF construct evaluates the condition then tests the bottom of the stack for the result. As a result RPL can optionally support FORTH-style IF blocks, allowing the condition to be determined before the block. By leaving the condition empty, the IF statement will not make any changes to the stack during the condition execution and will use the existing result at the bottom of the stack for the test:

« 1 = IF THEN "Equal to one" END »

IFT/IFTE

Postfix conditional testing may be accomplished by using the IFT ("if-then") and IFTE ("if-then-else") functions.

IFT and IFTE pop two or three commands off the stack, respectively. The topmost value is evaluated as a boolean and, if true, the second topmost value is pushed back on the stack. IFTE allows a third "else" value that will be pushed back on the stack if the boolean is false.

The following example uses the IFT function to pop an object from the bottom of the stack and, if it is equal to 1, replaces it with "One":

« 1 = "One" IFT »

The following example uses the IFTE function to pop an object from the bottom of the stack and, if it is equal to 1, replaces it with "One". If it does not equal 1, it replaces it with the string "Not one":

« 1 = "One" "Not one" IFTE »

IFT and IFTE will evaluate a program block given as one of its arguments, allowing a more compact form of conditional logic than an IF/THEN/ELSE/END structure. The following example pops an object from the bottom of the stack, and replaces it with "One", "Less", or "More", depending on whether it is equal to, less than, or greater than 1.

« DUP 1 =

« DROP "One" » « 1 < "Less" "More" IFTE » IFTE »

CASE/THEN/END

To support more complex conditional logic, RPL provides the CASE/THEN/END structure for handling multiple exclusive tests. Only one of the branches within the CASE statement will be executed. The basic syntax of this block is:

CASE condition_1 THEN if-condition_1 END ... condition_n THEN if-condition_n END if-none END

The following code illustrates the use of a CASE/THEN/END block. Given a letter at the bottom of the stack, it replaces it with its string equivalent or "Unknown letter":

« CASE DUP "A" = THEN "Alpha" END DUP "B" = THEN "Beta" END DUP "G" = THEN "Gamma" END "Unknown letter" END SWAP DROP @ Get rid of the original letter »

This code is identical to the following nested IF/THEN/ELSE/END block equivalent:

« IF DUP "A" =

THEN "Alpha" ELSE IF DUP "B" = THEN "Beta" ELSE IF DUP "G" = THEN "Gamma" ELSE "Unknown letter" END END END SWAP DROP @ Get rid of the original letter »

Looping Statements

FOR/NEXT

RPL provides a FOR/NEXT statement for looping from one index to another. The index for the loop is stored in a temporary local variable that can be accessed in the loop. The syntax of the FOR/NEXT block is:

index_from index_to FOR variable_name loop_statement NEXT

The following example uses the FOR loop to sum the numbers from 1 to 10. The index variable of the FOR loop is "I":

« 0 @ Start with zero on the stack 1 10 @ Loop from 1 to 10 FOR I @ "I" is the local variable I + @ Add "I" to the running total NEXT @ Repeat... »

TART/NEXT

The START/NEXT block is used for a simple block that runs from a start index to an end index. Unlike the FOR/NEXT loop, the looping variable is not available. The syntax of the START/NEXT block is:

index_from index_to START loop_statement NEXT

FOR/STEP and START/STEP

Both FOR/NEXT and START/NEXT support a user-defined step increment. By replacing the terminating NEXT keyword with an increment and the STEP keyword, the loop variable will be incremented or decremented by a different value than the default of +1. For instance, the following loop steps back from 10 to 2 by decrementing the loop index by 2:

« 10 2 START -2 STEP »

WHILE/REPEAT/END

The WHILE/REPEAT/END block in RPL supports an indefinite loop with the condition test at the start of the loop. The syntax of the WHILE/REPEAT/END block is:

WHILE condition REPEAT loop_statement END

DO/UNTIL/END

The DO/UNTIL/END block in RPL supports an indefinite loop with the condition test at the end of the loop. The syntax of the DO/UNTIL/END block is:

DO loop_statement UNTIL condition END

External links

* Homepage Gnu RPL/2: http://www.systella.fr/~bertrand/rpl2/english.html [http://www.systella.fr/~bertrand/rpl2/english.html]
* [http://h20000.www2.hp.com/bc/docs/support/SupportManual/c00554621/c00554621.pdf Advanced User's Reference Manual, command reference and RPL guide] &ndash; From "HP"
* [http://www.hpcalc.org/hp49/docs/programming/ RPL Programming Articles] &ndash; From "hpcalc.org"
* [http://www.hpmuseum.org/rpl.htm Article on RPL, with code examples] &ndash; From "The Museum of HP Calculators" (MoHPC)


Wikimedia Foundation. 2010.

Игры ⚽ Поможем решить контрольную работу

Look at other dictionaries:

  • Concatenative programming language — Programming paradigms Agent oriented Automata based Component based Flow based Pipelined Concatenative Concurr …   Wikipedia

  • Realtime Programming Language — (RPL) is a compiled database programming language used on CMC/Microdata/McDonnell Douglas REALITY (databases, derived and expanded from the PROC procedure language, with much extra functionality added. It was originally developed under the name… …   Wikipedia

  • RPL — is an initialism for:* RPL (programming language) * Realtime Programming Language * Recognition of prior learning * Reciprocal Public License * Requester Privilege Level, in computer science * Remote Initial Program Load, a network boot protocol …   Wikipedia

  • RPL (langage de programmation) — RPL Le RPL est un langage de programmation procédural inventé par Hewlett Packard en 1984 pour ses calculatrices (HP 28, 48, 49). Le seul nom officiel du langage est RPL, ce que de nombreux utilisateurs ont traduit par « Reverse Polish… …   Wikipédia en Français

  • RPL — Le RPL est un langage de programmation procédural inventé par Hewlett Packard en 1984 pour ses calculatrices (HP 28, 48, 49). Sommaire 1 Origine du nom 2 Fonctionnement 3 Évolution …   Wikipédia en Français

  • RPL — abbr. Remote Program Load abbr. Requested Privilege Level abbr. Resident Programming Language comp. abbr. Resident Programming Language comp. abbr. Requested Privilege Level …   United dictionary of abbreviations and acronyms

  • RPL — • Radiation Physics Laboratory ( > IEEE Standard Dictionary ) • Rocket Propulsion Laboratory ( > IEEE Standard Dictionary ) • Resident Programming Language • Requested Privilege Level • Remote Program Load • Rated Power Level NASA …   Acronyms

  • RPL — [1] Radiation Physics Laboratory ( > IEEE Standard Dictionary ) [2] Rocket Propulsion Laboratory ( > IEEE Standard Dictionary ) [3] Resident Programming Language [4] Requested Privilege Level [5] Remote Program Load [6] Rated Power Level (… …   Acronyms von A bis Z

  • List of programming languages by category — Programming language lists Alphabetical Categorical Chronological Generational This is a list of programming languages grouped by category. Some languages are listed in multiple categories. Contents …   Wikipedia

  • List of programming languages — Programming language lists Alphabetical Categorical Chronological Generational The aim of this list of programming languages is to include all notable programming languages in existence, both those in current use and historical ones, in… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”