(SEM V) THEORY EXAMINATION 2023-24 COMPILER DESIGN

B.Tech Engineering 0 downloads
₹29.00

SECTION A — Short Answers (2 × 10 = 20 Marks)


(a) Explain cross compiler with example.

A cross compiler is a compiler that runs on one system (host) but generates executable code for another system (target).
Example:
A compiler that runs on a Windows machine but generates executable code for an ARM-based embedded device.
→ Used in embedded systems and IoT development.


(b) Regular Expression for a Valid Identifier

A valid identifier (starts with a letter or underscore, followed by letters, digits, or underscores):

RE=[A_a−zA−Z][A_a−zA−Z0−9]∗RE = [A\_a-zA-Z][A\_a-zA-Z0-9]^*RE=[A_a−zA−Z][A_a−zA−Z0−9]∗

Example valid identifiers: _count1, total_sum, x12.


(c) Bottom-up Parsing — Reduction Steps

Grammar:        S → aSB | d B → b            String: aaaadbbbb              Reductions:

d → S S → aSB → a(aSB)B → a(a(aSB)B)B → a(a(a(d)B)B)B → a(a(a(S)B)B)B 

Each B → b adds 1 reduction; total reductions = 9 (4 for ‘aS’ patterns, 4 for B→b, 1 for final S).


Answer: 9 reduction steps

(d) Remove Left Recursion          Given:         S → Aa | b | ε   A → Ac | SAd | ε

Step 1: Substitute S in A’s productions, then remove direct and indirect recursion.
Resulting grammar:

 

S → bS' | ε   S' → aS' | ε   A → bAd | ε

 Grammar is now free from left recursion.


(e) Syntax Directed Definition (SDD)

An SDD specifies how semantic rules are associated with grammar productions.
Example:

 

E → E1 + T   { E.val = E1.val + T.val } E → T        { E.val = T.val } T → num      { T.val = num.val }

It defines how semantic values (like computed results) are derived.

(f) Syntax Tree for (a*c)+b*((c*a)+d)

 

          +        /   \      *       *    /  \     /   \   a    c   b     +                 / \               *     d              / \             c   a 

 Root = +, left = (a*c), right = b*((c*a)+d).

(g) Static vs Dynamic Scope Rule

FeatureStatic ScopeDynamic Scope
DefinitionVariable resolved using program structureVariable resolved using call sequence
DeterminedAt compile timeAt run time
Language ExamplesC, JavaLisp, Perl
 Static scope preferred for predictability.  

(h) Activation Record (AR)

A data structure that stores information about a function call.

Fields:

Return address                                                                Parameters

Local variables                                                                 Saved registers

Control link (previous AR)                                               Access link (for non-local variables)


(i) Design Issues in Code Generation                              Correctness of generated code

Machine dependency (instruction set, registers)            Efficiency (time & space)

Register allocation strategy                                             Handling control flow and data types


(j) DAG Nodes for Code Segment

a = b + c; e = a + 1; d = b + c; f = d + 1; g = e + f;

Common sub-expressions: (b+c) and (x+1) reused.
Nodes: {b, c, +, 1, a/e/d/f/g} → 7 nodes total

 

SECTION B — Short Descriptive (Any 3 × 10 = 30 Marks)


(a) Compilation Process (Example: c = a*b + 10)

Phases:

Lexical Analysis: tokens → id(a) id(b) op(*) num(10)    Syntax Analysis: builds parse tree

Semantic Analysis: type checking                              Intermediate Code: t1 = a*b; t2 = t1 + 10; c = t2

Code Optimization: reuse temp variables                  Code Generation: machine instructions

Linking & Loading


(b) Problems in Top-Down Parsing                              Left Recursion (e.g., A→Aα|β)

Ambiguity in grammar                                               Backtracking
Solutions: eliminate left recursion, use predictive (LL(1)) parsing.


(c) Syntax Directed Translation

Attaches semantic actions to grammar productions.
Example:

 

E → E1 + T  { print('+') } E → T T → id      { print(id.lexeme) }

