Home | History | Annotate | Download | only in crankshaft

Lines Matching refs:HCheckMaps

2438 class HCheckMaps final : public HTemplateInstruction<2> {
2440 static HCheckMaps* New(Isolate* isolate, Zone* zone, HValue* context,
2443 return new(zone) HCheckMaps(value, new(zone) UniqueSet<Map>(
2446 static HCheckMaps* New(Isolate* isolate, Zone* zone, HValue* context,
2453 return new(zone) HCheckMaps(value, maps, typecheck);
2496 static HCheckMaps* CreateAndInsertAfter(Zone* zone,
2501 return instr->Append(new(zone) HCheckMaps(
2505 static HCheckMaps* CreateAndInsertBefore(Zone* zone,
2510 return instr->Prepend(new(zone) HCheckMaps(value, maps, maps_are_stable));
2517 return this->maps()->Equals(HCheckMaps::cast(other)->maps());
2523 HCheckMaps(HValue* value, const UniqueSet<Map>* maps, bool maps_are_stable)
2539 HCheckMaps(HValue* value, const UniqueSet<Map>* maps, HValue* typecheck)