Home
last modified time | relevance | path

Searched refs:LABEL_ALIGN_LOG (Results 1 – 4 of 4) sorted by relevance

/freebsd-12.1/contrib/gcc/
H A Dfinal.c564 return LABEL_ALIGN_LOG (label); in label_to_alignment()
615 known_align_log = LABEL_ALIGN_LOG (align_label); in align_fuzz()
707 if (LABEL_ALIGN_LOG (label) > 0) in compute_alignments()
848 log = LABEL_ALIGN_LOG (insn); in shorten_branches()
933 log = (LABEL_P (seq) ? LABEL_ALIGN_LOG (seq) : 0); in shorten_branches()
983 if (min_align > (int) LABEL_ALIGN_LOG (lab)) in shorten_branches()
984 min_align = LABEL_ALIGN_LOG (lab); in shorten_branches()
1015 int log = LABEL_ALIGN_LOG (insn); in shorten_branches()
1123 int log = LABEL_ALIGN_LOG (insn); in shorten_branches()
1174 rel_align = LABEL_ALIGN_LOG (prev); in shorten_branches()
[all …]
H A Dprint-rtl.c610 if (LABEL_ALIGN_LOG (in_rtx) > 0) in print_rtx()
611 fprintf (outfile, " [log_align %u skip %u]", LABEL_ALIGN_LOG (in_rtx), in print_rtx()
H A DChangeLog.apple927 * rtl.h (LABEL_ALIGN_LOG): New.
931 * print-rtl.c (print_rtx): Print LABEL_ALIGN_LOG.
940 (label_to_alignment): Adjust for LABEL_ALIGN_LOG.
944 Adjust for LABEL_ALIGN_LOG.
945 (final_scan_insn): Adjust for LABEL_ALIGN_LOG.
H A Drtl.h913 #define LABEL_ALIGN_LOG(RTX) (XCUINT (RTX, 8, CODE_LABEL) & 0xFF) macro