Lines Matching defs:zone
16 #include "src/zone/zone-handle-set.h"
32 CsaLoadElimination(Editor* editor, JSGraph* jsgraph, Zone* zone)
34 empty_state_(zone),
35 node_states_(jsgraph->graph()->NodeCount(), zone),
37 zone_(zone) {}
67 explicit HalfState(Zone* zone)
68 : zone_(zone),
69 fresh_entries_(zone, InnerMap(zone)),
70 constant_entries_(zone, InnerMap(zone)),
71 arbitrary_entries_(zone, InnerMap(zone)),
72 fresh_unknown_entries_(zone, InnerMap(zone)),
73 constant_unknown_entries_(zone, InnerMap(zone)),
74 arbitrary_unknown_entries_(zone, InnerMap(zone)) {}
112 MachineRepresentation repr, Zone* zone);
136 explicit AbstractState(Zone* zone)
137 : mutable_state(zone), immutable_state(zone) {}
174 Zone* zone() const { return zone_; }