Home
last modified time | relevance | path

Searched refs:current_scope (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/mesa/program/
Dsymbol_table.c105 struct scope_level *current_scope; member
139 for (scope = table->current_scope; scope != NULL; scope = scope->next) { in check_symbol_table()
161 struct scope_level *const scope = table->current_scope; in _mesa_symbol_table_pop_scope()
164 table->current_scope = scope->next; in _mesa_symbol_table_pop_scope()
191 scope->next = table->current_scope; in _mesa_symbol_table_push_scope()
192 table->current_scope = scope; in _mesa_symbol_table_push_scope()
364 sym->next_with_same_scope = table->current_scope->symbols; in _mesa_symbol_table_add_symbol()
373 table->current_scope->symbols = sym; in _mesa_symbol_table_add_symbol()
420 for (top_scope = table->current_scope in _mesa_symbol_table_add_global_symbol()
477 while (table->current_scope != NULL) { in _mesa_symbol_table_dtor()
/external/v8/src/ast/
Dscopes.cc212 Scope* current_scope = NULL; in DeserializeScopeChain() local
218 Scope(zone, current_scope, WITH_SCOPE, Handle<ScopeInfo>::null(), in DeserializeScopeChain()
220 current_scope = with_scope; in DeserializeScopeChain()
227 current_scope = new (zone) Scope(zone, current_scope, SCRIPT_SCOPE, in DeserializeScopeChain()
232 current_scope = new (zone) Scope(zone, current_scope, MODULE_SCOPE, in DeserializeScopeChain()
237 current_scope = new (zone) Scope(zone, current_scope, FUNCTION_SCOPE, in DeserializeScopeChain()
240 if (scope_info->IsAsmFunction()) current_scope->asm_function_ = true; in DeserializeScopeChain()
241 if (scope_info->IsAsmModule()) current_scope->asm_module_ = true; in DeserializeScopeChain()
244 current_scope = new (zone) in DeserializeScopeChain()
245 Scope(zone, current_scope, BLOCK_SCOPE, Handle<ScopeInfo>(scope_info), in DeserializeScopeChain()
[all …]
/external/v8/src/debug/
Dliveedit.cc2038 Scope* current_scope = scope; in SerializeFunctionScope() local
2039 while (current_scope != NULL) { in SerializeFunctionScope()
2041 ZoneList<Variable*> stack_list(current_scope->StackLocalCount(), zone_); in SerializeFunctionScope()
2042 ZoneList<Variable*> context_list(current_scope->ContextLocalCount(), zone_); in SerializeFunctionScope()
2043 ZoneList<Variable*> globals_list(current_scope->ContextGlobalCount(), in SerializeFunctionScope()
2045 current_scope->CollectStackAndContextLocals(&stack_list, &context_list, in SerializeFunctionScope()
2062 current_scope = current_scope->outer_scope(); in SerializeFunctionScope()
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
Dtask.rb54 @namespace = Rake.application.current_scope
/external/v8/src/compiler/
Dast-graph-builder.cc497 Scope* closure_scope = current_scope()->ClosureScope(); in GetFunctionClosureForContext()
1000 Scope* AstGraphBuilder::current_scope() const { in current_scope() function in v8::internal::compiler::AstGraphBuilder
2505 jsgraph()->Constant(current_scope()->start_position()); in VisitCall()
3127 return current_scope()->language_mode(); in language_mode()
3157 for (Scope* s = current_scope(); s != nullptr; s = s->outer_scope()) { in ComputeBitsetForDynamicGlobal()
3164 int depth = current_scope()->ContextChainLength(s); in ComputeBitsetForDynamicGlobal()
3175 for (Scope* s = current_scope(); s != nullptr; s = s->outer_scope()) { in ComputeBitsetForDynamicContext()
3178 int depth = current_scope()->ContextChainLength(s); in ComputeBitsetForDynamicContext()
3423 int depth = current_scope()->ContextChainLength(variable->scope()); in BuildVariableLoad()
3550 int depth = current_scope()->ContextChainLength(variable->scope()); in BuildVariableAssignment()
Dast-graph-builder.h148 Scope* current_scope() const;
/external/v8/src/interpreter/
Dbytecode-generator.cc392 RegisterAllocationScope* current_scope = generator()->register_allocator(); in NewRegister() local
393 if ((current_scope == this) || in NewRegister()
394 (current_scope->outer() == this && in NewRegister()
395 !current_scope->allocator_.HasConsecutiveAllocations())) { in NewRegister()