Lines Matching refs:byref
19 * -fplugin-arg-structleak_plugin-byref
20 * -fplugin-arg-structleak_plugin-byref-all
42 "byref\tinit structs passed by reference\n"
43 "byref-all\tinit anything passed by reference\n"
51 static int byref;
157 (byref && TREE_ADDRESSABLE(var)) ? "byref"
197 /* only care about structure types unless byref-all */
198 if (byref != BYREF_ALL && TREE_CODE(type) != RECORD_TYPE && TREE_CODE(type) != UNION_TYPE)
203 (byref && TREE_ADDRESSABLE(var)))
245 if (!strcmp(argv[i].key, "byref")) {
246 byref = BYREF_STRUCT;
249 if (!strcmp(argv[i].key, "byref-all")) {
250 byref = BYREF_ALL;