Lines Matching refs:var
120 static void initialize(tree var) in initialize() argument
146 if (gimple_get_lhs(stmt) != var) in initialize()
155 inform(DECL_SOURCE_LOCATION(var), in initialize()
157 (byref && TREE_ADDRESSABLE(var)) ? "byref" in initialize()
161 type = TREE_TYPE(var); in initialize()
168 init_stmt = gimple_build_assign(var, initializer); in initialize()
178 tree var; in structleak_execute() local
190 FOR_EACH_LOCAL_DECL(cfun, i, var) { in structleak_execute()
191 tree type = TREE_TYPE(var); in structleak_execute()
193 gcc_assert(DECL_P(var)); in structleak_execute()
194 if (!auto_var_in_fn_p(var, current_function_decl)) in structleak_execute()
203 (byref && TREE_ADDRESSABLE(var))) in structleak_execute()
204 initialize(var); in structleak_execute()