Translates expression into postfix form.


(d) Symbol Table Data Structures                                   Hash Table: Fast lookup

Binary Search Tree: Ordered entries                             Linked List: Simple sequential
Fields: name, type, scope, memory location.


(e) Target Code for x := (a+b)*c + d/(a+b)

Intermediate Code:

t1 = a + b t2 = t1 * c t3 = d / t1 t4 = t2 + t3 x = t4     Optimized Code: Reuse t1 for (a+b) to avoid recomputation.


SECTION C — Long Questions (Any 1 from each)


3(a) Construct Minimized DFA

Perform state equivalence method:             Group final/non-final states.

Iteratively divide based on transitions.           Replace equivalent states.

Final DFA has minimal states (illustrated in paper image, page 2).

3(b) Phases of Compiler                                   Lexical Analysis

Syntax Analysis                                                 Semantic Analysis

Intermediate Code Generation                        Code Optimization

Code Generation                                              Error Handling

Example: Compilation of x = a + b * 5.

4(a) LALR Parsing Table

Grammar:                                                         S → CC   C → aC | b 

Construct LR(0) items → merge states with identical cores to form LALR(1) table (ACTION & GOTO).


5(a) Syntax Directed Definition Example

Grammar:

 

E → E + T | T   T → T * F | F   F → num

Input: 4*7+3*9
Compute step-by-step using semantic rules and build annotated parse tree.

5(b) Quadruples, Triples, Indirect Triples

Expression: (x+y)*(y+z)+(x+y+z)

Quadruples:

oparg1arg2result
+xyt1
+yzt2
*t1t2t3
+xyt4
+t4zt5
+t3t5t6

Use index references for triples/indirect triples.


6(a) Run-Time Storage Allocation

Static Allocation: Fixed memory before execution (e.g., global vars).  
Stack Allocation: LIFO for recursive calls.      Heap Allocation: Dynamic, uses free memory blocks.
Tradeoff: flexibility vs. management cost.


7(b) Data Flow Analysis — Flow Graph

C code:

 

for(i=1; i<=5; i++) { sum = sum + a[i]; }

Flow graph:

 

Start → Init (i=1) → Condition (i<=5?) → Body (sum+=a[i]) → Increment (i++) → Condition

File Size
149.01 KB
Uploader
SuGanta International
⭐ Elite Educators Network

Meet Our Exceptional Teachers

Discover passionate educators who inspire, motivate, and transform learning experiences with their expertise and dedication

KISHAN KUMAR DUBEY

KISHAN KUMAR DUBEY

Sant Ravidas Nagar Bhadohi, Uttar Pradesh , Babusarai Market , 221314
5 Years
Years
₹10000+
Monthly
₹201-300
Per Hour

This is Kishan Kumar Dubey. I have done my schooling from CBSE, graduation from CSJMU, post graduati...

Swethavyas bakka

Swethavyas bakka

Hyderabad, Telangana , 500044
10 Years
Years
₹10000+
Monthly
₹501-600
Per Hour

I have 10+ years of experience in teaching maths physics and chemistry for 10th 11th 12th and interm...

Vijaya Lakshmi

Vijaya Lakshmi

Hyderabad, Telangana , New Nallakunta , 500044
30+ Years
Years
₹9001-10000
Monthly
₹501-600
Per Hour

I am an experienced teacher ,worked with many reputed institutions Mount Carmel Convent , Chandrapu...

Shifna sherin F

Shifna sherin F

Gudalur, Tamilnadu , Gudalur , 643212
5 Years
Years
₹6001-7000
Monthly
₹401-500
Per Hour

Hi, I’m Shifna Sherin! I believe that every student has the potential to excel in Math with the righ...

Divyank Gautam

Divyank Gautam

Pune, Maharashtra , Kothrud , 411052
3 Years
Years
Not Specified
Monthly
Not Specified
Per Hour

An IIT graduate having 8 years of experience teaching Maths. Passionate to understand student proble...

