vote up 2 vote down star

How does lexical scope help the compilers? Does it help in compilation or optimization?

flag

66% accept rate

3 Answers

vote up 0 vote down

Lexical (or static) scoping reduces the amount of information a compiler needs to correctly transform text into code. It can help compilation because the compiler does not need to add additional information that must be accessed at runtime (as is the case with dynamic scoping). For optimizations, the compiler does not need to consider variables that could exist in other scopes, as you can either access local variables or global variables and nothing else.

link|flag
vote up 1 vote down

I do think that lexical scope helps the compiler and optimization. It depends what you mean by help though.

Lexical or static scope allow the compiler to proof availability of a variable when referenced locally, that means within its lexical context. It has to be in the scope of the method referencing the variable.

To do such in dynamic scope environments, all calling contexts have to be taken into consideration, as a function knows all variables its calling context knows as well. To make sure a variable is available for reference, a recursive backtrack of all calling contexts would be necessary at compile time.

As this is very complicated, it would be omitted at compile time, throwing exceptions at runtime.

See here: In dynamic scoping, by contrast, you search in the local function first, then you search in the function that called the local function, then you search in the function that called that function, and so on, up the call stack. "Dynamic" refers to change, in that the call stack can be different every time a given function is called, and so the function might hit different variables depending on where it is called from.

link|flag
vote up 0 vote down

Lexical scope does not help the compiler or optimise the code. It is a language design decision. See this question for more explanation.

link|flag
please see 48:00 of this: youtube.com/watch?v=HIJ8ly8HOUQ&feature=PlayL… – kunjaan Jun 9 at 17:35
might not get the time to watch the whole thing. But is sounds like I need a lesson or two ;-) – Willem Jun 10 at 15:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.