In computer programming, COMEFROM (or COME FROM) is an obscure control flow structure used in some programming languages, originally as a joke. COMEFROM is the inverse of GOTO in that it can take the execution state from any arbitrary point in code to a COMEFROM statement.
The point in code where the state transfer happens is usually given as a parameter to COMEFROM. Whether the transfer happens before or after the instruction at the specified transfer point depends on the language used. Depending on the language used, multiple COMEFROMs referencing the same departure point may be invalid, be non-deterministic, be executed in some sort of defined priority, or even induce parallel or otherwise concurrent execution as seen in Threaded Intercal.[citation needed]
A simple example of a "COMEFROM x" statement is a labelx (which does not need to be physically located anywhere near its corresponding COMEFROM) that acts as a "trap door". When code execution reaches the label, control gets passed to the statement following the COMEFROM. This may also be conditional, passing control only if a condition is satisfied, analogous to a GOTO within an IF statement. The primary difference from GOTO is that GOTO only depends on the local structure of the code, while COMEFROM depends on the global structure – a GOTO transfers control when it reaches a line with a GOTO statement, while COMEFROM requires scanning the entire program or scope to see if any COMEFROM statements are in scope for the line, and then verifying if a condition is hit. The effect of this is primarily to make debugging (and understanding the control flow of the program) extremely difficult, since there is no indication near the line or label in question that control will mysteriously jump to another point of the program – one must study the entire program to see if any COMEFROM statements reference that line or label.
Debugger hooks can be used to implement a COMEFROM statement, as in the humorous Python goto module;[1] see below. This also can be implemented with the gcc feature "asm goto" as used by the Linux kernel configuration option CONFIG_JUMP_LABEL. A no-op has its location stored, to be replaced by a jump to an executable fragment that at its end returns to the instruction after the no-op.
On 1 April 2004, Richie Hindle published an implementation of both GOTO and COMEFROM for the Python programming language.[1] Despite being released on April Fools' Day and not being intended for serious use, the syntax is valid and the implementation fully works.
Practical uses
Examples
The following is an example of a program in a hypothetical BASIC dialect with "COMEFROM" instead of "GOTO".
10COMEFROM4020INPUT"WHAT IS YOUR NAME? ";A$30PRINT"HELLO, ";A$40REM
This program (hypothetically) works by asking the user for their name, greeting them with the same name, and continuing all over again. The instruction "REM" on line 40 is simply a NOP (in this case, a REMark or comment) — the "COMEFROM" statement on line 10 causes a branch back to that line when execution reaches line 40, regardless of its contents.
A fully runnable example in Python with the joke goto module installed (which uses debugger hooks to control program execution) looks like this:
fromgotoimportcomefrom,labelcomefrom.repeatname=raw_input('What is your name? ')ifname:print("Hello",name)label.repeatprint("Goodbye!")
This is an implementation in Ruby of the Intercal COME FROM statement.
The OS/360 Fortran G compiler has a debug packet feature. Its "AT" statement is similar to COMEFROM in that it hands the control flow over to the debug block. Breakpoints in general are similar.[4]
Example 1: the values of SOLON, GFAR, and EWELL are examined as they were at the completion of statement 10. The AT statement indicates statement 11.
Example 3: tracing begins at statement 10, at statement 20, tracing stops while the loop is executed, and resumes after the loop. Tracing stops just before statement 30 is executed.
10 A=1.512 L=115 B=A+1.520 DO 22I=1,5...22 CONTINUE25 C=B+3.1630 D=C/2STOP...DEBUGUNIT(3),TRACEC DEBUG PACKET NUMBER 1AT10TRACEONC DEBUG PACKET NUMBER 2AT20TRACEOFFDO 35I=1,3...35 CONTINUETRACEONC DEBUG PACKET NUMBER 3AT30TRACEOFFEND
See also
F. X. Reid, an expert on the semantics of COMEFROM[5]