Home | History | Annotate | Download | only in crankshaft

Lines Matching refs:Zone

15   explicit State(Zone* zone)
16 : zone_(zone), mergelist_(2, zone), first_(true), mode_(NORMAL) { }
18 State* Process(HInstruction* instr, Zone* zone) {
91 Zone* zone) {
93 ? pred_state->Copy(succ_block, pred_block, zone)
94 : succ_state->Merge(succ_block, pred_state, pred_block, zone);
97 static State* Finish(State* state, HBasicBlock* block, Zone* zone) {
138 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) {
139 State* copy = new(zone) State(*this);
151 Zone* zone) {
164 Zone* zone_;
174 explicit Effects(Zone* zone) { }
176 void Process(HInstruction* instr, Zone* zone) { }
178 void Union(Effects* that, Zone* zone) { }
183 HFlowEngine<State, Effects> engine(graph(), zone());
184 State* state = new(zone()) State(zone());