Home
last modified time | relevance | path

Searched refs:decl_to_stack_part (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dcfgexpand.c337 static hash_map<tree, size_t> *decl_to_stack_part; variable
439 if (!decl_to_stack_part) in add_stack_var()
440 decl_to_stack_part = new hash_map<tree, size_t>; in add_stack_var()
443 decl_to_stack_part->put (decl, stack_vars_num); in add_stack_var()
520 size_t *v = decl_to_stack_part->get (op); in visit_op()
540 size_t *v = decl_to_stack_part->get (op); in visit_conflict()
591 && (v = decl_to_stack_part->get (lhs))) in add_scope_conflicts_1()
1947 decl_to_stack_part = new hash_map<tree, size_t>; in init_vars_expansion()
1966 delete decl_to_stack_part; in fini_vars_expansion() local
1967 decl_to_stack_part = NULL; in fini_vars_expansion()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dcfgexpand.cc338 static hash_map<tree, size_t> *decl_to_stack_part; variable
459 if (!decl_to_stack_part) in add_stack_var()
460 decl_to_stack_part = new hash_map<tree, size_t>; in add_stack_var()
463 decl_to_stack_part->put (decl, stack_vars_num); in add_stack_var()
540 size_t *v = decl_to_stack_part->get (op); in visit_op()
560 size_t *v = decl_to_stack_part->get (op); in visit_conflict()
636 && (v = decl_to_stack_part->get (lhs))) in add_scope_conflicts_1()
2084 decl_to_stack_part = new hash_map<tree, size_t>; in init_vars_expansion()
2105 delete decl_to_stack_part; in fini_vars_expansion()
2106 decl_to_stack_part = NULL; in fini_vars_expansion()
H A DChangeLog-20114021 * cfgexpand.c (decl_to_stack_part): New static variable.