Lines Matching defs:tag

128 static int cpu_ectag_line_invalid(int cachesize, uint64_t tag);
130 uint64_t cpu_ectag_to_pa(int setsize, uint64_t tag);
132 uint64_t subaddr, uint64_t tag);
318 * dcache data tag.
821 * Invalid tag, ingnore this entry.
2223 * D$ data and tag must also be corrected. Set D$ data bits
2293 * Parity error in I$ tag or data
2357 * Parity error in D$ tag.
3925 /* remove low order PA bits from fault address not used in PA tag */
4007 * Check tag for even parity.
4013 * about it and check the snoop tag. Otherwise just
4182 * Check tag for even parity.
4189 * snoop tag. Otherwise just record the fact we
4920 * tag associated with it or is a fatal event (aflt_panic set), it is sent to
5006 * If the primary and shadow AFSR differ, tag the shadow as
6592 * Extract the PA portion from the E$ tag.
6595 cpu_ectag_to_pa(int setsize, uint64_t tag)
6598 return (JG_ECTAG_TO_PA(setsize, tag));
6600 return (PN_L3TAG_TO_PA(tag));
6602 return (CH_ECTAG_TO_PA(setsize, tag));
6606 * Convert the E$ tag PA into an E$ subblock index.
6625 cpu_ectag_line_invalid(int cachesize, uint64_t tag)
6628 return (JG_ECTAG_LINE_INVALID(cachesize, tag));
6630 return (PN_L3_LINE_INVALID(tag));
6632 return (CH_ECTAG_LINE_INVALID(cachesize, tag));
6636 * Extract state bits for a subblock given the tag. Note that for Panther
6640 cpu_ectag_pa_to_subblk_state(int cachesize, uint64_t subaddr, uint64_t tag)
6643 return (JG_ECTAG_PA_TO_SUBBLK_STATE(cachesize, subaddr, tag));
6645 return (tag & CH_ECSTATE_MASK);
6647 return (CH_ECTAG_PA_TO_SUBBLK_STATE(cachesize, subaddr, tag));