Explore Tutors In Your Location

Discover expert tutors in popular areas across India

Candle Making Classes In Dwarka Mor – Learn the Art of Handmade Candle Crafting Dwarka Mor, Delhi
Cake Decoration Classes Near By Dwarka Mor – Master the Art of Creative Cake Designing Dwarka Mor, Delhi
Yoga Classes (Home or Online) Near Sushant Lok Phase 3 – Transform Your Health Naturally Phase 3 Sushant Lok, Gurugram
Fashion Designing Course Near Sector 81 Gurugram – Turn Your Creativity into a Successful Career Sector 81, Gurugram
Web Development Classes Near Noida Sector 103 – Complete Guide to Start Your Tech Career Noida
Spoken English Classes Near By Punjabi Bagh Improve Fluency, Build Confidence & Unlock Career Opportunities in 2026 Punjabi Bagh, Delhi
Dance Classes (Bollywood, Hip-Hop, Classical) Near Palam Vihar Extension – Learn Dance with Professional Trainers New Palam Vihar, Gurugram
History Classes Near By Dwarka Mor Build Strong Conceptual Understanding & Score High in Board Exams Dwarka Mor, Delhi
UI/UX Designing Course Near Sector 66 Gurugram – Build a Creative & High-Paying Design Career Sector 66, Gurugram
Diet & Nutrition Consultation Near Sector 127 Noida – A Complete Guide to Healthy Living Noida
Accounts & Commerce Classes Near Sector 99 Dwarka Expressway, Gurugram – Build Strong Financial & Business Foundations Sector 99A, Gurugram
Guitar Classes Near Central Noida Sector 10 – Learn Guitar with Expert Trainers A Block Sector 10, Noida
Physiotherapy Guidance (Certified Professionals Only) Near Central Park 1 & 2 – Restore Movement, Regain Strength Central Park 2, Gurugram
Digital Marketing Classes Near By Kirti Nagar – Build a High-Growth Career in the Digital World Kirti Nagar, Delhi
Legal Documentation Assistance Near Sector 102A Gurugram (Dwarka Expressway) – Reliable, Professional & Hassle-Free Services Village Dhankot, Sector 102, Gurugram
Physiotherapy Guidance Near Tilak Nagar (Certified Professionals Only) Tilak Nagar, Delhi
Diet & Nutrition Consultation Near Sector 125 Noida – Your Complete Guide to Healthy Living Sector 125, Noida
Career Counseling Near Sector 100 Dwarka Expressway, Gurugram – Guidance for a Clear & Confident Future Gurugram
Home Tuition (All Subjects) Near Dwarka Mor – Personalized Learning for Academic Success Dwarka Mor, Delhi
Spoken English Classes Near Central Park 1 – Improve Confidence and Communication Skills Central Park 2, Gurugram
⭐ Premium Institute Network

Discover Elite Educational Institutes

Connect with top-tier educational institutions offering world-class learning experiences, expert faculty, and innovative teaching methodologies

Réussi Academy of languages

sugandha mishra

Réussi Academy of languages
Madhya pradesh, Indore, G...

Details

Coaching Center
Private
Est. 2021-Present

Sugandha Mishra is the Founder Director of Réussi Academy of Languages, a premie...

IGS Institute

Pranav Shivhare

IGS Institute
Uttar Pradesh, Noida, Sec...

Details

Coaching Center
Private
Est. 2011-2020

Institute For Government Services

Krishna home tutor

Krishna Home tutor

Krishna home tutor
New Delhi, New Delhi, 110...

Details

School
Private
Est. 2001-2010

Krishna home tutor provide tutors for all subjects & classes since 2001

Edustunt Tuition Centre

Lakhwinder Singh

Edustunt Tuition Centre
Punjab, Hoshiarpur, 14453...

Details

Coaching Center
Private
Est. 2021-Present
Great success tuition & tutor

Ginni Sahdev

Great success tuition & tutor
Delhi, Delhi, Raja park,...

Details

Coaching Center
Private
Est. 2011-2020