Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-dse.c619 live_bytes_read (ao_ref use_ref, ao_ref *ref, sbitmap live) in live_bytes_read() argument
624 if (normalize_ref (&use_ref, ref) in live_bytes_read()
625 && (use_ref.offset - ref->offset).is_constant (&start) in live_bytes_read()
626 && use_ref.size.is_constant (&size)) in live_bytes_read()
839 ao_ref use_ref; in dse_classify_store() local
840 ao_ref_init (&use_ref, gimple_assign_rhs1 (use_stmt)); in dse_classify_store()
841 if (valid_ao_ref_for_dse (&use_ref) in dse_classify_store()
842 && use_ref.base == ref->base in dse_classify_store()
843 && known_eq (use_ref.size, use_ref.max_size) in dse_classify_store()
844 && !live_bytes_read (use_ref, ref, live_bytes)) in dse_classify_store()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-dse.cc778 live_bytes_read (ao_ref *use_ref, ao_ref *ref, sbitmap live) in live_bytes_read() argument
783 if (get_byte_range (use_ref, ref, false, &start, &size)) in live_bytes_read()
998 ao_ref use_ref; in dse_classify_store() local
999 ao_ref_init (&use_ref, gimple_assign_rhs1 (use_stmt)); in dse_classify_store()
1000 if (valid_ao_ref_for_dse (&use_ref) in dse_classify_store()
1001 && operand_equal_p (use_ref.base, ref->base, in dse_classify_store()
1003 && !live_bytes_read (&use_ref, ref, live_bytes)) in dse_classify_store()
/netbsd-src/external/mit/expat/dist/
H A DCMakeLists.txt251 macro(evaluate_detection_results use_ref have_ref thing_lower thing_title)
252 if(${use_ref} AND NOT (${use_ref} STREQUAL "AUTO") AND NOT ${have_ref})
254 "Use of ${thing_lower} was enforced by ${use_ref}=ON but it could not be found.")
255 elseif(NOT ${use_ref} AND ${have_ref})
256 message("${thing_title} was found but it will not be used due to ${use_ref}=OFF.")