...
- Tool-generated, tool-maintained - code which is specified and maintained in a higher-level format, from which language specific source code is generated. The source code is generated from this higher level description and then provided as input to the language compiler. The generated source code is never viewed or modified by the programmer.
- Tool-generated, toolhand-maintained - code which is specified and maintained in a higher-level format, from which language specific source code is generated. It is expected or anticipated that at some point in the development cycle, however, that the tool will ceased to be used and that the generated source code will be visually inspected and/or manually modified and maintained.
- Hand-coded - code that has been manually written by a programmer using a text editor or interactive development environment where the programmer maintains source code directly in the source code format which is provided to the compiler.
- JIT compilation - also known as dynamic translation, is a technique for improving the runtime performance of a computer program. JIT converts code at runtime prior to executing it natively, for example bytecode into native machine code. The performance improvement over interpreters originates from caching the results of translating blocks of code, and not simply reevaluating each line or operand each time it is met (see Interpreted language).
- Interpreted execution - Interpretation is one of the two major ways in which a programming language can be implemented, the other being compilation. The term interpreter may refer to the program that executes source code that has already been translated to some intermediate form, or it may refer to the program that performs both the translation and execution.
Source code that is written and maintained by hand needs to have the following properties:
- readabilitycomprehensibility
- program comprehension
These requirements do not exist for source code that is never handled directly by a programmer, although requirements for correct behavior are still applicable. Readability and program comprehension requirements exist for the source code which is hand-coded, regardless of if this source code is interpreted, compiled, or compiled just-in-time (JIT). Reading and comprehension requirements apply to code that is tool-generated but hand-maintained, but does not apply to code that is tool-generated and tool-maintained. Readability and program comprehension requirements do not apply to intermediate forms such as pcode, assembly language, byte-codes that are never meant to be maintained by the programmer. Adequate verification must be performed to ensure that the safety and security properties of the code are maintained at each level of translation and interpretation although this is outside the scope of these language standards.