Home | History | Annotate | Download | only in src

Lines Matching refs:CompareICState

1254   CompareICStub(Isolate* isolate, Token::Value op, CompareICState::State left,
1255 CompareICState::State right, CompareICState::State state)
1270 CompareICState::State left() const {
1273 CompareICState::State right() const {
1276 CompareICState::State state() const { return StateBits::decode(minor_key_); }
1297 return state() == CompareICState::KNOWN_OBJECT;
1301 class LeftStateBits : public BitField<CompareICState::State, 3, 4> {};
1302 class RightStateBits : public BitField<CompareICState::State, 7, 4> {};
1303 class StateBits : public BitField<CompareICState::State, 11, 4> {};