9,607 views
7 votes
7 votes

Access Link :

1) An access link from record A points to the record of the closest enclosing block in the program.

2) The chain of access links traces the static structure (think: scopes) of the program.

3) Refers to non-local data in other activation record. (NOT CLEAR)

Control Link :

1) A control link from record A points to the previous record on the stack.

2) Points to activation record of calling procedure.

3) The chain of control links traces the dynamic execution of the program.

3) Refers to non-local data in other activation record. (NOT CLEAR)

Can anyone explain this line ?

Please log in or register to answer this question.

Related questions

3 votes
3 votes
1 answer
1
Himanshu Goyal asked Aug 3, 2017
3,550 views
Can anybody explain me access link and control link in activation record?I am confused what is different between themIF POSSIBLE GIVE EXAMPLE ALSO THANKS A LOT
1 votes
1 votes
1 answer
2
1 votes
1 votes
1 answer
3
thor asked Nov 17, 2016
397 views
I searched a lot and tried understanding access link in activation record, but didn't get very far. Please explain?Access link points to activation record associated with...