Lines Matching refs:CompareNilICStub
448 void CompareNilICStub::UpdateStatus(Handle<Object> object) { in UpdateStatus()
507 void CompareNilICStub::PrintBaseName(std::ostream& os) const { // NOLINT in PrintBaseName()
513 void CompareNilICStub::PrintState(std::ostream& os) const { // NOLINT in PrintState()
538 std::ostream& operator<<(std::ostream& os, const CompareNilICStub::State& s) { in operator <<()
542 if (s.Contains(CompareNilICStub::UNDEFINED)) p.Add("Undefined"); in operator <<()
543 if (s.Contains(CompareNilICStub::NULL_TYPE)) p.Add("Null"); in operator <<()
544 if (s.Contains(CompareNilICStub::MONOMORPHIC_MAP)) p.Add("MonomorphicMap"); in operator <<()
545 if (s.Contains(CompareNilICStub::GENERIC)) p.Add("Generic"); in operator <<()
550 Type* CompareNilICStub::GetType(Zone* zone, Handle<Map> map) { in GetType()
552 if (state.Contains(CompareNilICStub::GENERIC)) return Type::Any(zone); in GetType()
555 if (state.Contains(CompareNilICStub::UNDEFINED)) { in GetType()
558 if (state.Contains(CompareNilICStub::NULL_TYPE)) { in GetType()
561 if (state.Contains(CompareNilICStub::MONOMORPHIC_MAP)) { in GetType()
571 Type* CompareNilICStub::GetInputType(Zone* zone, Handle<Map> map) { in GetInputType()
742 void CompareNilICStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { in InitializeDescriptor()