Lines Matching refs:var
116 static void initialize(tree var) in initialize() argument
140 if (gimple_get_lhs(stmt) != var) in initialize()
149 inform(DECL_SOURCE_LOCATION(var), in initialize()
151 (byref && TREE_ADDRESSABLE(var)) ? "byref" in initialize()
155 type = TREE_TYPE(var); in initialize()
162 init_stmt = gimple_build_assign(var, initializer); in initialize()
171 tree var; in structleak_execute() local
183 FOR_EACH_LOCAL_DECL(cfun, i, var) { in structleak_execute()
184 tree type = TREE_TYPE(var); in structleak_execute()
186 gcc_assert(DECL_P(var)); in structleak_execute()
187 if (!auto_var_in_fn_p(var, current_function_decl)) in structleak_execute()
196 (byref && TREE_ADDRESSABLE(var))) in structleak_execute()
197 initialize(var); in structleak_execute()