SLR 15 - programming languages and translators Flashcards
What is the difference between how programs that have been compiled and programs that have been interpreted can run?
Compiled programs can be run without requirement for any other software to be present. This is not the case with interpreters
How do interpreters work?
- They have procedures that can be used to translate each kind of program instruction
- They check for errors as they translate rather than before
- A program with errors with be partially translated until the error is reached
How is bytecode executed?
- With a virtual machine which can execute bytecode of different processors
- Each different processor instruction set will have its own virtual machine
Why do we need translators?
A program needs to be in machine code to be executed, so translators are needed to convert HLL and Assembly language into machine code (binary)
What are the 3 types of translator?
- assembler
- interpreter
- compiler
What does an assembler do?
It converts assembly language into machine code
Why is assembly language translation quick and easy?
- an assembly language instruction has a one to one relationship with machine code
- this means translation is quick
Why do different assembler need to exist for each different type of processor instruction set?
They are platform specific
What do compilers do?
They translate programs written in high-level languages into machine code
How do compilers work?
- They take the HLL as their source code
- They check it for any errors
- Then translate the whole program at once
- If there is an error the source code then it will not be translated
Why are compilers deemed platform specific?
They produce machine code
What do interpreters do?
- they translate HLL into machine code LINE BY LINE
Why do interpreters offer poor protection for their source code?
- during translation, the program source code and the interpreter must be present
- it makes the original code difficult to extract
Advantages of interpreters?
- useful when writing programs
- no need for lengthy, time consuming recompilation every time an error is found
- makes it much easier to partially test and debug programs
Advantages of compilers?
- Generated object code is kept on a disk, it can be run when needed without needing to recompile it
- once created, object code executes much faster then interpreted code
- the object code is relatively secure, it is hard to read it and work out what the source code would have been (protected from extraction)
What do compilers sometimes produce before machine code? Example?
intermediate language e.g., bytecode. its a half-way standard language which can then be translate to computer specific machine code
Why do compilers produce intermediate language?
it allows for platform independence
What is the advantage of intermediate language?
It allows the interpreter to translate the source code just once, while still being able to execute the translated code with a variety of different processors
What is source code?
The name given to the input to a translator e.g., assembly language for an assembler and HHL for compilers and interpreters
What is object code?
The translators output and is produced from source code
Define a quick time-line of computer languages:
- limited speed and memory of computers meant programmers coded in LLL (machine code), which directly manipulated the processor (often difficult and prone to errors)
- Assembly code
- Then HHL developed (one to many relationship) where instructions could be communicated to the computer processor
What are the characteristics of a LLL?
- they are specific to the type of processor they are written for
- they directly affect the computer processor
What are the two types of low level language?
- machine code
- assembly code
What are the disadvantages of Machine code?
- it uses only binary but its very long and difficult for humans to understand
- Machine code programs are prone to errors
- Very difficult to debug
What are the advantages of Machine code?
- it directly manipulates a computer’s processor so it a powerful paradigm
- you’re never limited programming in machine code
- no ned for translation so useful when working with embedded systems and real time applications
Why was assembly language created?
- it simplified machine code by using mnemonics like ADD and MOV
- it made programming ore compact and less error prone
Why was assembly language still quickly processed?
the language instruction has a one to one correlation to a machine code instruction
What is the difference between HHL and LLL?
- HHL are not processor specific
- HHL must be translated into machine code before they can be executed
- HHL lets programmers use built in functions
- Easier to debug due to named variables, indentation etc
What are the two types of HLL?
- interpretive
- declarative
What is an imperative HLL?
- are formed from instructions that specify how the computer should complete a task
- code executed one line at a time e.g. C# and Java
What is an declarative HLL?
- describes what a computer should do
- SQL?
Machine code:
- portability?
- ease of use?
- ease of debugging?
- ease of execution?
- Not portable
- Code is difficult for humans to understand
- Errors are very difficult to spot and correct.
- Machine code is directly executed by processors.
Assembly Language:
- portability?
- ease of use?
- ease of debugging?
- ease of execution?
- Programs are processor specific
- Mnemonics help to make code slightly easier for humans to understand
- Debugging is easier than with machine code but still far more difficult than with high-level languages
- An assembler must be used before a program is executed, but each instruction has a 1-to-1 correlation to a machine code instruction so translation is quick.
High Level Language:
- portability?
- ease of use?
- ease of debugging?
- ease of execution?
- Portable. Programs are not specific to certain processors.
- Code uses English, making it easy for humans to understand.
- Named variables, indentation and commenting make debugging fairly easy
- A compiler or interpreter must be used to translate source code into object code before it can be executed. This can be time consuming.
What is intermediate code designed to run on?
A virtual machine installed on each make of computer