Home | History | Annotate | Download | only in frv

Lines Matching refs:io1

7645 /* Return true if accesses IO1 and IO2 refer to the same doubleword.  */
7648 frv_same_doubleword_p (const struct frv_io *io1, const struct frv_io *io2)
7650 if (io1->const_address != 0 && io2->const_address != 0)
7651 return io1->const_address == io2->const_address;
7653 if (io1->var_address != 0 && io2->var_address != 0)
7654 return rtx_equal_p (io1->var_address, io2->var_address);
7659 /* Return true if operations IO1 and IO2 are guaranteed to complete
7663 frv_io_fixed_order_p (const struct frv_io *io1, const struct frv_io *io2)
7666 if (io1->type == FRV_IO_WRITE && io2->type == FRV_IO_WRITE)
7670 if (io1->type != FRV_IO_WRITE && io2->type != FRV_IO_WRITE)
7676 return frv_same_doubleword_p (io1, io2);