Found 146 Articles for Compiler Design

What is factors which affect the implementation of programming language?

Ginni
Updated on 08-Nov-2021 10:52:55

360 Views

Some factors affect the implementation of programming languages which are as follows −Scope − The scope of a declaration is that portion of a program where that declaration is applied. The implementation mechanism may be different for different languages. Scope rules for each language determine how to go from the declaration of the name. The usage of a name in a procedure is local if it is within the scope of a declaration within that procedure otherwise the usage is non-local. According to the scope of variables in a particular language, storage management is implemented.Lifetime of variable− The lifetime of ... Read More

What is role of Run-time Storage Management in compiler design?

Ginni
Updated on 08-Nov-2021 10:50:13

2K+ Views

The compiler demands a block of memory for the operating system. The compiler utilizes this block of memory executing the compiled program. This block of memory is called storage management. One of the important tasks that a compiler must perform is to allocate the resources of the target machine to represent the data objects that are being manipulated by the source program.A compiler must decide the runtime representation of the data objects in the source program. In the source program, runtime representations of the data objects, such as integers and real variables, usually take the form of equivalent data objects ... Read More

What is two array representations in the symbol table?

Ginni
Updated on 08-Nov-2021 10:49:46

304 Views

Symbol Table is a data structure that supports an effective and efficient way of storing information about various names appearing in the source program. These names are used in the source code to identify the different program elements, like a variable, constants, procedures, and the labels of statements.The symbol table is searched each time a name is encountered in the source text. When a new name or new data about an existing name is found, the content of the symbol table modifies.Therefore, the symbol table must have an efficient mechanism for accessing the data held in the table also for ... Read More

Constructing LALR (1) Parsing table for a given grammar.Problem− Construct LALR (1) Parsing table for the grammar.S → A a|b A c|dc|bdaA → dParse input string "bdc" using LALR Parsing Table.

Ginni
Updated on 08-Nov-2021 10:46:40

6K+ Views

SolutionThe first number the production as below −Step1− Construct Augmented Grammar(0) S′ → S(1) S → A a(2) S → b A c(3) S → d c(4) S → b d a(5) A → dStep2− Find Closure & goto. Find the canonical set of LR (1) items for the Grammar.In the states, I0 to I10, no states have a similar first element or core. So, we cannot merge the states. Some states will be taken for building the LALR parsing table.LALR Parsing TableParsing of String "bdc"StackInput StringAction$ 0bdc $Shift 3$ 0 b 3dc $Shift 7$ 0 b 3 d 7c ... Read More

Verifying whether the string id * id + id is accepted by a given grammar using SLR parsingConsider the SLR parsing table for the GrammarE → E + TE → TT → T ∗ FT → FF → (E)F → idCheck whether the string id * id + id is accepted or not by using the SLR parsing table constructed in the example.

Ginni
Updated on 08-Nov-2021 10:36:36

2K+ Views

SolutionInitially, LR Parser in state 0.Put $ at the end of the string, i.e., id * id + id $.StackInput StringReason0id ∗ id + idAction [0, id] = s5 ∴ Shift id and state 50 id 5∗ id + id $Action [5, ∗] = r6. ∴ Reduce by F → id. goto(0, F) = 30 F 3∗ id + id $Action [3, ∗] = r4, Reduce by T → F goto(0, T) = 20 T 2∗ id + id $Action [2, ∗] = s7, shift ∗, 70T2*7id + id $Action [7, id] = s5, shift id, 50T2*7 id 5+id $Action ... Read More

What is the difference between DFA and NFA in compiler design?

Ginni
Updated on 08-Nov-2021 10:23:06

2K+ Views

Deterministic Finite Automata (DFA)Deterministic means that on each input there is one and only one state to which the automata can have the transition from its current state. In deterministic finite automata, the head can move only in one direction to scan the input tape symbols. But in the case of two-way, finite automata on scanning an input symbol the head of the tape may move in right or left from its current position.There are two ways to represent Deterministic finite Automata −Transition DiagramIt is a directed graph or flow chart having states and edges. A strong path through a ... Read More

What is an Activation Record?

Ginni
Updated on 08-Nov-2021 10:16:59

10K+ Views

An Activation Record is a data structure that is activated/ created when a procedure/function is invoked, and it includes the following data about the function.Activation Record in 'C' language consist ofActual ParametersNumber of ArgumentsReturn AddressReturn ValueOld Stack Pointer (SP)Local Data in a function or procedureHere, Old SP stores the value of stack pointer of Activation Record of procedure which has called this procedure which leads to the generation of this Activation Record, i.e., It is a pointer to the activation record of the caller.In Stack Allocation Scheme, when procedure A calls Procedure B, the activation record for B will be ... Read More

What is techniques of storage allocation in compiler design?

Ginni
Updated on 31-Oct-2023 13:50:45

47K+ Views

There are various storage allocation techniques are as follows −Static AllocationIt is the simplest allocation scheme in which allocation of data objects is done at compile time because the size of every data item can be determined by the compiler.Recursive Subprogram and Arrays of adjustable length are not permitted in a language. In static allocation, the compiler can decide the amount of storage needed by each data object. Thus, it becomes easy for a compiler to identify the address of these data in the activation record.FORTRAN uses this kind of storage allocation strategies.AdvantagesIt is easy to implement.It allows type checking ... Read More

What are Lists and Self-Organizing lists in compiler design?

Ginni
Updated on 08-Nov-2021 10:11:44

803 Views

ListsIt is conceptually simplest and easy to implement a data structure for the symbol table in a linear list of records, as shown below −It can use an individual array to store the name and its associated information. New Names are inserted to the list in the order in which they are encountered. It can retrieve data about a name we search from the starting of the array up to the position marked by the pointer AVAILABLE which indicates the beginning of the empty portion of the array.When the name is placed, the associated data can be discovered in the ... Read More

How are access links and displays used to access non-local names?

Ginni
Updated on 08-Nov-2021 10:02:51

5K+ Views

An access link is a pointer to each activation record that obtains a direct implementation of lexical scope for nested procedures. In other words, an access link is used to implement lexically scoped language. An “access line” can be required to place data required by the called procedure.An improved scheme for handling static links defined at various lexical levels is the usage of a data structure called display. A display is an array of pointers to the activation records. Display [0] contains a pointer to the activation record of the most recent activation of a procedure defined at lexical level ... Read More

Advertisements