Lines Matching refs:unspec
2407 /* M68K relocations, used to distinguish GOT and TLS relocations in UNSPEC
2414 /* Wrap symbol X into unspec representing relocation RELOC.
2482 if (GET_CODE (x) == UNSPEC)
2524 (const (unspec [(symbol)]))
2526 (const (plus (unspec [(symbol)])
2529 The decoration is emitted when processing (unspec), so the
2534 (const (unspec [(plus (symbol)
2552 rtx unspec;
2555 unspec = XEXP (plus, 0);
2556 gcc_assert (GET_CODE (unspec) == UNSPEC);
2563 XEXP (plus, 0) = XVECEXP (unspec, 0, 0);
2565 /* Move plus inside unspec. */
2566 XVECEXP (unspec, 0, 0) = plus;
2568 /* Move unspec to top level of const. */
2569 XEXP (x, 0) = unspec;
2726 consider (plus (%a5) (const (unspec))) to be a good enough
5124 if (GET_CODE (x) == UNSPEC)
5155 general assembler lossage, recognize various UNSPEC sequences
5163 rtx unspec;
5178 unspec = XEXP (addr.offset, 0);
5179 if (GET_CODE (unspec) == PLUS && CONST_INT_P (XEXP (unspec, 1)))
5180 unspec = XEXP (unspec, 0);
5181 if (GET_CODE (unspec) != UNSPEC
5182 || (XINT (unspec, 1) != UNSPEC_RELOC16
5183 && XINT (unspec, 1) != UNSPEC_RELOC32))
5185 x = XVECEXP (unspec, 0, 0);
5187 if (unspec != XEXP (addr.offset, 0))