Home | History | Annotate | Download | only in optimizing

Lines Matching refs:card

1866   Register card = AT;
1871 // Load the address of the card table into `card`.
1873 card,
1876 // Calculate the address of the card corresponding to `object`.
1878 __ Addu(temp, card, temp);
1880 // `object`'s card.
1882 // Register `card` contains the address of the card table. Note that the card
1886 // below writes the `kCardDirty` (byte) value into the `object`'s card
1887 // (located at `card + object >> kCardShift`).
1889 // This dual use of the value in register `card` (1. to calculate the location
1890 // of the card to mark; and 2. to load the `kCardDirty` value) saves a load
1892 __ Sb(card, temp, 0);