0%

ALL meanings of interpreted

in·ter·pret
I i
  • abbreviation Technical meaning of INTERPRETED interpreter 3
  • noun Definition of interpreted in Technology (programming)   A program which executes other programs. This is in contrast to a compiler which does not execute its input program (the "source code") but translates it into executable "machine code" (also called "object code") which is output to a file for later execution. It may be possible to execute the same source code either directly by an interpreter or by compiling it and then executing the machine code produced. It takes longer to run a program under an interpreter than to run the compiled code but it can take less time to interpret it than the total required to compile and run it. This is especially important when prototyping and testing code when an edit-interpret-debug cycle can often be much shorter than an edit-compile-run-debug cycle. Interpreting code is slower than running the compiled code because the interpreter must analyse each statement in the program each time it is executed and then perform the desired action whereas the compiled code just performs the action. This run-time analysis is known as "interpretive overhead". Access to variables is also slower in an interpreter because the mapping of identifiers to storage locations must be done repeatedly at run time rather than at compile time. There are various compromises between the development speed when using an interpreter and the execution speed when using a compiler. Some systems (e.g. some Lisps) allow interpreted and compiled code to call each other and to share variables. This means that once a routine has been tested and debugged under the interpreter it can be compiled and thus benefit from faster execution while other routines are being developed. Many interpreters do not execute the source code as it stands but convert it into some more compact internal form. For example, some BASIC interpreters replace keywords with single byte tokens which can be used to index into a jump table. An interpreter might well use the same lexical analyser and parser as the compiler and then interpret the resulting abstract syntax tree. There is thus a spectrum of possibilities between interpreting and compiling, depending on the amount of analysis performed before the program is executed. For example Emacs Lisp is compiled to "byte-code" which is a highly compressed and optimised representation of the Lisp source but is not machine code (and therefore not tied to any particular hardware). This "compiled" code is then executed (interpreted) by a byte code interpreter (itself written in C). The compiled code in this case is machine code for a virtual machine which is implemented not in hardware but in the byte-code interpreter. See also partial evaluation. 1
  • verb with object interpreted to give or provide the meaning of; explain; explicate; elucidate: to interpret the hidden meaning of a parable. 1
  • verb with object interpreted to construe or understand in a particular way: to interpret a reply as favorable. 1
  • verb with object interpreted to bring out the meaning of (a dramatic work, music, etc.) by performance or execution. 1
  • noun interpreted Simple past tense and past participle of interpret. 1
  • verb with object interpreted to perform or render (a song, role in a play, etc.) according to one's own understanding or sensitivity: The actor interpreted Lear as a weak, pitiful old man. 1
  • verb with object interpreted to translate orally. 1
  • verb with object interpreted Computers. to use an interpreter to transform (a program written in a high-level language) into a sequence of machine actions, one statement at a time, executing each statement immediately before going on to transform the next one. to read (the patterns of holes in punched cards) with an interpreter, printing the interpreted data on the same cards so that they can be read more conveniently by people. See also interpreter (def 3). 1
  • verb without object interpreted to translate what is said in a foreign language. 1
  • verb without object interpreted to explain something; give an explanation. 1
Was this page helpful?
Yes No
Thank you for your feedback! Tell your friends about this page
Tell us why?